Mercurial > emacs
annotate lisp/ange-ftp.el @ 27686:888000b8e8b6
(toplevel): Require CL at compile time.
(uniquify-push): Removed.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Sat, 12 Feb 2000 19:48:01 +0000 |
parents | 65b514b0ab72 |
children | b65709e0ea05 |
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 |
21278 | 3 ;; Copyright (C) 1989,90,91,92,93,94,95,96,98 Free Software Foundation, Inc. |
14169 | 4 |
2258 | 5 ;; Author: Andy Norman (ange@hplb.hpl.hp.com) |
14734 | 6 ;; Maintainer: FSF |
2258 | 7 ;; Keywords: comm |
14169 | 8 |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
1106 | 25 |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
26 ;;; Commentary: |
14169 | 27 |
28 ;; This package attempts to make accessing files and directories using FTP | |
29 ;; from within GNU Emacs as simple and transparent as possible. A subset of | |
30 ;; the common file-handling routines are extended to interact with FTP. | |
31 | |
32 ;; Usage: | |
33 ;; | |
34 ;; Some of the common GNU Emacs file-handling operations have been made | |
35 ;; FTP-smart. If one of these routines is given a filename that matches | |
36 ;; '/user@host:name' then it will spawn an FTP process connecting to machine | |
37 ;; 'host' as account 'user' and perform its operation on the file 'name'. | |
38 ;; | |
39 ;; For example: if find-file is given a filename of: | |
40 ;; | |
41 ;; /ange@anorman:/tmp/notes | |
42 ;; | |
43 ;; then ange-ftp spawns an FTP process, connect to the host 'anorman' as | |
44 ;; user 'ange', get the file '/tmp/notes' and pop up a buffer containing the | |
45 ;; contents of that file as if it were on the local filesystem. If ange-ftp | |
46 ;; needs a password to connect then it reads one in the echo area. | |
47 | |
48 ;; Extended filename syntax: | |
49 ;; | |
50 ;; The default extended filename syntax is '/user@host:name', where the | |
51 ;; 'user@' part may be omitted. This syntax can be customised to a certain | |
52 ;; extent by changing ange-ftp-name-format. There are limitations. | |
25923 | 53 ;; The `host' part has an optional suffix `#port' which may be used to |
54 ;; specify a non-default port number for the connexion. | |
14169 | 55 ;; |
56 ;; If the user part is omitted then ange-ftp generates a default user | |
57 ;; instead whose value depends on the variable ange-ftp-default-user. | |
58 | |
59 ;; Passwords: | |
60 ;; | |
61 ;; A password is required for each host/user pair. Ange-ftp reads passwords | |
62 ;; as needed. You can also specify a password with ange-ftp-set-passwd, or | |
63 ;; in a *valid* ~/.netrc file. | |
64 | |
65 ;; Passwords for user "anonymous": | |
66 ;; | |
67 ;; Passwords for the user "anonymous" (or "ftp") are handled | |
68 ;; specially. The variable `ange-ftp-generate-anonymous-password' | |
69 ;; controls what happens: if the value of this variable is a string, | |
70 ;; then this is used as the password; if non-nil (the default), then | |
71 ;; the value of `user-mail-address' is used; if nil then the user | |
72 ;; is prompted for a password as normal. | |
73 | |
74 ;; "Dumb" UNIX hosts: | |
75 ;; | |
76 ;; The FTP servers on some UNIX machines have problems if the 'ls' command is | |
77 ;; used. | |
78 ;; | |
79 ;; The routine ange-ftp-add-dumb-unix-host can be called to tell ange-ftp to | |
80 ;; limit itself to the DIR command and not 'ls' for a given UNIX host. Note | |
81 ;; that this change will take effect for the current GNU Emacs session only. | |
82 ;; See below for a discussion of non-UNIX hosts. If a large number of | |
83 ;; machines with similar hostnames have this problem then it is easier to set | |
84 ;; the value of ange-ftp-dumb-unix-host-regexp in your .emacs file. ange-ftp | |
85 ;; is unable to automatically recognize dumb unix hosts. | |
86 | |
87 ;; File name completion: | |
88 ;; | |
89 ;; Full file-name completion is supported on UNIX, VMS, CMS, and MTS hosts. | |
90 ;; To do filename completion, ange-ftp needs a listing from the remote host. | |
91 ;; Therefore, for very slow connections, it might not save any time. | |
92 | |
93 ;; FTP processes: | |
94 ;; | |
95 ;; When ange-ftp starts up an FTP process, it leaves it running for speed | |
96 ;; purposes. Some FTP servers will close the connection after a period of | |
97 ;; time, but ange-ftp should be able to quietly reconnect the next time that | |
98 ;; the process is needed. | |
99 ;; | |
100 ;; Killing the "*ftp user@host*" buffer also kills the ftp process. | |
101 ;; This should not cause ange-ftp any grief. | |
102 | |
103 ;; Binary file transfers: | |
104 ;; | |
105 ;; By default ange-ftp transfers files in ASCII mode. If a file being | |
106 ;; transferred matches the value of ange-ftp-binary-file-name-regexp then | |
107 ;; binary mode is used for that transfer. | |
108 | |
109 ;; Account passwords: | |
110 ;; | |
111 ;; Some FTP servers require an additional password which is sent by the | |
112 ;; ACCOUNT command. ange-ftp partially supports this by allowing the user to | |
113 ;; specify an account password by either calling ange-ftp-set-account, or by | |
114 ;; specifying an account token in the .netrc file. If the account password | |
115 ;; is set by either of these methods then ange-ftp will issue an ACCOUNT | |
116 ;; command upon starting the FTP process. | |
117 | |
118 ;; Preloading: | |
119 ;; | |
120 ;; ange-ftp can be preloaded, but must be put in the site-init.el file and | |
121 ;; not the site-load.el file in order for the documentation strings for the | |
122 ;; functions being overloaded to be available. | |
123 | |
124 ;; Status reports: | |
125 ;; | |
126 ;; Most ange-ftp commands that talk to the FTP process output a status | |
127 ;; message on what they are doing. In addition, ange-ftp can take advantage | |
128 ;; of the FTP client's HASH command to display the status of transferring | |
129 ;; files and listing directories. See the documentation for the variables | |
130 ;; ange-ftp-{ascii,binary}-hash-mark-size, ange-ftp-send-hash and | |
131 ;; ange-ftp-process-verbose for more details. | |
132 | |
133 ;; Gateways: | |
134 ;; | |
135 ;; Sometimes it is necessary for the FTP process to be run on a different | |
136 ;; machine than the machine running GNU Emacs. This can happen when the | |
137 ;; local machine has restrictions on what hosts it can access. | |
138 ;; | |
139 ;; ange-ftp has support for running the ftp process on a different (gateway) | |
140 ;; machine. The way it works is as follows: | |
141 ;; | |
142 ;; 1) Set the variable 'ange-ftp-gateway-host' to the name of a machine | |
143 ;; that doesn't have the access restrictions. | |
144 ;; | |
145 ;; 2) Set the variable 'ange-ftp-local-host-regexp' to a regular expression | |
146 ;; that matches hosts that can be contacted from running a local ftp | |
147 ;; process, but fails to match hosts that can't be accessed locally. For | |
148 ;; example: | |
149 ;; | |
150 ;; "\\.hp\\.com$\\|^[^.]*$" | |
151 ;; | |
152 ;; will match all hosts that are in the .hp.com domain, or don't have an | |
153 ;; explicit domain in their name, but will fail to match hosts with | |
154 ;; explicit domains or that are specified by their ip address. | |
155 ;; | |
156 ;; 3) Using NFS and symlinks, make sure that there is a shared directory with | |
157 ;; the *same* name between the local machine and the gateway machine. | |
158 ;; This directory is necessary for temporary files created by ange-ftp. | |
159 ;; | |
160 ;; 4) Set the variable 'ange-ftp-gateway-tmp-name-template' to the name of | |
161 ;; this directory plus an identifying filename prefix. For example: | |
162 ;; | |
163 ;; "/nfs/hplose/ange/ange-ftp" | |
164 ;; | |
165 ;; where /nfs/hplose/ange is a directory that is shared between the | |
166 ;; gateway machine and the local machine. | |
167 ;; | |
168 ;; The simplest way of getting a ftp process running on the gateway machine | |
169 ;; is if you can spawn a remote shell using either 'rsh' or 'remsh'. If you | |
170 ;; can't do this for some reason such as security then points 7 onwards will | |
171 ;; discuss an alternative approach. | |
172 ;; | |
173 ;; 5) Set the variable ange-ftp-gateway-program to the name of the remote | |
174 ;; shell process such as 'remsh' or 'rsh' if the default isn't correct. | |
175 ;; | |
176 ;; 6) Set the variable ange-ftp-gateway-program-interactive to nil if it | |
177 ;; isn't already. This tells ange-ftp that you are using a remote shell | |
178 ;; rather than logging in using telnet or rlogin. | |
179 ;; | |
180 ;; That should be all you need to allow ange-ftp to spawn a ftp process on | |
181 ;; the gateway machine. If you have to use telnet or rlogin to get to the | |
182 ;; gateway machine then follow the instructions below. | |
183 ;; | |
184 ;; 7) Set the variable ange-ftp-gateway-program to the name of the program | |
185 ;; that lets you log onto the gateway machine. This may be something like | |
186 ;; telnet or rlogin. | |
187 ;; | |
188 ;; 8) Set the variable ange-ftp-gateway-prompt-pattern to a regular | |
189 ;; expression that matches the prompt you get when you login to the | |
190 ;; gateway machine. Be very specific here; this regexp must not match | |
191 ;; *anything* in your login banner except this prompt. | |
192 ;; shell-prompt-pattern is far too general as it appears to match some | |
193 ;; login banners from Sun machines. For example: | |
194 ;; | |
195 ;; "^$*$ *" | |
196 ;; | |
197 ;; 9) Set the variable ange-ftp-gateway-program-interactive to 't' to let | |
198 ;; ange-ftp know that it has to "hand-hold" the login to the gateway | |
199 ;; machine. | |
200 ;; | |
201 ;; 10) Set the variable ange-ftp-gateway-setup-term-command to a UNIX command | |
202 ;; that will put the pty connected to the gateway machine into a | |
203 ;; no-echoing mode, and will strip off carriage-returns from output from | |
204 ;; the gateway machine. For example: | |
205 ;; | |
206 ;; "stty -onlcr -echo" | |
207 ;; | |
208 ;; will work on HP-UX machines, whereas: | |
209 ;; | |
210 ;; "stty -echo nl" | |
211 ;; | |
212 ;; appears to work for some Sun machines. | |
213 ;; | |
214 ;; That's all there is to it. | |
215 | |
216 ;; Smart gateways: | |
217 ;; | |
218 ;; If you have a "smart" ftp program that allows you to issue commands like | |
219 ;; "USER foo@bar" which do nice proxy things, then look at the variables | |
220 ;; ange-ftp-smart-gateway and ange-ftp-smart-gateway-port. | |
221 ;; | |
222 ;; Otherwise, if there is an alternate ftp program that implements proxy in | |
223 ;; a transparent way (i.e. w/o specifying the proxy host), that will | |
224 ;; connect you directly to the desired destination host: | |
225 ;; Set ange-ftp-gateway-ftp-program-name to that program's name. | |
226 ;; Set ange-ftp-local-host-regexp to a value as stated earlier on. | |
227 ;; Leave ange-ftp-gateway-host set to nil. | |
228 ;; Set ange-ftp-smart-gateway to t. | |
229 | |
230 ;; Tips for using ange-ftp: | |
231 ;; | |
232 ;; 1. For dired to work on a host which marks symlinks with a trailing @ in | |
233 ;; an ls -alF listing, you need to (setq dired-ls-F-marks-symlinks t). | |
234 ;; Most UNIX systems do not do this, but ULTRIX does. If you think that | |
235 ;; there is a chance you might connect to an ULTRIX machine (such as | |
236 ;; prep.ai.mit.edu), then set this variable accordingly. This will have | |
237 ;; the side effect that dired will have problems with symlinks whose names | |
238 ;; end in an @. If you get yourself into this situation then editing | |
239 ;; dired's ls-switches to remove "F", will temporarily fix things. | |
240 ;; | |
241 ;; 2. If you know that you are connecting to a certain non-UNIX machine | |
242 ;; frequently, and ange-ftp seems to be unable to guess its host-type, | |
243 ;; then setting the appropriate host-type regexp | |
244 ;; (ange-ftp-vms-host-regexp, ange-ftp-mts-host-regexp, or | |
245 ;; ange-ftp-cms-host-regexp) accordingly should help. Also, please report | |
246 ;; ange-ftp's inability to recognize the host-type as a bug. | |
247 ;; | |
248 ;; 3. For slow connections, you might get "listing unreadable" error | |
249 ;; messages, or get an empty buffer for a file that you know has something | |
250 ;; in it. The solution is to increase the value of ange-ftp-retry-time. | |
251 ;; Its default value is 5 which is plenty for reasonable connections. | |
252 ;; However, for some transatlantic connections I set this to 20. | |
253 ;; | |
254 ;; 4. Beware of compressing files on non-UNIX hosts. Ange-ftp will do it by | |
255 ;; copying the file to the local machine, compressing it there, and then | |
256 ;; sending it back. Binary file transfers between machines of different | |
257 ;; architectures can be a risky business. Test things out first on some | |
258 ;; test files. See "Bugs" below. Also, note that ange-ftp copies files by | |
259 ;; moving them through the local machine. Again, be careful when doing | |
260 ;; this with binary files on non-Unix machines. | |
261 ;; | |
262 ;; 5. Beware that dired over ftp will use your setting of dired-no-confirm | |
263 ;; (list of dired commands for which confirmation is not asked). You | |
264 ;; might want to reconsider your setting of this variable, because you | |
265 ;; might want confirmation for more commands on remote direds than on | |
266 ;; local direds. For example, I strongly recommend that you not include | |
267 ;; compress and uncompress in this list. If there is enough demand it | |
268 ;; might be a good idea to have an alist ange-ftp-dired-no-confirm of | |
269 ;; pairs ( TYPE . LIST ), where TYPE is an operating system type and LIST | |
270 ;; is a list of commands for which confirmation would be suppressed. Then | |
271 ;; remote dired listings would take their (buffer-local) value of | |
272 ;; dired-no-confirm from this alist. Who votes for this? | |
273 | |
274 ;; --------------------------------------------------------------------- | |
275 ;; Non-UNIX support: | |
276 ;; --------------------------------------------------------------------- | |
277 | |
278 ;; VMS support: | |
279 ;; | |
280 ;; Ange-ftp has full support for VMS hosts. It | |
281 ;; should be able to automatically recognize any VMS machine. However, if it | |
282 ;; fails to do this, you can use the command ange-ftp-add-vms-host. As well, | |
283 ;; you can set the variable ange-ftp-vms-host-regexp in your .emacs file. We | |
284 ;; would be grateful if you would report any failures to automatically | |
285 ;; recognize a VMS host as a bug. | |
286 ;; | |
287 ;; Filename Syntax: | |
288 ;; | |
289 ;; For ease of *implementation*, the user enters the VMS filename syntax in a | |
290 ;; UNIX-y way. For example: | |
291 ;; PUB$:[ANONYMOUS.SDSCPUB.NEXT]README.TXT;1 | |
292 ;; would be entered as: | |
293 ;; /PUB$$:/ANONYMOUS/SDSCPUB/NEXT/README.TXT;1 | |
294 ;; i.e. to log in as anonymous on ymir.claremont.edu and grab the file: | |
295 ;; [.CSV.POLICY]RULES.MEM | |
296 ;; you would type: | |
297 ;; C-x C-f /anonymous@ymir.claremont.edu:CSV/POLICY/RULES.MEM | |
298 ;; | |
299 ;; A legal VMS filename is of the form: FILE.TYPE;## | |
300 ;; where FILE can be up to 39 characters | |
301 ;; TYPE can be up to 39 characters | |
302 ;; ## is a version number (an integer between 1 and 32,767) | |
303 ;; Valid characters in FILE and TYPE are A-Z 0-9 _ - $ | |
304 ;; $ cannot begin a filename, and - cannot be used as the first or last | |
305 ;; character. | |
306 ;; | |
307 ;; Tips: | |
308 ;; 1. Although VMS is not case sensitive, EMACS running under UNIX is. | |
309 ;; Therefore, to access a VMS file, you must enter the filename with upper | |
310 ;; case letters. | |
311 ;; 2. To access the latest version of file under VMS, you use the filename | |
312 ;; without the ";" and version number. You should always edit the latest | |
313 ;; version of a file. If you want to edit an earlier version, copy it to a | |
314 ;; new file first. This has nothing to do with ange-ftp, but is simply | |
315 ;; good VMS operating practice. Therefore, to edit FILE.TXT;3 (say 3 is | |
316 ;; latest version), do C-x C-f /ymir.claremont.edu:FILE.TXT. If you | |
317 ;; inadvertently do C-x C-f /ymir.claremont.edu:FILE.TXT;3, you will find | |
318 ;; that VMS will not allow you to save the file because it will refuse to | |
319 ;; overwrite FILE.TXT;3, but instead will want to create FILE.TXT;4, and | |
320 ;; attach the buffer to this file. To get out of this situation, M-x | |
321 ;; write-file /ymir.claremont.edu:FILE.TXT will attach the buffer to | |
322 ;; latest version of the file. For this reason, in dired "f" | |
323 ;; (dired-find-file), always loads the file sans version, whereas "v", | |
324 ;; (dired-view-file), always loads the explicit version number. The | |
325 ;; reasoning being that it reasonable to view old versions of a file, but | |
326 ;; not to edit them. | |
327 ;; 3. EMACS has a feature in which it does environment variable substitution | |
328 ;; in filenames. Therefore, to enter a $ in a filename, you must quote it | |
329 ;; by typing $$. | |
330 | |
331 ;; MTS support: | |
332 ;; | |
333 ;; Ange-ftp has full support for hosts running | |
334 ;; the Michigan terminal system. It should be able to automatically | |
335 ;; recognize any MTS machine. However, if it fails to do this, you can use | |
336 ;; the command ange-ftp-add-mts-host. As well, you can set the variable | |
337 ;; ange-ftp-mts-host-regexp in your .emacs file. We would be grateful if you | |
338 ;; would report any failures to automatically recognize a MTS host as a bug. | |
339 ;; | |
340 ;; Filename syntax: | |
341 ;; | |
342 ;; MTS filenames are entered in a UNIX-y way. For example, if your account | |
343 ;; was YYYY, the file FILE in the account XXXX: on mtsg.ubc.ca would be | |
344 ;; entered as | |
345 ;; /YYYY@mtsg.ubc.ca:/XXXX:/FILE | |
346 ;; In other words, MTS accounts are treated as UNIX directories. Of course, | |
347 ;; to access a file in another account, you must have access permission for | |
348 ;; it. If FILE were in your own account, then you could enter it in a | |
349 ;; relative name fashion as | |
350 ;; /YYYY@mtsg.ubc.ca:FILE | |
351 ;; MTS filenames can be up to 12 characters. Like UNIX, the structure of the | |
352 ;; filename does not contain a TYPE (i.e. it can have as many "."'s as you | |
353 ;; like.) MTS filenames are always in upper case, and hence be sure to enter | |
354 ;; them as such! MTS is not case sensitive, but an EMACS running under UNIX | |
355 ;; is. | |
356 | |
357 ;; CMS support: | |
358 ;; | |
359 ;; Ange-ftp has full support for hosts running | |
360 ;; CMS. It should be able to automatically recognize any CMS machine. | |
361 ;; However, if it fails to do this, you can use the command | |
362 ;; ange-ftp-add-cms-host. As well, you can set the variable | |
363 ;; ange-ftp-cms-host-regexp in your .emacs file. We would be grateful if you | |
364 ;; would report any failures to automatically recognize a CMS host as a bug. | |
365 ;; | |
366 ;; Filename syntax: | |
367 ;; | |
368 ;; CMS filenames are entered in a UNIX-y way. In otherwords, minidisks are | |
369 ;; treated as UNIX directories. For example to access the file READ.ME in | |
370 ;; minidisk *.311 on cuvmb.cc.columbia.edu, you would enter | |
371 ;; /anonymous@cuvmb.cc.columbia.edu:/*.311/READ.ME | |
372 ;; If *.301 is the default minidisk for this account, you could access | |
373 ;; FOO.BAR on this minidisk as | |
374 ;; /anonymous@cuvmb.cc.columbia.edu:FOO.BAR | |
375 ;; CMS filenames are of the form FILE.TYPE, where both FILE and TYPE can be | |
376 ;; up to 8 characters. Again, beware that CMS filenames are always upper | |
377 ;; case, and hence must be entered as such. | |
378 ;; | |
379 ;; Tips: | |
380 ;; 1. CMS machines, with the exception of anonymous accounts, nearly always | |
381 ;; need an account password. To have ange-ftp send an account password, | |
382 ;; you can either include it in your .netrc file, or use | |
383 ;; ange-ftp-set-account. | |
384 ;; 2. Ange-ftp cannot send "write passwords" for a minidisk. Hopefully, we | |
385 ;; can fix this. | |
386 ;; | |
387 ;; ------------------------------------------------------------------ | |
388 ;; Bugs: | |
389 ;; ------------------------------------------------------------------ | |
390 ;; | |
391 ;; 1. Umask problems: | |
392 ;; Be warned that files created by using ange-ftp will take account of the | |
393 ;; umask of the ftp daemon process rather than the umask of the creating | |
394 ;; user. This is particularly important when logging in as the root user. | |
395 ;; The way that I tighten up the ftp daemon's umask under HP-UX is to make | |
396 ;; sure that the umask is changed to 027 before I spawn /etc/inetd. I | |
397 ;; suspect that there is something similar on other systems. | |
398 ;; | |
399 ;; 2. Some combinations of FTP clients and servers break and get out of sync | |
400 ;; when asked to list a non-existent directory. Some of the ai.mit.edu | |
401 ;; machines cause this problem for some FTP clients. Using | |
402 ;; ange-ftp-kill-ftp-process can restart the ftp process, which | |
403 ;; should get things back in sync. | |
404 ;; | |
405 ;; 3. Ange-ftp does not check to make sure that when creating a new file, | |
406 ;; you provide a valid filename for the remote operating system. | |
407 ;; If you do not, then the remote FTP server will most likely | |
408 ;; translate your filename in some way. This may cause ange-ftp to | |
409 ;; get confused about what exactly is the name of the file. The | |
410 ;; most common causes of this are using lower case filenames on systems | |
411 ;; which support only upper case, and using filenames which are too | |
412 ;; long. | |
413 ;; | |
414 ;; 4. Null (blank) passwords confuse both ange-ftp and some FTP daemons. | |
415 ;; | |
416 ;; 5. Ange-ftp likes to use pty's to talk to its FTP processes. If GNU Emacs | |
417 ;; for some reason creates a FTP process that only talks via pipes then | |
418 ;; ange-ftp won't be getting the information it requires at the time that | |
419 ;; it wants it since pipes flush at different times to pty's. One | |
420 ;; disgusting way around this problem is to talk to the FTP process via | |
421 ;; rlogin which does the 'right' things with pty's. | |
422 ;; | |
423 ;; 6. For CMS support, we send too many cd's. Since cd's are cheap, I haven't | |
424 ;; worried about this too much. Eventually, we should have some caching | |
425 ;; of the current minidisk. | |
426 ;; | |
427 ;; 7. Some CMS machines do not assign a default minidisk when you ftp them as | |
428 ;; anonymous. It is then necessary to guess a valid minidisk name, and cd | |
429 ;; to it. This is (understandably) beyond ange-ftp. | |
430 ;; | |
431 ;; 8. Remote to remote copying of files on non-Unix machines can be risky. | |
432 ;; Depending on the variable ange-ftp-binary-file-name-regexp, ange-ftp | |
433 ;; will use binary mode for the copy. Between systems of different | |
434 ;; architecture, this still may not be enough to guarantee the integrity | |
435 ;; of binary files. Binary file transfers from VMS machines are | |
436 ;; particularly problematical. Should ange-ftp-binary-file-name-regexp be | |
437 ;; an alist of OS type, regexp pairs? | |
438 ;; | |
439 ;; 9. The code to do compression of files over ftp is not as careful as it | |
440 ;; should be. It deletes the old remote version of the file, before | |
441 ;; actually checking if the local to remote transfer of the compressed | |
442 ;; file succeeds. Of course to delete the original version of the file | |
443 ;; after transferring the compressed version back is also dangerous, | |
444 ;; because some OS's have severe restrictions on the length of filenames, | |
445 ;; and when the compressed version is copied back the "-Z" or ".Z" may be | |
446 ;; truncated. Then, ange-ftp would delete the only remaining version of | |
447 ;; the file. Maybe ange-ftp should make backups when it compresses files | |
448 ;; (of course, the backup "~" could also be truncated off, sigh...). | |
449 ;; Suggestions? | |
450 ;; | |
451 ;; 10. If a dir listing is attempted for an empty directory on (at least | |
452 ;; some) VMS hosts, an ftp error is given. This is really an ftp bug, and | |
453 ;; I don't know how to get ange-ftp work to around it. | |
454 ;; | |
455 ;; 11. Bombs on filenames that start with a space. Deals well with filenames | |
456 ;; containing spaces, but beware that the remote ftpd may not like them | |
457 ;; much. | |
458 ;; | |
459 ;; 12. The dired support for non-Unix-like systems does not currently work. | |
460 ;; It needs to be reimplemented by modifying the parse-...-listing | |
461 ;; functions to convert the directory listing to ls -l format. | |
462 ;; | |
463 ;; 13. The famous @ bug. As mentioned above in TIPS, ULTRIX marks symlinks | |
464 ;; with a trailing @ in a ls -alF listing. In order to account for this | |
465 ;; ange-ftp looks to chop trailing @'s off of symlink names when it is | |
466 ;; parsing a listing with the F switch. This will cause ange-ftp to | |
467 ;; incorrectly get the name of a symlink on a non-ULTRIX host if its name | |
468 ;; ends in an @. ange-ftp will correct itself if you take F out of the | |
469 ;; dired ls switches (C-u s will allow you to edit the switches). The | |
470 ;; dired buffer will be automatically reverted, which will allow ange-ftp | |
471 ;; to fix its files hashtable. A cookie to anyone who can think of a | |
472 ;; fast, sure-fire way to recognize ULTRIX over ftp. | |
473 | |
474 ;; If you find any bugs or problems with this package, PLEASE either e-mail | |
475 ;; the above author, or send a message to the ange-ftp-lovers mailing list | |
476 ;; below. Ideas and constructive comments are especially welcome. | |
477 | |
478 ;; ange-ftp-lovers: | |
479 ;; | |
480 ;; ange-ftp has its own mailing list modestly called ange-ftp-lovers. All | |
481 ;; users of ange-ftp are welcome to subscribe (see below) and to discuss | |
482 ;; aspects of ange-ftp. New versions of ange-ftp are posted periodically to | |
483 ;; the mailing list. | |
25923 | 484 |
485 ;; [The following information about lists may be obsolete.] | |
486 | |
14169 | 487 ;; To [un]subscribe to ange-ftp-lovers, or to report mailer problems with the |
488 ;; list, please mail one of the following addresses: | |
489 ;; | |
490 ;; ange-ftp-lovers-request@anorman.hpl.hp.com | |
491 ;; or | |
492 ;; ange-ftp-lovers-request%anorman.hpl.hp.com@hplb.hpl.hp.com | |
493 ;; | |
494 ;; Please don't forget the -request part. | |
495 ;; | |
496 ;; For mail to be posted directly to ange-ftp-lovers, send to one of the | |
497 ;; following addresses: | |
498 ;; | |
499 ;; ange-ftp-lovers@anorman.hpl.hp.com | |
500 ;; or | |
501 ;; ange-ftp-lovers%anorman.hpl.hp.com@hplb.hpl.hp.com | |
502 ;; | |
503 ;; Alternatively, there is a mailing list that only gets announcements of new | |
504 ;; ange-ftp releases. This is called ange-ftp-lovers-announce, and can be | |
505 ;; subscribed to by e-mailing to the -request address as above. Please make | |
506 ;; it clear in the request which mailing list you wish to join. | |
507 | |
508 ;; The archives for ange-ftp-lovers can be found via anonymous ftp under: | |
509 ;; | |
510 ;; ftp.reed.edu:pub/mailing-lists/ange-ftp/ | |
1106 | 511 |
14169 | 512 ;; ----------------------------------------------------------- |
513 ;; Technical information on this package: | |
514 ;; ----------------------------------------------------------- | |
515 | |
516 ;; ange-ftp works by putting a handler on file-name-handler-alist | |
517 ;; which is called by many primitives, and a few non-primitives, | |
518 ;; whenever they see a file name of the appropriate sort. | |
519 | |
520 ;; Checklist for adding non-UNIX support for TYPE | |
521 ;; | |
522 ;; The following functions may need TYPE versions: | |
523 ;; (not all functions will be needed for every OS) | |
524 ;; | |
525 ;; ange-ftp-fix-name-for-TYPE | |
526 ;; ange-ftp-fix-dir-name-for-TYPE | |
527 ;; ange-ftp-TYPE-host | |
528 ;; ange-ftp-TYPE-add-host | |
529 ;; ange-ftp-parse-TYPE-listing | |
530 ;; ange-ftp-TYPE-delete-file-entry | |
531 ;; ange-ftp-TYPE-add-file-entry | |
532 ;; ange-ftp-TYPE-file-name-as-directory | |
533 ;; ange-ftp-TYPE-make-compressed-filename | |
534 ;; ange-ftp-TYPE-file-name-sans-versions | |
535 ;; | |
536 ;; Variables: | |
537 ;; | |
538 ;; ange-ftp-TYPE-host-regexp | |
539 ;; May need to add TYPE to ange-ftp-dumb-host-types | |
540 ;; | |
541 ;; Check the following functions for OS dependent coding: | |
542 ;; | |
543 ;; ange-ftp-host-type | |
544 ;; ange-ftp-guess-host-type | |
545 ;; ange-ftp-allow-child-lookup | |
546 | |
547 ;; Host type conventions: | |
548 ;; | |
549 ;; The function ange-ftp-host-type and the variable ange-ftp-dired-host-type | |
550 ;; (mostly) follow the following conventions for remote host types. At | |
551 ;; least, I think that future code should try to follow these conventions, | |
552 ;; and the current code should eventually be made compliant. | |
553 ;; | |
554 ;; nil = local host type, whatever that is (probably unix). | |
555 ;; Think nil as in "not a remote host". This value is used by | |
556 ;; ange-ftp-dired-host-type for local buffers. | |
557 ;; | |
16427 | 558 ;; t = a remote host of unknown type. Think t as in true, it's remote. |
23231
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
559 ;; Currently, `unix' is used as the default remote host type. |
14169 | 560 ;; Maybe we should use t. |
561 ;; | |
23231
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
562 ;; TYPE = a remote host of TYPE type. |
14169 | 563 ;; |
23231
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
564 ;; TYPE:LIST = a remote host of TYPE type, using a specialized ftp listing |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
565 ;; program called list. This is currently only used for Unix |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
566 ;; dl (descriptive listings), when ange-ftp-dired-host-type |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
567 ;; is set to `unix:dl'. |
14169 | 568 |
569 ;; Bug report codes: | |
570 ;; | |
571 ;; Because of their naive faith in this code, there are certain situations | |
572 ;; which the writers of this program believe could never happen. However, | |
573 ;; being realists they have put calls to `error' in the program at these | |
574 ;; points. These errors provide a code, which is an integer, greater than 1. | |
575 ;; To aid debugging. the error codes, and the functions in which they reside | |
576 ;; are listed below. | |
577 ;; | |
578 ;; 1: See ange-ftp-ls | |
579 ;; | |
1106 | 580 |
14169 | 581 ;; ----------------------------------------------------------- |
582 ;; Hall of fame: | |
583 ;; ----------------------------------------------------------- | |
584 ;; | |
585 ;; Thanks to Roland McGrath for improving the filename syntax handling, | |
586 ;; for suggesting many enhancements and for numerous cleanups to the code. | |
587 ;; | |
588 ;; Thanks to Jamie Zawinski for bugfixes and for ideas such as gateways. | |
589 ;; | |
590 ;; Thanks to Ken Laprade for improved .netrc parsing, password reading, and | |
591 ;; dired / shell auto-loading. | |
592 ;; | |
593 ;; Thanks to Sebastian Kremer for dired support and for many ideas and | |
594 ;; bugfixes. | |
595 ;; | |
596 ;; Thanks to Joe Wells for bugfixes, the original non-UNIX system support, | |
597 ;; VOS support, and hostname completion. | |
598 ;; | |
599 ;; Thanks to Nakagawa Takayuki for many good ideas, filename-completion, help | |
600 ;; with file-name expansion, efficiency worries, stylistic concerns and many | |
601 ;; bugfixes. | |
602 ;; | |
603 ;; Thanks to Sandy Rutherford who re-wrote most of ange-ftp to support VMS, | |
604 ;; MTS, CMS and UNIX-dls. Sandy also added dired-support for non-UNIX OS and | |
605 ;; auto-recognition of the host type. | |
606 ;; | |
607 ;; Thanks to Dave Smith who wrote the info file for ange-ftp. | |
608 ;; | |
609 ;; Finally, thanks to Keith Waclena, Mark D. Baushke, Terence Kelleher, Ping | |
610 ;; Zhou, Edward Vielmetti, Jack Repenning, Mike Balenger, Todd Kaufmann, | |
611 ;; Kjetil Svarstad, Tom Wurgler, Linus Tolke, Niko Makila, Carl Edman, Bill | |
612 ;; Trost, Dave Brennan, Dan Jacobson, Andy Scott, Steve Anderson, Sanjay | |
613 ;; Mathur, the folks on the ange-ftp-lovers mailing list and many others | |
614 ;; whose names I've forgotten who have helped to debug and fix problems with | |
615 ;; ange-ftp.el. | |
1106 | 616 |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
617 ;;; Code: |
14169 | 618 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
619 (require 'comint) |
21278 | 620 ;; Silence compiler: |
621 (eval-when-compile | |
25923 | 622 (require 'dired) |
21278 | 623 (defvar comint-last-output-start nil) |
624 (defvar comint-last-input-start nil) | |
625 (defvar comint-last-input-end nil)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
626 |
1106 | 627 ;;;; ------------------------------------------------------------ |
628 ;;;; User customization variables. | |
629 ;;;; ------------------------------------------------------------ | |
630 | |
18956 | 631 (defgroup ange-ftp nil |
632 "Accessing remote files and directories using FTP | |
633 made as simple and transparent as possible." | |
634 :group 'files | |
635 :prefix "ange-ftp-") | |
636 | |
637 (defcustom ange-ftp-name-format | |
14138
9856174aa877
(ange-ftp-name-format): Don't match "/:" or "/.:".
Karl Heuer <kwzh@gnu.org>
parents:
14040
diff
changeset
|
638 '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*[^@/:.]\\):\\(.*\\)" . (3 2 4)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
639 "*Format of a fully expanded remote file name. |
18956 | 640 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
641 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
|
642 where REGEXP is a regular expression matching |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
643 the full remote name, and HOST, USER, and NAME are the numbers of |
18956 | 644 parenthesized expressions in REGEXP for the components (in that order)." |
645 :group 'ange-ftp | |
20015
d5c245242a88
(ange-ftp-name-format): Fix customize type.
Karl Heuer <kwzh@gnu.org>
parents:
18956
diff
changeset
|
646 :type '(list regexp |
d5c245242a88
(ange-ftp-name-format): Fix customize type.
Karl Heuer <kwzh@gnu.org>
parents:
18956
diff
changeset
|
647 (integer :tag "Host group") |
d5c245242a88
(ange-ftp-name-format): Fix customize type.
Karl Heuer <kwzh@gnu.org>
parents:
18956
diff
changeset
|
648 (integer :tag "User group") |
d5c245242a88
(ange-ftp-name-format): Fix customize type.
Karl Heuer <kwzh@gnu.org>
parents:
18956
diff
changeset
|
649 (integer :tag "Name group"))) |
1106 | 650 |
651 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of | |
652 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs. | |
653 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out. | |
654 | |
655 (defvar ange-ftp-multi-msgs | |
3620
219ff1cb76f4
(ange-ftp-multi-msgs): Add 331-.
Richard M. Stallman <rms@gnu.org>
parents:
3611
diff
changeset
|
656 "^220-\\|^230-\\|^226\\|^25.-\\|^221-\\|^200-\\|^331-\\|^4[25]1-\\|^530-" |
7042 | 657 "*Regular expression matching the start of a multiline ftp reply.") |
1106 | 658 |
659 (defvar ange-ftp-good-msgs | |
660 "^220 \\|^230 \\|^226 \\|^25. \\|^221 \\|^200 \\|^[Hh]ash mark" | |
7042 | 661 "*Regular expression matching ftp \"success\" messages.") |
1106 | 662 |
663 ;; CMS and the odd VMS machine say 200 Port rather than 200 PORT. | |
664 ;; Also CMS machines use a multiline 550- reply to say that you | |
665 ;; don't have write permission. ange-ftp gets into multi-line skip | |
666 ;; mode and hangs. Have it ignore 550- instead. It will then barf | |
667 ;; when it gets the 550 line, as it should. | |
668 | |
18956 | 669 (defcustom ange-ftp-skip-msgs |
1106 | 670 (concat "^200 \\(PORT\\|Port\\) \\|^331 \\|^150 \\|^350 \\|^[0-9]+ bytes \\|" |
671 "^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
|
672 "^Data connection \\|" |
16353
07d7ce35e1be
(ange-ftp-skip-msgs): Recognize `passive'.
Richard M. Stallman <rms@gnu.org>
parents:
15958
diff
changeset
|
673 "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye\\|" |
27357
d2027e4f6c93
(ange-ftp-skip-msgs): Add regexp for EPRT.
Gerd Moellmann <gerd@gnu.org>
parents:
27257
diff
changeset
|
674 "^227 .*[Pp]assive\\|^200 EPRT\\|^500 .*EPRT") |
18956 | 675 "*Regular expression matching ftp messages that can be ignored." |
676 :group 'ange-ftp | |
677 :type 'regexp) | |
678 | |
679 (defcustom ange-ftp-fatal-msgs | |
1106 | 680 (concat "^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|" |
681 "^No control connection\\|unknown host\\|^lost connection") | |
7042 | 682 "*Regular expression matching ftp messages that indicate serious errors. |
18956 | 683 |
684 These mean that the FTP process should (or already has) been killed." | |
685 :group 'ange-ftp | |
686 :type 'regexp) | |
687 | |
688 (defcustom ange-ftp-gateway-fatal-msgs | |
1106 | 689 "No route to host\\|Connection closed\\|No such host\\|Login incorrect" |
18956 | 690 "*Regular expression matching login failure messages from rlogin/telnet." |
691 :group 'ange-ftp | |
692 :type 'regexp) | |
693 | |
694 (defcustom ange-ftp-xfer-size-msgs | |
1106 | 695 "^150 .* connection for .* (\\([0-9]+\\) bytes)" |
18956 | 696 "*Regular expression used to determine the number of bytes in a FTP transfer." |
697 :group 'ange-ftp | |
698 :type 'regexp) | |
699 | |
22085
e8163732f7b4
(ange-ftp-tmp-name-template): Use system-tmp-directory.
Richard M. Stallman <rms@gnu.org>
parents:
22076
diff
changeset
|
700 (defcustom ange-ftp-tmp-name-template |
22095
dfe597287db1
(ange-ftp-tmp-name-template): Use temporary-file-directory.
Richard M. Stallman <rms@gnu.org>
parents:
22085
diff
changeset
|
701 (expand-file-name "ange-ftp" temporary-file-directory) |
18956 | 702 "*Template used to create temporary files." |
703 :group 'ange-ftp | |
704 :type 'directory) | |
705 | |
706 (defcustom ange-ftp-gateway-tmp-name-template "/tmp/ange-ftp" | |
1106 | 707 "*Template used to create temporary files when ftp-ing through a gateway. |
18956 | 708 |
1106 | 709 Files starting with this prefix need to be accessible from BOTH the local |
710 machine and the gateway machine, and need to have the SAME name on both | |
711 machines, that is, /tmp is probably NOT what you want, since that is rarely | |
18956 | 712 cross-mounted." |
713 :group 'ange-ftp | |
714 :type 'directory) | |
715 | |
716 (defcustom ange-ftp-netrc-filename "~/.netrc" | |
717 "*File in .netrc format to search for passwords." | |
718 :group 'ange-ftp | |
719 :type 'file) | |
720 | |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
721 (defcustom ange-ftp-disable-netrc-security-check (eq system-type 'windows-nt) |
18956 | 722 "*If non-nil avoid checking permissions on the .netrc file." |
723 :group 'ange-ftp | |
724 :type 'boolean) | |
725 | |
726 (defcustom ange-ftp-default-user nil | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
727 "*User name to use when none is specified in a file name. |
18956 | 728 |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
729 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
|
730 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
|
731 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
|
732 |
14572
c64371c0dbb9
(ange-ftp-default-user): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14466
diff
changeset
|
733 Once a connection to a given host has been initiated, the user name |
c64371c0dbb9
(ange-ftp-default-user): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14466
diff
changeset
|
734 and password information for that host are cached and re-used by |
18956 | 735 ange-ftp. Use \\[ange-ftp-set-user] to change the cached values, |
14572
c64371c0dbb9
(ange-ftp-default-user): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14466
diff
changeset
|
736 since setting `ange-ftp-default-user' directly does not affect |
18956 | 737 the cached information." |
738 :group 'ange-ftp | |
739 :type '(choice (const :tag "Default" nil) | |
22566 | 740 string |
741 (other :tag "Prompt" t))) | |
18956 | 742 |
743 (defcustom ange-ftp-netrc-default-user nil | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
744 "Alternate default user name to use when none is specified. |
18956 | 745 |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
746 This variable is set from the `default' command in your `.netrc' file, |
18956 | 747 if there is one." |
748 :group 'ange-ftp | |
749 :type '(choice (const :tag "Default" nil) | |
750 string)) | |
751 | |
752 (defcustom ange-ftp-default-password nil | |
753 "*Password to use when the user name equals `ange-ftp-default-user'." | |
754 :group 'ange-ftp | |
755 :type '(choice (const :tag "Default" nil) | |
756 string)) | |
757 | |
758 (defcustom ange-ftp-default-account nil | |
759 "*Account to use when the user name equals `ange-ftp-default-user'." | |
760 :group 'ange-ftp | |
761 :type '(choice (const :tag "Default" nil) | |
762 string)) | |
763 | |
764 (defcustom ange-ftp-netrc-default-password nil | |
765 "*Password to use when the user name equals `ange-ftp-netrc-default-user'." | |
766 :group 'ange-ftp | |
767 :type '(choice (const :tag "Default" nil) | |
768 string)) | |
769 | |
770 (defcustom ange-ftp-netrc-default-account nil | |
771 "*Account to use when the user name equals `ange-ftp-netrc-default-user'." | |
772 :group 'ange-ftp | |
773 :type '(choice (const :tag "Default" nil) | |
774 string)) | |
775 | |
776 (defcustom 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
|
777 "*If t, use value of `user-mail-address' as password for anonymous ftp. |
18956 | 778 |
9627
449fc86a0f4f
(ange-ftp-get-passwd): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
9070
diff
changeset
|
779 If a string, then use that string as the password. |
18956 | 780 If nil, prompt the user for a password." |
781 :group 'ange-ftp | |
22566 | 782 :type '(choice (const :tag "Prompt" nil) |
783 string | |
784 (other :tag "User address" t))) | |
18956 | 785 |
786 (defcustom ange-ftp-dumb-unix-host-regexp nil | |
787 "*If non-nil, regexp matching hosts on which `dir' command lists directory." | |
788 :group 'ange-ftp | |
789 :type '(choice (const :tag "Default" nil) | |
790 string)) | |
791 | |
792 (defcustom 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
|
793 (concat "\\.[zZ]$\\|\\.lzh$\\|\\.arc$\\|\\.zip$\\|\\.zoo$\\|\\.tar$\\|" |
1106 | 794 "\\.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
|
795 "\\.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
|
796 "\\.taz$\\|\\.tgz$") |
18956 | 797 "*If a file matches this regexp then it is transferred in binary mode." |
798 :group 'ange-ftp | |
799 :type 'regexp) | |
800 | |
801 (defcustom ange-ftp-gateway-host nil | |
802 "*Name of host to use as gateway machine when local FTP isn't possible." | |
803 :group 'ange-ftp | |
804 :type '(choice (const :tag "Default" nil) | |
805 string)) | |
806 | |
807 (defcustom ange-ftp-local-host-regexp ".*" | |
7042 | 808 "*Regexp selecting hosts which can be reached directly with ftp. |
18956 | 809 |
7042 | 810 For other hosts the FTP process is started on \`ange-ftp-gateway-host\' |
18956 | 811 instead, and/or reached via \`ange-ftp-gateway-ftp-program-name\'." |
812 :group 'ange-ftp | |
813 :type 'regexp) | |
814 | |
815 (defcustom ange-ftp-gateway-program-interactive nil | |
7042 | 816 "*If non-nil then the gateway program should give a shell prompt. |
18956 | 817 |
818 Both telnet and rlogin do something like this." | |
819 :group 'ange-ftp | |
820 :type 'boolean) | |
821 | |
822 (defcustom ange-ftp-gateway-program remote-shell-program | |
7042 | 823 "*Name of program to spawn a shell on the gateway machine. |
18956 | 824 |
10451
bc83756f19ad
(ange-ftp-gateway-program, ange-ftp-shell-command): Use new global
Karl Heuer <kwzh@gnu.org>
parents:
10407
diff
changeset
|
825 Valid candidates are rsh (remsh on some systems), telnet and rlogin. See |
18956 | 826 also the gateway variable above." |
827 :group 'ange-ftp | |
828 :type '(choice (const "rsh") | |
829 (const "telnet") | |
830 (const "rlogin") | |
831 string)) | |
832 | |
833 (defcustom ange-ftp-gateway-prompt-pattern "^[^#$%>;\n]*[#$%>;] *" | |
7042 | 834 "*Regexp matching prompt after complete login sequence on gateway machine. |
18956 | 835 |
7042 | 836 A match for this means the shell is now awaiting input. Make this regexp as |
1106 | 837 strict as possible; it shouldn't match *anything* at all except the user's |
838 initial prompt. The above string will fail under most SUN-3's since it | |
18956 | 839 matches the login banner." |
840 :group 'ange-ftp | |
841 :type 'regexp) | |
1106 | 842 |
843 (defvar ange-ftp-gateway-setup-term-command | |
844 (if (eq system-type 'hpux) | |
845 "stty -onlcr -echo\n" | |
846 "stty -echo nl\n") | |
7042 | 847 "*Set up terminal after logging in to the gateway machine. |
848 This command should stop the terminal from echoing each command, and | |
849 arrange to strip out trailing ^M characters.") | |
1106 | 850 |
18956 | 851 (defcustom 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
|
852 "*Non-nil means the ftp gateway and/or the gateway ftp program is smart. |
18956 | 853 |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
854 Don't bother telnetting, etc., already connected to desired host transparently, |
18956 | 855 or just issue a user@host command in case \`ange-ftp-gateway-host\' is non-nil." |
856 :group 'ange-ftp | |
857 :type 'boolean) | |
858 | |
859 (defcustom ange-ftp-smart-gateway-port "21" | |
860 "*Port on gateway machine to use when smart gateway is in operation." | |
861 :group 'ange-ftp | |
20015
d5c245242a88
(ange-ftp-name-format): Fix customize type.
Karl Heuer <kwzh@gnu.org>
parents:
18956
diff
changeset
|
862 :type 'string) |
18956 | 863 |
864 (defcustom ange-ftp-send-hash t | |
865 "*If non-nil, send the HASH command to the FTP client." | |
866 :group 'ange-ftp | |
867 :type 'boolean) | |
868 | |
869 (defcustom ange-ftp-binary-hash-mark-size nil | |
1106 | 870 "*Default size, in bytes, between hash-marks when transferring a binary file. |
18956 | 871 If nil, this variable will be locally overridden if the FTP client outputs a |
872 suitable response to the HASH command. If non-nil, this value takes | |
873 precedence over the local value." | |
874 :group 'ange-ftp | |
875 :type '(choice (const :tag "Overridden" nil) | |
876 integer)) | |
877 | |
878 (defcustom ange-ftp-ascii-hash-mark-size 1024 | |
1106 | 879 "*Default size, in bytes, between hash-marks when transferring an ASCII file. |
880 This variable is buffer-local and will be locally overridden if the FTP client | |
18956 | 881 outputs a suitable response to the HASH command." |
882 :group 'ange-ftp | |
883 :type 'integer) | |
884 | |
885 (defcustom ange-ftp-process-verbose t | |
886 "*If non-nil then be chatty about interaction with the FTP process." | |
887 :group 'ange-ftp | |
888 :type 'boolean) | |
889 | |
890 (defcustom ange-ftp-ftp-program-name "ftp" | |
891 "*Name of FTP program to run." | |
892 :group 'ange-ftp | |
893 :type 'string) | |
894 | |
895 (defcustom 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
|
896 "*Name of FTP program to run when accessing non-local hosts. |
18956 | 897 |
898 Some AT&T folks claim to use something called `pftp' here." | |
899 :group 'ange-ftp | |
900 :type 'string) | |
901 | |
902 (defcustom ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v") | |
903 "*A list of arguments passed to the FTP program when started." | |
904 :group 'ange-ftp | |
905 :type '(repeat string)) | |
906 | |
907 (defcustom ange-ftp-nslookup-program nil | |
908 "*If non-nil, this is a string naming the nslookup program." | |
909 :group 'ange-ftp | |
910 :type '(choice (const :tag "None" nil) | |
911 string)) | |
912 | |
913 (defcustom ange-ftp-make-backup-files () | |
914 "*Non-nil means make backup files for \"magic\" remote files." | |
915 :group 'ange-ftp | |
916 :type 'boolean) | |
917 | |
918 (defcustom ange-ftp-retry-time 5 | |
7042 | 919 "*Number of seconds to wait before retry if file or listing doesn't arrive. |
18956 | 920 This might need to be increased for very slow connections." |
921 :group 'ange-ftp | |
922 :type 'integer) | |
923 | |
924 (defcustom ange-ftp-auto-save 0 | |
925 "If 1, allow ange-ftp files to be auto-saved. | |
926 If 0, inhibit auto-saving of ange-ftp files. | |
927 Don't use any other value." | |
928 :group 'ange-ftp | |
929 :type '(choice (const :tag "Suppress" 0) | |
930 (const :tag "Allow" 1))) | |
1106 | 931 |
932 ;;;; ------------------------------------------------------------ | |
933 ;;;; Hash table support. | |
934 ;;;; ------------------------------------------------------------ | |
935 | |
936 (require 'backquote) | |
937 | |
938 (defun ange-ftp-make-hashtable (&optional size) | |
939 "Make an obarray suitable for use as a hashtable. | |
940 SIZE, if supplied, should be a prime number." | |
941 (make-vector (or size 31) 0)) | |
942 | |
943 (defun ange-ftp-map-hashtable (fun tbl) | |
944 "Call FUNCTION on each key and value in HASHTABLE." | |
945 (mapatoms | |
946 (function | |
947 (lambda (sym) | |
948 (funcall fun (get sym 'key) (get sym 'val)))) | |
949 tbl)) | |
950 | |
951 (defmacro ange-ftp-make-hash-key (key) | |
952 "Convert KEY into a suitable key for a hashtable." | |
953 (` (if (stringp (, key)) | |
954 (, key) | |
955 (prin1-to-string (, key))))) | |
956 | |
957 (defun ange-ftp-get-hash-entry (key tbl) | |
958 "Return the value associated with KEY in HASHTABLE." | |
959 (let ((sym (intern-soft (ange-ftp-make-hash-key key) tbl))) | |
960 (and sym (get sym 'val)))) | |
961 | |
962 (defun ange-ftp-put-hash-entry (key val tbl) | |
963 "Record an association between KEY and VALUE in HASHTABLE." | |
964 (let ((sym (intern (ange-ftp-make-hash-key key) tbl))) | |
965 (put sym 'val val) | |
966 (put sym 'key key))) | |
967 | |
968 (defun ange-ftp-del-hash-entry (key tbl) | |
969 "Copy all symbols except KEY in HASHTABLE and return modified hashtable." | |
970 (let* ((len (length tbl)) | |
971 (new-tbl (ange-ftp-make-hashtable len)) | |
972 (i (1- len))) | |
973 (ange-ftp-map-hashtable | |
974 (function | |
975 (lambda (k v) | |
976 (or (equal k key) | |
977 (ange-ftp-put-hash-entry k v new-tbl)))) | |
978 tbl) | |
979 (while (>= i 0) | |
980 (aset tbl i (aref new-tbl i)) | |
981 (setq i (1- i))) | |
982 tbl)) | |
983 | |
984 (defun ange-ftp-hash-entry-exists-p (key tbl) | |
985 "Return whether there is an association for KEY in TABLE." | |
986 (intern-soft (ange-ftp-make-hash-key key) tbl)) | |
987 | |
988 (defun ange-ftp-hash-table-keys (tbl) | |
1233 | 989 "Return a sorted list of all the active keys in TABLE, as strings." |
1106 | 990 (sort (all-completions "" tbl) |
991 (function string-lessp))) | |
992 | |
993 ;;;; ------------------------------------------------------------ | |
994 ;;;; Internal variables. | |
995 ;;;; ------------------------------------------------------------ | |
996 | |
997 (defvar ange-ftp-data-buffer-name " *ftp data*" | |
998 "Buffer name to hold directory listing data received from ftp process.") | |
999 | |
1000 (defvar ange-ftp-netrc-modtime nil | |
1001 "Last modified time of the netrc file from file-attributes.") | |
1002 | |
1003 (defvar ange-ftp-user-hashtable (ange-ftp-make-hashtable) | |
1004 "Hash table holding associations between HOST, USER pairs.") | |
1005 | |
1006 (defvar ange-ftp-passwd-hashtable (ange-ftp-make-hashtable) | |
20327
5f8d36dfb126
(ange-ftp-generate-passwd-key):
Karl Heuer <kwzh@gnu.org>
parents:
20272
diff
changeset
|
1007 "Mapping between a HOST, USER pair and a PASSWORD for them. |
5f8d36dfb126
(ange-ftp-generate-passwd-key):
Karl Heuer <kwzh@gnu.org>
parents:
20272
diff
changeset
|
1008 All HOST values should be in lower case.") |
1106 | 1009 |
1010 (defvar ange-ftp-account-hashtable (ange-ftp-make-hashtable) | |
1011 "Mapping between a HOST, USER pair and a ACCOUNT password for them.") | |
1012 | |
1013 (defvar ange-ftp-files-hashtable (ange-ftp-make-hashtable 97) | |
1014 "Hash table for storing directories and their respective files.") | |
1015 | |
20656
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
1016 (defvar ange-ftp-inodes-hashtable (ange-ftp-make-hashtable 97) |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
1017 "Hash table for storing file names and their \"inode numbers\".") |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
1018 |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
1019 (defvar ange-ftp-next-inode-number 1 |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
1020 "Next \"inode number\" value. We give each file name a unique number.") |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
1021 |
1106 | 1022 (defvar ange-ftp-ls-cache-lsargs nil |
1023 "Last set of args used by ange-ftp-ls.") | |
1024 | |
1025 (defvar ange-ftp-ls-cache-file nil | |
1026 "Last file passed to ange-ftp-ls.") | |
1027 | |
1028 (defvar ange-ftp-ls-cache-res nil | |
1029 "Last result returned from ange-ftp-ls.") | |
1030 | |
1031 (defconst ange-ftp-expand-dir-hashtable (ange-ftp-make-hashtable)) | |
1032 | |
1033 (defconst ange-ftp-expand-dir-regexp "^5.0 \\([^: ]+\\):") | |
1034 | |
1035 ;; These are local variables in each FTP process buffer. | |
1036 (defvar ange-ftp-hash-mark-unit nil) | |
1037 (defvar ange-ftp-hash-mark-count nil) | |
1038 (defvar ange-ftp-xfer-size nil) | |
1039 (defvar ange-ftp-process-string nil) | |
1040 (defvar ange-ftp-process-result-line nil) | |
1041 (defvar ange-ftp-process-busy nil) | |
1042 (defvar ange-ftp-process-result nil) | |
1043 (defvar ange-ftp-process-multi-skip nil) | |
1044 (defvar ange-ftp-process-msg nil) | |
1045 (defvar ange-ftp-process-continue nil) | |
1046 (defvar ange-ftp-last-percent nil) | |
1047 | |
1048 ;; These variables are bound by one function and examined by another. | |
1049 ;; Leave them void globally for error checking. | |
1050 (defvar ange-ftp-this-file) | |
1051 (defvar ange-ftp-this-dir) | |
1052 (defvar ange-ftp-this-user) | |
1053 (defvar ange-ftp-this-host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1054 (defvar ange-ftp-this-msg) |
1106 | 1055 (defvar ange-ftp-completion-ignored-pattern) |
1056 (defvar ange-ftp-trample-marker) | |
1057 | |
1058 ;; New error symbols. | |
1059 (put 'ftp-error 'error-conditions '(ftp-error file-error error)) | |
1060 ;; (put 'ftp-error 'error-message "FTP error") | |
1061 | |
1062 ;;; ------------------------------------------------------------ | |
1063 ;;; Enhanced message support. | |
1064 ;;; ------------------------------------------------------------ | |
1065 | |
1066 (defun ange-ftp-message (fmt &rest args) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1067 "Display message in echo area, but indicate if truncated. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1068 Args are as in `message': a format string, plus arguments to be formatted." |
1106 | 1069 (let ((msg (apply (function format) fmt args)) |
1070 (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
|
1071 (if noninteractive |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1072 msg |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1073 (if (>= (length msg) max) |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1074 ;; 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
|
1075 (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
|
1076 (message "%s" msg)))) |
1106 | 1077 |
1078 (defun ange-ftp-abbreviate-filename (file &optional new) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1079 "Abbreviate the file name FILE relative to the default-directory. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1080 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
|
1081 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
|
1082 (save-match-data |
1106 | 1083 (if (and default-directory |
1084 (string-match (concat "^" | |
1085 (regexp-quote default-directory) | |
1086 ".") file)) | |
1087 (setq file (substring file (1- (match-end 0))))) | |
1088 (if (and new | |
1089 (string-equal (file-name-nondirectory file) | |
1090 (file-name-nondirectory new))) | |
1091 (setq file (file-name-directory file))) | |
1092 (or file "./"))) | |
1093 | |
1094 ;;;; ------------------------------------------------------------ | |
1095 ;;;; User / Host mapping support. | |
1096 ;;;; ------------------------------------------------------------ | |
1097 | |
1098 (defun ange-ftp-set-user (host user) | |
1099 "For a given HOST, set or change the default USER." | |
1100 (interactive "sHost: \nsUser: ") | |
1101 (ange-ftp-put-hash-entry host user ange-ftp-user-hashtable)) | |
1102 | |
1103 (defun ange-ftp-get-user (host) | |
1104 "Given a HOST, return the default USER." | |
1105 (ange-ftp-parse-netrc) | |
1106 (let ((user (ange-ftp-get-hash-entry host ange-ftp-user-hashtable))) | |
1107 (or user | |
1108 (prog1 | |
1109 (setq user | |
1110 (cond ((stringp ange-ftp-default-user) | |
1111 ;; We have a default name. Use it. | |
1112 ange-ftp-default-user) | |
1113 (ange-ftp-default-user | |
1114 ;; Ask the user. | |
1115 (let ((enable-recursive-minibuffers t)) | |
1116 (read-string (format "User for %s: " host) | |
1117 (user-login-name)))) | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1118 (ange-ftp-netrc-default-user) |
1106 | 1119 ;; Default to the user's login name. |
1120 (t | |
1121 (user-login-name)))) | |
1122 (ange-ftp-set-user host user))))) | |
1123 | |
1124 ;;;; ------------------------------------------------------------ | |
1125 ;;;; Password support. | |
1126 ;;;; ------------------------------------------------------------ | |
1127 | |
1128 (defmacro ange-ftp-generate-passwd-key (host user) | |
20327
5f8d36dfb126
(ange-ftp-generate-passwd-key):
Karl Heuer <kwzh@gnu.org>
parents:
20272
diff
changeset
|
1129 (` (concat (downcase (, host)) "/" (, user)))) |
1106 | 1130 |
1131 (defmacro ange-ftp-lookup-passwd (host user) | |
1132 (` (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key (, host) (, user)) | |
1133 ange-ftp-passwd-hashtable))) | |
1134 | |
1135 (defun ange-ftp-set-passwd (host user passwd) | |
1136 "For a given HOST and USER, set or change the associated PASSWORD." | |
1137 (interactive (list (read-string "Host: ") | |
1138 (read-string "User: ") | |
23464
7fb0a3c74e1d
(ange-ftp-read-passwd): Function deleted.
Dave Love <fx@gnu.org>
parents:
23246
diff
changeset
|
1139 (read-passwd "Password: "))) |
1106 | 1140 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) |
1141 passwd | |
1142 ange-ftp-passwd-hashtable)) | |
1143 | |
1144 (defun ange-ftp-get-host-with-passwd (user) | |
1145 "Given a USER, return a host we know the password for." | |
1146 (ange-ftp-parse-netrc) | |
1147 (catch 'found-one | |
1148 (ange-ftp-map-hashtable | |
1149 (function (lambda (host val) | |
1150 (if (ange-ftp-lookup-passwd host user) | |
1151 (throw 'found-one host)))) | |
1152 ange-ftp-user-hashtable) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1153 (save-match-data |
1106 | 1154 (ange-ftp-map-hashtable |
1155 (function | |
1156 (lambda (key value) | |
1157 (if (string-match "^[^/]*\\(/\\).*$" key) | |
1158 (let ((host (substring key 0 (match-beginning 1)))) | |
1159 (if (and (string-equal user (substring key (match-end 1))) | |
1160 value) | |
1161 (throw 'found-one host)))))) | |
1162 ange-ftp-passwd-hashtable)) | |
1163 nil)) | |
1164 | |
1165 (defun ange-ftp-get-passwd (host user) | |
1166 "Return the password for specified HOST and USER, asking user if necessary." | |
1167 (ange-ftp-parse-netrc) | |
1168 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
1169 ;; look up password in the hash table first; user might have overridden the |
1106 | 1170 ;; defaults. |
1171 (cond ((ange-ftp-lookup-passwd host user)) | |
1172 | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1173 ;; See if default user and password set. |
1106 | 1174 ((and (stringp ange-ftp-default-user) |
1175 ange-ftp-default-password | |
1176 (string-equal user ange-ftp-default-user)) | |
1177 ange-ftp-default-password) | |
1178 | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1179 ;; 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
|
1180 ((and (stringp ange-ftp-netrc-default-user) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1181 ange-ftp-netrc-default-password |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1182 (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
|
1183 ange-ftp-netrc-default-password) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1184 |
1106 | 1185 ;; anonymous ftp password is handled specially since there is an |
1186 ;; unwritten rule about how that is used on the Internet. | |
1187 ((and (or (string-equal user "anonymous") | |
1188 (string-equal user "ftp")) | |
1189 ange-ftp-generate-anonymous-password) | |
1190 (if (stringp ange-ftp-generate-anonymous-password) | |
1191 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
|
1192 user-mail-address)) |
1106 | 1193 |
1194 ;; see if same user has logged in to other hosts; if so then prompt | |
1195 ;; with the password that was used there. | |
1196 (t | |
1197 (let* ((other (ange-ftp-get-host-with-passwd user)) | |
1198 (passwd (if other | |
1199 | |
1200 ;; found another machine with the same user. | |
1201 ;; Try that account. | |
23464
7fb0a3c74e1d
(ange-ftp-read-passwd): Function deleted.
Dave Love <fx@gnu.org>
parents:
23246
diff
changeset
|
1202 (read-passwd |
15798
a745f54990f5
(ange-ftp-read-passwd): Let first input override
Richard M. Stallman <rms@gnu.org>
parents:
15449
diff
changeset
|
1203 (format "passwd for %s@%s (default same as %s@%s): " |
1106 | 1204 user host user other) |
23464
7fb0a3c74e1d
(ange-ftp-read-passwd): Function deleted.
Dave Love <fx@gnu.org>
parents:
23246
diff
changeset
|
1205 nil |
1106 | 1206 (ange-ftp-lookup-passwd other user)) |
1207 | |
1208 ;; I give up. Ask the user for the password. | |
23464
7fb0a3c74e1d
(ange-ftp-read-passwd): Function deleted.
Dave Love <fx@gnu.org>
parents:
23246
diff
changeset
|
1209 (read-passwd |
1106 | 1210 (format "Password for %s@%s: " user host))))) |
1211 (ange-ftp-set-passwd host user passwd) | |
1212 passwd)))) | |
1213 | |
1214 ;;;; ------------------------------------------------------------ | |
1215 ;;;; Account support | |
1216 ;;;; ------------------------------------------------------------ | |
1217 | |
1218 ;; Account passwords must be either specified in the .netrc file, or set | |
1219 ;; manually by calling ange-ftp-set-account. For the moment, ange-ftp doesn't | |
1220 ;; check to see whether the FTP process is actually prompting for an account | |
1221 ;; password. | |
1222 | |
1223 (defun ange-ftp-set-account (host user account) | |
1224 "For a given HOST and USER, set or change the associated ACCOUNT password." | |
1225 (interactive (list (read-string "Host: ") | |
1226 (read-string "User: ") | |
23464
7fb0a3c74e1d
(ange-ftp-read-passwd): Function deleted.
Dave Love <fx@gnu.org>
parents:
23246
diff
changeset
|
1227 (read-passwd "Account password: "))) |
1106 | 1228 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) |
1229 account | |
1230 ange-ftp-account-hashtable)) | |
1231 | |
1232 (defun ange-ftp-get-account (host user) | |
1233 "Given a HOST and USER, return the FTP account." | |
1234 (ange-ftp-parse-netrc) | |
1235 (or (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key host user) | |
1236 ange-ftp-account-hashtable) | |
1237 (and (stringp ange-ftp-default-user) | |
1238 (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
|
1239 ange-ftp-default-account) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1240 (and (stringp ange-ftp-netrc-default-user) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1241 (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
|
1242 ange-ftp-netrc-default-account))) |
1106 | 1243 |
1244 ;;;; ------------------------------------------------------------ | |
1245 ;;;; ~/.netrc support | |
1246 ;;;; ------------------------------------------------------------ | |
1247 | |
1248 (defun ange-ftp-chase-symlinks (file) | |
1233 | 1249 "Return the filename that FILE references, following all symbolic links." |
1106 | 1250 (let (temp) |
1251 (while (setq temp (ange-ftp-real-file-symlink-p file)) | |
1252 (setq file | |
1253 (if (file-name-absolute-p temp) | |
1254 temp | |
1255 (concat (file-name-directory file) temp))))) | |
1256 file) | |
1257 | |
7042 | 1258 ;; Move along current line looking for the value of the TOKEN. |
1259 ;; Valid separators between TOKEN and its value are commas and | |
1260 ;; whitespace. Second arg LIMIT is a limit for the search. | |
1261 | |
1106 | 1262 (defun ange-ftp-parse-netrc-token (token limit) |
1263 (if (search-forward token limit t) | |
1264 (let (beg) | |
1265 (skip-chars-forward ", \t\r\n" limit) | |
1266 (if (eq (following-char) ?\") ;quoted token value | |
1267 (progn (forward-char 1) | |
1268 (setq beg (point)) | |
1269 (skip-chars-forward "^\"" limit) | |
1270 (forward-char 1) | |
1271 (buffer-substring beg (1- (point)))) | |
1272 (setq beg (point)) | |
1273 (skip-chars-forward "^, \t\r\n" limit) | |
1274 (buffer-substring beg (point)))))) | |
1275 | |
7042 | 1276 ;; Extract the values for the tokens `machine', `login', |
1277 ;; `password' and `account' in the current buffer. If successful, | |
1278 ;; record the information found. | |
1279 | |
1106 | 1280 (defun ange-ftp-parse-netrc-group () |
1281 (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
|
1282 (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
|
1283 (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
|
1284 ;; 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
|
1285 (progn |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
1286 (skip-chars-forward "^ \t\r\n") |
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
1287 (skip-chars-forward " \t\r\n") |
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
1288 (skip-chars-forward "^ \t\r\n")) |
8397
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1289 ;; Skip `default'. |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
1290 (skip-chars-forward "^ \t\r\n")) |
8397
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1291 ;; 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
|
1292 ;; 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
|
1293 (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
|
1294 (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
|
1295 (point-max)))) |
1106 | 1296 machine login password account) |
1297 (setq machine (ange-ftp-parse-netrc-token "machine" end) | |
1298 login (ange-ftp-parse-netrc-token "login" end) | |
1299 password (ange-ftp-parse-netrc-token "password" end) | |
1300 account (ange-ftp-parse-netrc-token "account" end)) | |
1301 (if (and machine login) | |
1302 ;; found a `machine` token. | |
1303 (progn | |
1304 (ange-ftp-set-user machine login) | |
1305 (ange-ftp-set-passwd machine login password) | |
1306 (and account | |
1307 (ange-ftp-set-account machine login account))) | |
1308 (goto-char start) | |
1309 (if (search-forward "default" end t) | |
1310 ;; found a `default' token | |
1311 (progn | |
1312 (setq login (ange-ftp-parse-netrc-token "login" end) | |
1313 password (ange-ftp-parse-netrc-token "password" end) | |
1314 account (ange-ftp-parse-netrc-token "account" end)) | |
1315 (and login | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1316 (setq ange-ftp-netrc-default-user login)) |
1106 | 1317 (and password |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1318 (setq ange-ftp-netrc-default-password password)) |
1106 | 1319 (and account |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1320 (setq ange-ftp-netrc-default-account account))))) |
1106 | 1321 (goto-char end))) |
1322 | |
7042 | 1323 ;; Read in ~/.netrc, if one exists. If ~/.netrc file exists and has |
1324 ;; the correct permissions then extract the \`machine\', \`login\', | |
1325 ;; \`password\' and \`account\' information from within. | |
1326 | |
1106 | 1327 (defun ange-ftp-parse-netrc () |
1328 ;; We set this before actually doing it to avoid the possibility | |
1329 ;; of an infinite loop if ange-ftp-netrc-filename is an FTP file. | |
1330 (interactive) | |
11315
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1331 (let (file attr) |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1332 (let ((default-directory "/")) |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1333 (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
|
1334 (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
|
1335 (setq attr (ange-ftp-real-file-attributes file))) |
1106 | 1336 (if (and attr ; file exists. |
1337 (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
|
1338 (save-match-data |
1106 | 1339 (if (or ange-ftp-disable-netrc-security-check |
1340 (and (eq (nth 2 attr) (user-uid)) ; Same uids. | |
1341 (string-match ".r..------" (nth 8 attr)))) | |
1342 (save-excursion | |
1343 ;; we are cheating a bit here. I'm trying to do the equivalent | |
1344 ;; of find-file on the .netrc file, but then nuke it afterwards. | |
1345 ;; with the bit of logic below we should be able to have | |
1346 ;; encrypted .netrc files. | |
1347 (set-buffer (generate-new-buffer "*ftp-.netrc*")) | |
1348 (ange-ftp-real-insert-file-contents file) | |
1349 (setq buffer-file-name file) | |
1350 (setq default-directory (file-name-directory file)) | |
1351 (normal-mode t) | |
1352 (mapcar 'funcall find-file-hooks) | |
1353 (setq buffer-file-name nil) | |
1354 (goto-char (point-min)) | |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
1355 (skip-chars-forward " \t\r\n") |
1106 | 1356 (while (not (eobp)) |
1357 (ange-ftp-parse-netrc-group)) | |
1358 (kill-buffer (current-buffer))) | |
1359 (ange-ftp-message "%s either not owned by you or badly protected." | |
1360 ange-ftp-netrc-filename) | |
1361 (sit-for 1)) | |
1362 (setq ange-ftp-netrc-modtime (nth 5 attr)))))) | |
1363 | |
7042 | 1364 ;; Return a list of prefixes of the form 'user@host:' to be used when |
1365 ;; completion is done in the root directory. | |
1366 | |
1106 | 1367 (defun ange-ftp-generate-root-prefixes () |
1368 (ange-ftp-parse-netrc) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1369 (save-match-data |
1106 | 1370 (let (res) |
1371 (ange-ftp-map-hashtable | |
1372 (function | |
1373 (lambda (key value) | |
1374 (if (string-match "^[^/]*\\(/\\).*$" key) | |
1375 (let ((host (substring key 0 (match-beginning 1))) | |
1376 (user (substring key (match-end 1)))) | |
1377 (setq res (cons (list (concat user "@" host ":")) | |
1378 res)))))) | |
1379 ange-ftp-passwd-hashtable) | |
1380 (ange-ftp-map-hashtable | |
1381 (function (lambda (host user) | |
1382 (setq res (cons (list (concat host ":")) | |
1383 res)))) | |
1384 ange-ftp-user-hashtable) | |
1385 (or res (list nil))))) | |
1386 | |
1387 ;;;; ------------------------------------------------------------ | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1388 ;;;; Remote file name syntax support. |
1106 | 1389 ;;;; ------------------------------------------------------------ |
1390 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1391 (defmacro ange-ftp-ftp-name-component (n ns name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1392 "Extract the Nth ftp file name component from NS." |
1106 | 1393 (` (let ((elt (nth (, n) (, ns)))) |
1394 (if (match-beginning elt) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1395 (substring (, name) (match-beginning elt) (match-end elt)))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1396 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1397 (defvar ange-ftp-ftp-name-arg "") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1398 (defvar ange-ftp-ftp-name-res nil) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1399 |
7042 | 1400 ;; Parse NAME according to `ange-ftp-name-format' (which see). |
1401 ;; 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
|
1402 (defun ange-ftp-ftp-name (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1403 (if (string-equal name ange-ftp-ftp-name-arg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1404 ange-ftp-ftp-name-res |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1405 (setq ange-ftp-ftp-name-arg name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1406 ange-ftp-ftp-name-res |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1407 (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
|
1408 (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
|
1409 (let* ((ns (cdr ange-ftp-name-format)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1410 (host (ange-ftp-ftp-name-component 0 ns name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1411 (user (ange-ftp-ftp-name-component 1 ns name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1412 (name (ange-ftp-ftp-name-component 2 ns name))) |
1106 | 1413 (if (zerop (length user)) |
1414 (setq user (ange-ftp-get-user host))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1415 (list host user name)) |
1106 | 1416 nil))))) |
1417 | |
7042 | 1418 ;; Take a FULLNAME that matches according to ange-ftp-name-format and |
1419 ;; replace the name component with NAME. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1420 (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
|
1421 (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
|
1422 (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
|
1423 (let* ((ns (cdr ange-ftp-name-format)) |
1106 | 1424 (elt (nth 2 ns))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1425 (concat (substring fullname 0 (match-beginning elt)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1426 name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1427 (substring fullname (match-end elt))))))) |
1106 | 1428 |
1429 ;;;; ------------------------------------------------------------ | |
1430 ;;;; Miscellaneous utils. | |
1431 ;;;; ------------------------------------------------------------ | |
1432 | |
1433 ;; (setq ange-ftp-tmp-keymap (make-sparse-keymap)) | |
1434 ;; (define-key ange-ftp-tmp-keymap "\C-m" 'exit-minibuffer) | |
1435 | |
1603
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1436 (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
|
1437 "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
|
1438 (message nil)) |
1106 | 1439 |
7042 | 1440 ;; Return the name of the buffer that collects output from the ftp process |
1441 ;; connected to the given HOST and USER pair. | |
1106 | 1442 (defun ange-ftp-ftp-process-buffer (host user) |
1443 (concat "*ftp " user "@" host "*")) | |
1444 | |
7042 | 1445 ;; Display the last chunk of output from the ftp process for the given HOST |
1446 ;; USER pair, and signal an error including MSG in the text. | |
1106 | 1447 (defun ange-ftp-error (host user msg) |
1448 (let ((cur (selected-window)) | |
1449 (pop-up-windows t)) | |
1450 (pop-to-buffer | |
1451 (get-buffer-create | |
1452 (ange-ftp-ftp-process-buffer host user))) | |
1453 (goto-char (point-max)) | |
1454 (select-window cur)) | |
1455 (signal 'ftp-error (list (format "FTP Error: %s" msg)))) | |
1456 | |
1457 (defun ange-ftp-set-buffer-mode () | |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
1458 "Set correct modes for the current buffer if visiting a remote file." |
1106 | 1459 (if (and (stringp buffer-file-name) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1460 (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
|
1461 (auto-save-mode ange-ftp-auto-save))) |
1106 | 1462 |
15449
8e6b770317a5
(ange-ftp-kill-ftp-process): Really use the BUFFER arg. Make it optional.
Richard M. Stallman <rms@gnu.org>
parents:
14887
diff
changeset
|
1463 (defun ange-ftp-kill-ftp-process (&optional buffer) |
8e6b770317a5
(ange-ftp-kill-ftp-process): Really use the BUFFER arg. Make it optional.
Richard M. Stallman <rms@gnu.org>
parents:
14887
diff
changeset
|
1464 "Kill the FTP process associated with BUFFER (the current buffer, if nil). |
1233 | 1465 If the BUFFER's visited filename or default-directory is an ftp filename |
1106 | 1466 then kill the related ftp process." |
1467 (interactive "bKill FTP process associated with buffer: ") | |
1468 (if (null buffer) | |
15861
4bc8e9119883
(ange-ftp-kill-ftp-process): Handle buffer name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
15798
diff
changeset
|
1469 (setq buffer (current-buffer)) |
4bc8e9119883
(ange-ftp-kill-ftp-process): Handle buffer name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
15798
diff
changeset
|
1470 (setq buffer (get-buffer buffer))) |
15449
8e6b770317a5
(ange-ftp-kill-ftp-process): Really use the BUFFER arg. Make it optional.
Richard M. Stallman <rms@gnu.org>
parents:
14887
diff
changeset
|
1471 (let ((file (or (buffer-file-name buffer) |
8e6b770317a5
(ange-ftp-kill-ftp-process): Really use the BUFFER arg. Make it optional.
Richard M. Stallman <rms@gnu.org>
parents:
14887
diff
changeset
|
1472 (save-excursion (set-buffer buffer) default-directory)))) |
1106 | 1473 (if file |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1474 (let ((parsed (ange-ftp-ftp-name (expand-file-name file)))) |
1106 | 1475 (if parsed |
1476 (let ((host (nth 0 parsed)) | |
1477 (user (nth 1 parsed))) | |
21313
47c514f3eed4
(ange-ftp-kill-ftp-process): Convert buffer name to the buffer.
Richard M. Stallman <rms@gnu.org>
parents:
21278
diff
changeset
|
1478 (kill-buffer (get-buffer (ange-ftp-ftp-process-buffer host user))))))))) |
1106 | 1479 |
1480 (defun ange-ftp-quote-string (string) | |
1481 "Quote any characters in STRING that may confuse the ftp process." | |
1482 (apply (function concat) | |
1483 (mapcar (function | |
16933
c6d12d67e2b5
(ange-ftp-get-process): Call delete-process.
Richard M. Stallman <rms@gnu.org>
parents:
16916
diff
changeset
|
1484 ;; This is said to be wrong; ftp is said to |
c6d12d67e2b5
(ange-ftp-get-process): Call delete-process.
Richard M. Stallman <rms@gnu.org>
parents:
16916
diff
changeset
|
1485 ;; need quoting only for ", and that by doubling it. |
c6d12d67e2b5
(ange-ftp-get-process): Call delete-process.
Richard M. Stallman <rms@gnu.org>
parents:
16916
diff
changeset
|
1486 ;; But experiment says this kind of quoting is correct |
c6d12d67e2b5
(ange-ftp-get-process): Call delete-process.
Richard M. Stallman <rms@gnu.org>
parents:
16916
diff
changeset
|
1487 ;; when talking to ftp on GNU/Linux systems. |
1106 | 1488 (lambda (char) |
1489 (if (or (<= char ? ) | |
1490 (> char ?\~) | |
1491 (= char ?\") | |
1492 (= char ?\\)) | |
1493 (vector ?\\ char) | |
1494 (vector char)))) | |
1495 string))) | |
1496 | |
1497 (defun ange-ftp-barf-if-not-directory (directory) | |
1498 (or (file-directory-p directory) | |
1499 (signal 'file-error | |
1500 (list "Opening directory" | |
1501 (if (file-exists-p directory) | |
1502 "not a directory" | |
1503 "no such file or directory") | |
1504 directory)))) | |
1505 | |
1506 ;;;; ------------------------------------------------------------ | |
1507 ;;;; FTP process filter support. | |
1508 ;;;; ------------------------------------------------------------ | |
1509 | |
1510 (defun ange-ftp-process-handle-line (line proc) | |
7042 | 1511 "Look at the given LINE from the ftp process PROC. |
1512 Try to categorize it into one of four categories: | |
1513 good, skip, fatal, or unknown." | |
1106 | 1514 (cond ((string-match ange-ftp-xfer-size-msgs line) |
1515 (setq ange-ftp-xfer-size | |
1516 (ash (string-to-int (substring line | |
1517 (match-beginning 1) | |
1518 (match-end 1))) | |
1519 -10))) | |
1520 ((string-match ange-ftp-skip-msgs line) | |
1521 t) | |
1522 ((string-match ange-ftp-good-msgs line) | |
1523 (setq ange-ftp-process-busy nil | |
1524 ange-ftp-process-result t | |
1525 ange-ftp-process-result-line line)) | |
9664 | 1526 ;; Check this before checking for errors. |
1527 ;; Otherwise the last line of these three seems to be an error: | |
1528 ;; 230-see a significant impact from the move. For those of you who can't | |
1529 ;; 230-use DNS to resolve hostnames and get an error message like | |
1530 ;; 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
|
1531 ((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
|
1532 (setq ange-ftp-process-multi-skip t)) |
1106 | 1533 ((string-match ange-ftp-fatal-msgs line) |
1534 (delete-process proc) | |
1535 (setq ange-ftp-process-busy nil | |
1536 ange-ftp-process-result-line line)) | |
1537 (ange-ftp-process-multi-skip | |
1538 t) | |
1539 (t | |
1540 (setq ange-ftp-process-busy nil | |
1541 ange-ftp-process-result-line line)))) | |
1542 | |
1543 (defun ange-ftp-set-xfer-size (host user bytes) | |
1544 "Set the size of the next FTP transfer in bytes." | |
1545 (let ((proc (ange-ftp-get-process host user))) | |
1546 (if proc | |
1547 (let ((buf (process-buffer proc))) | |
1548 (if buf | |
1549 (save-excursion | |
1550 (set-buffer buf) | |
1551 (setq ange-ftp-xfer-size (ash bytes -10)))))))) | |
1552 | |
1553 (defun ange-ftp-process-handle-hash (str) | |
1554 "Remove hash marks from STRING and display count so far." | |
1555 (setq str (concat (substring str 0 (match-beginning 0)) | |
1556 (substring str (match-end 0))) | |
1557 ange-ftp-hash-mark-count (+ (- (match-end 0) | |
1558 (match-beginning 0)) | |
1559 ange-ftp-hash-mark-count)) | |
13594
b7cb31d324cf
(ange-ftp-process-handle-hash): If
Richard M. Stallman <rms@gnu.org>
parents:
13311
diff
changeset
|
1560 (and ange-ftp-hash-mark-unit |
b7cb31d324cf
(ange-ftp-process-handle-hash): If
Richard M. Stallman <rms@gnu.org>
parents:
13311
diff
changeset
|
1561 ange-ftp-process-msg |
1106 | 1562 ange-ftp-process-verbose |
1563 (not (eq (selected-window) (minibuffer-window))) | |
1564 (not (boundp 'search-message)) ;screws up isearch otherwise | |
1565 (not cursor-in-echo-area) ;screws up y-or-n-p otherwise | |
1566 (let ((kbytes (ash (* ange-ftp-hash-mark-unit | |
1567 ange-ftp-hash-mark-count) | |
1568 -6))) | |
1569 (if (zerop ange-ftp-xfer-size) | |
1570 (ange-ftp-message "%s...%dk" ange-ftp-process-msg kbytes) | |
1571 (let ((percent (/ (* 100 kbytes) ange-ftp-xfer-size))) | |
1572 ;; cut out the redisplay of identical %-age messages. | |
1573 (if (not (eq percent ange-ftp-last-percent)) | |
1574 (progn | |
1575 (setq ange-ftp-last-percent percent) | |
1576 (ange-ftp-message "%s...%d%%" ange-ftp-process-msg percent))))))) | |
1577 str) | |
1578 | |
7042 | 1579 ;; Call the function specified by CONT. CONT can be either a function |
1580 ;; or a list of a function and some args. The first two parameters | |
1581 ;; passed to the function will be RESULT and LINE. The remaining args | |
1582 ;; will be taken from CONT if a list was passed. | |
1583 | |
1106 | 1584 (defun ange-ftp-call-cont (cont result line) |
1585 (if cont | |
1586 (if (and (listp cont) | |
1587 (not (eq (car cont) 'lambda))) | |
1588 (apply (car cont) result line (cdr cont)) | |
1589 (funcall cont result line)))) | |
1590 | |
7042 | 1591 ;; Build up a complete line of output from the ftp PROCESS and pass it |
1592 ;; on to ange-ftp-process-handle-line to deal with. | |
1593 | |
1106 | 1594 (defun ange-ftp-process-filter (proc str) |
1595 (let ((buffer (process-buffer proc)) | |
1596 (old-buffer (current-buffer))) | |
1597 | |
15872
244a4779d1b5
(ange-ftp-process-filter): Discard nulls.
Richard M. Stallman <rms@gnu.org>
parents:
15861
diff
changeset
|
1598 ;; Eliminate nulls. |
244a4779d1b5
(ange-ftp-process-filter): Discard nulls.
Richard M. Stallman <rms@gnu.org>
parents:
15861
diff
changeset
|
1599 (while (string-match "\000+" str) |
244a4779d1b5
(ange-ftp-process-filter): Discard nulls.
Richard M. Stallman <rms@gnu.org>
parents:
15861
diff
changeset
|
1600 (setq str (replace-match "" nil nil str))) |
244a4779d1b5
(ange-ftp-process-filter): Discard nulls.
Richard M. Stallman <rms@gnu.org>
parents:
15861
diff
changeset
|
1601 |
1106 | 1602 ;; see if the buffer is still around... it could have been deleted. |
1603 (if (buffer-name buffer) | |
1604 (unwind-protect | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1605 (progn |
1106 | 1606 (set-buffer (process-buffer proc)) |
1607 | |
1608 ;; handle hash mark printing | |
13594
b7cb31d324cf
(ange-ftp-process-handle-hash): If
Richard M. Stallman <rms@gnu.org>
parents:
13311
diff
changeset
|
1609 (and ange-ftp-process-busy |
1106 | 1610 (string-match "^#+$" str) |
1611 (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
|
1612 (comint-output-filter proc str) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1613 ;; 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
|
1614 (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
|
1615 (process-mark proc))) |
1106 | 1616 (if ange-ftp-process-busy |
1617 (progn | |
1618 (setq ange-ftp-process-string (concat ange-ftp-process-string | |
1619 str)) | |
1620 | |
1621 ;; if we gave an empty password to the USER command earlier | |
1622 ;; then we should send a null password now. | |
1623 (if (string-match "Password: *$" ange-ftp-process-string) | |
1624 (send-string proc "\n")))) | |
1625 (while (and ange-ftp-process-busy | |
1626 (string-match "\n" ange-ftp-process-string)) | |
1627 (let ((line (substring ange-ftp-process-string | |
1628 0 | |
1629 (match-beginning 0)))) | |
1630 (setq ange-ftp-process-string (substring ange-ftp-process-string | |
1631 (match-end 0))) | |
1632 (while (string-match "^ftp> *" line) | |
1633 (setq line (substring line (match-end 0)))) | |
1634 (ange-ftp-process-handle-line line proc))) | |
1635 | |
1636 ;; has the ftp client finished? if so then do some clean-up | |
1637 ;; actions. | |
1638 (if (not ange-ftp-process-busy) | |
1639 (progn | |
1640 ;; reset the xfer size | |
1641 (setq ange-ftp-xfer-size 0) | |
1642 | |
1643 ;; issue the "done" message since we've finished. | |
1644 (if (and ange-ftp-process-msg | |
1645 ange-ftp-process-verbose | |
1646 ange-ftp-process-result) | |
1647 (progn | |
1648 (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
|
1649 (ange-ftp-repaint-minibuffer) |
1106 | 1650 (setq ange-ftp-process-msg nil))) |
1651 | |
1652 ;; is there a continuation we should be calling? if so, | |
1653 ;; we'd better call it, making sure we only call it once. | |
1654 (if ange-ftp-process-continue | |
1655 (let ((cont ange-ftp-process-continue)) | |
1656 (setq ange-ftp-process-continue nil) | |
1657 (ange-ftp-call-cont cont | |
1658 ange-ftp-process-result | |
1659 ange-ftp-process-result-line)))))) | |
1660 (set-buffer old-buffer))))) | |
1661 | |
1662 (defun ange-ftp-process-sentinel (proc str) | |
1663 "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
|
1664 (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
|
1665 (if (string-match "\\*ftp \\([^@]+\\)@\\([^*]+\\)\\*" name) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1666 (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
|
1667 (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
|
1668 (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
|
1669 (setq ange-ftp-ls-cache-file nil)) |
1106 | 1670 |
1671 ;;;; ------------------------------------------------------------ | |
1672 ;;;; Gateway support. | |
1673 ;;;; ------------------------------------------------------------ | |
1674 | |
1675 (defun ange-ftp-use-gateway-p (host) | |
1676 "Returns whether to access this host via a normal (non-smart) gateway." | |
1677 ;; yes, I know that I could simplify the following expression, but it is | |
1678 ;; clearer (to me at least) this way. | |
1679 (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
|
1680 (save-match-data |
1106 | 1681 (not (string-match ange-ftp-local-host-regexp host))))) |
1682 | |
1683 (defun ange-ftp-use-smart-gateway-p (host) | |
1684 "Returns whether to access this host via a smart gateway." | |
1685 (and ange-ftp-smart-gateway | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1686 (save-match-data |
1106 | 1687 (not (string-match ange-ftp-local-host-regexp host))))) |
1688 | |
1689 | |
1690 ;;; ------------------------------------------------------------ | |
1691 ;;; Temporary file location and deletion... | |
1692 ;;; ------------------------------------------------------------ | |
1693 | |
1694 (defun ange-ftp-make-tmp-name (host) | |
1695 "This routine will return the name of a new file." | |
26039
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25923
diff
changeset
|
1696 (make-temp-file (if (ange-ftp-use-gateway-p host) |
1106 | 1697 ange-ftp-gateway-tmp-name-template |
26039
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25923
diff
changeset
|
1698 ange-ftp-tmp-name-template))) |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25923
diff
changeset
|
1699 |
fb6b9c37cdc4
Use make-temp-file.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
25923
diff
changeset
|
1700 (defalias 'ange-ftp-del-tmp-name 'delete-file) |
1106 | 1701 |
1702 ;;;; ------------------------------------------------------------ | |
1703 ;;;; Interactive gateway program support. | |
1704 ;;;; ------------------------------------------------------------ | |
1705 | |
1706 (defvar ange-ftp-gwp-running t) | |
1707 (defvar ange-ftp-gwp-status nil) | |
1708 | |
1709 (defun ange-ftp-gwp-sentinel (proc str) | |
1710 (setq ange-ftp-gwp-running nil)) | |
1711 | |
1712 (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
|
1713 (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
|
1714 (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
|
1715 (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
|
1716 ;; 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
|
1717 (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
|
1718 (cond ((string-match "login: *$" str) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1719 (send-string proc |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1720 (concat |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1721 (let ((ange-ftp-default-user t)) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1722 (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
|
1723 "\n"))) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1724 ((string-match "Password: *$" str) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1725 (send-string proc |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1726 (concat |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1727 (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
|
1728 (ange-ftp-get-user |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1729 ange-ftp-gateway-host)) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1730 "\n"))) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1731 ((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
|
1732 (delete-process proc) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1733 (setq ange-ftp-gwp-running nil)) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1734 ((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
|
1735 (setq ange-ftp-gwp-running nil |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1736 ange-ftp-gwp-status t)))) |
1106 | 1737 |
1738 (defun ange-ftp-gwp-start (host user name args) | |
1739 "Login to the gateway machine and fire up an ftp process." | |
1740 (let* ((gw-user (ange-ftp-get-user ange-ftp-gateway-host)) | |
7042 | 1741 ;; It would be nice to make process-connection-type nil, |
1742 ;; but that doesn't work: ftp never responds. | |
1743 ;; Can anyone find a fix for that? | |
1744 (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
|
1745 (start-process name name |
7042 | 1746 ange-ftp-gateway-program |
1747 ange-ftp-gateway-host))) | |
1106 | 1748 (ftp (mapconcat (function identity) args " "))) |
1749 (process-kill-without-query proc) | |
1750 (set-process-sentinel proc (function ange-ftp-gwp-sentinel)) | |
1751 (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
|
1752 (save-excursion |
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1753 (set-buffer (process-buffer proc)) |
17739
1b0a4e406ba2
(ange-ftp-start-process): Create the buffer
Richard M. Stallman <rms@gnu.org>
parents:
17651
diff
changeset
|
1754 (goto-char (point-max)) |
7664
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1755 (set-marker (process-mark proc) (point))) |
1106 | 1756 (setq ange-ftp-gwp-running t |
1757 ange-ftp-gwp-status nil) | |
1758 (ange-ftp-message "Connecting to gateway %s..." ange-ftp-gateway-host) | |
1759 (while ange-ftp-gwp-running ;perform login sequence | |
1760 (accept-process-output proc)) | |
1761 (if (not ange-ftp-gwp-status) | |
1762 (ange-ftp-error host user "unable to login to gateway")) | |
1763 (ange-ftp-message "Connecting to gateway %s...done" ange-ftp-gateway-host) | |
1764 (setq ange-ftp-gwp-running t | |
1765 ange-ftp-gwp-status nil) | |
1766 (process-send-string proc ange-ftp-gateway-setup-term-command) | |
1767 (while ange-ftp-gwp-running ;zap ^M's and double echoing. | |
1768 (accept-process-output proc)) | |
1769 (if (not ange-ftp-gwp-status) | |
1770 (ange-ftp-error host user "unable to set terminal modes on gateway")) | |
1771 (setq ange-ftp-gwp-running t | |
1772 ange-ftp-gwp-status nil) | |
1773 (process-send-string proc (concat "exec " ftp "\n")) ;spawn ftp process | |
1774 proc)) | |
1775 | |
1776 ;;;; ------------------------------------------------------------ | |
1777 ;;;; Support for sending commands to the ftp process. | |
1778 ;;;; ------------------------------------------------------------ | |
1779 | |
1780 (defun ange-ftp-raw-send-cmd (proc cmd &optional msg cont nowait) | |
1781 "Low-level routine to send the given ftp CMD to the ftp PROCESS. | |
1782 MSG is an optional message to output before and after the command. | |
18956 | 1783 If CONT is non-nil then it is either a function or a list of function and |
1106 | 1784 some arguments. The function will be called when the ftp command has completed. |
18956 | 1785 If CONT is nil then this routine will return \( RESULT . LINE \) where RESULT |
1106 | 1786 is whether the command was successful, and LINE is the line from the FTP |
1787 process that caused the command to complete. | |
1788 If NOWAIT is given then the routine will return immediately the command has | |
1789 been queued with no result. CONT will still be called, however." | |
1790 (if (memq (process-status proc) '(run open)) | |
1791 (save-excursion | |
1792 (set-buffer (process-buffer proc)) | |
14887
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1793 (ange-ftp-wait-not-busy proc) |
1106 | 1794 (setq ange-ftp-process-string "" |
1795 ange-ftp-process-result-line "" | |
1796 ange-ftp-process-busy t | |
1797 ange-ftp-process-result nil | |
1798 ange-ftp-process-multi-skip nil | |
1799 ange-ftp-process-msg msg | |
1800 ange-ftp-process-continue cont | |
1801 ange-ftp-hash-mark-count 0 | |
1802 ange-ftp-last-percent -1 | |
1803 cmd (concat cmd "\n")) | |
1804 (and msg ange-ftp-process-verbose (ange-ftp-message "%s..." msg)) | |
1805 (goto-char (point-max)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1806 (move-marker comint-last-input-start (point)) |
1106 | 1807 ;; 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
|
1808 (save-match-data |
1106 | 1809 (if (string-match "^user \"[^\"]*\"" cmd) |
1810 (insert (substring cmd 0 (match-end 0)) " Turtle Power!\n") | |
1811 (insert cmd))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1812 (move-marker comint-last-input-end (point)) |
1106 | 1813 (send-string proc cmd) |
1814 (set-marker (process-mark proc) (point)) | |
1815 (if nowait | |
1816 nil | |
14887
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1817 (ange-ftp-wait-not-busy proc) |
1106 | 1818 (if cont |
1819 nil ;cont has already been called | |
1820 (cons ange-ftp-process-result ange-ftp-process-result-line)))))) | |
1821 | |
14887
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1822 ;; Wait for the ange-ftp process PROC not to be busy. |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1823 (defun ange-ftp-wait-not-busy (proc) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1824 (save-excursion |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1825 (set-buffer (process-buffer proc)) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1826 (condition-case nil |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1827 ;; This is a kludge to let user quit in case ftp gets hung. |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1828 ;; It matters because this function can be called from the filter. |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1829 ;; It is bad to allow quitting in a filter, but getting hung |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1830 ;; is worse. By binding quit-flag to nil, we might avoid |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1831 ;; most of the probability of getting screwed because the user |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1832 ;; wants to quit some command. |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1833 (let ((quit-flag nil) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1834 (inhibit-quit nil)) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1835 (while ange-ftp-process-busy |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1836 (accept-process-output proc))) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1837 (quit |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1838 ;; If the user does quit out of this, |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1839 ;; kill the process. That stops any transfer in progress. |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1840 ;; The next operation will open a new ftp connection. |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1841 (delete-process proc) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1842 (signal 'quit nil))))) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1843 |
1106 | 1844 (defun ange-ftp-nslookup-host (host) |
1845 "Attempt to resolve the given HOSTNAME using nslookup if possible." | |
1846 (interactive "sHost: ") | |
1847 (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
|
1848 (let ((default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1849 (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
|
1850 default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1851 exec-directory)) |
7042 | 1852 ;; It would be nice to make process-connection-type nil, |
1853 ;; but that doesn't work: ftp never responds. | |
1854 ;; Can anyone find a fix for that? | |
1855 (proc (let ((process-connection-type t)) | |
1856 (start-process " *nslookup*" " *nslookup*" | |
1857 ange-ftp-nslookup-program host))) | |
1106 | 1858 (res host)) |
1859 (process-kill-without-query proc) | |
1860 (save-excursion | |
1861 (set-buffer (process-buffer proc)) | |
1862 (while (memq (process-status proc) '(run open)) | |
1863 (accept-process-output proc)) | |
1864 (goto-char (point-min)) | |
1865 (if (re-search-forward "Name:.*\nAddress: *\\(.*\\)$" nil t) | |
1866 (setq res (buffer-substring (match-beginning 1) | |
1867 (match-end 1)))) | |
1868 (kill-buffer (current-buffer))) | |
1869 res) | |
1870 host)) | |
1871 | |
1872 (defun ange-ftp-start-process (host user name) | |
1873 "Spawn a new ftp process ready to connect to machine HOST and give it NAME. | |
1874 If HOST is only ftp-able through a gateway machine then spawn a shell | |
1875 on the gateway machine to do the ftp instead." | |
1876 (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
|
1877 (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
|
1878 (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
|
1879 (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
|
1880 use-smart-ftp) |
1106 | 1881 ange-ftp-gateway-ftp-program-name |
1882 ange-ftp-ftp-program-name)) | |
1883 (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
|
1884 ;; 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
|
1885 ;; 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
|
1886 ;; 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
|
1887 ;; default-directory. |
26587880d2b4
(ange-ftp-start-process): Bind file-name-handler-alist to nil
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1888 (file-name-handler-alist) |
6192
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1889 (default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1890 (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
|
1891 default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1892 exec-directory)) |
1106 | 1893 proc) |
7042 | 1894 ;; It would be nice to make process-connection-type nil, |
1895 ;; but that doesn't work: ftp never responds. | |
1896 ;; 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
|
1897 (let ((process-connection-type t) |
17739
1b0a4e406ba2
(ange-ftp-start-process): Create the buffer
Richard M. Stallman <rms@gnu.org>
parents:
17651
diff
changeset
|
1898 (process-environment process-environment) |
1b0a4e406ba2
(ange-ftp-start-process): Create the buffer
Richard M. Stallman <rms@gnu.org>
parents:
17651
diff
changeset
|
1899 (buffer (get-buffer-create name))) |
1b0a4e406ba2
(ange-ftp-start-process): Create the buffer
Richard M. Stallman <rms@gnu.org>
parents:
17651
diff
changeset
|
1900 (save-excursion |
1b0a4e406ba2
(ange-ftp-start-process): Create the buffer
Richard M. Stallman <rms@gnu.org>
parents:
17651
diff
changeset
|
1901 (set-buffer buffer) |
1b0a4e406ba2
(ange-ftp-start-process): Create the buffer
Richard M. Stallman <rms@gnu.org>
parents:
17651
diff
changeset
|
1902 (internal-ange-ftp-mode)) |
13789
7ccb22bca972
(ange-ftp-load): Added missing form to `cdr' down
Karl Heuer <kwzh@gnu.org>
parents:
13594
diff
changeset
|
1903 ;; 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
|
1904 (setenv "TERM" "dumb") |
7042 | 1905 (if use-gateway |
1906 (if ange-ftp-gateway-program-interactive | |
1907 (setq proc (ange-ftp-gwp-start host user name args)) | |
1908 (setq proc (apply 'start-process name name | |
1909 (append (list ange-ftp-gateway-program | |
1910 ange-ftp-gateway-host) | |
1911 args)))) | |
1912 (setq proc (apply 'start-process name name args)))) | |
1106 | 1913 (save-excursion |
1914 (set-buffer (process-buffer proc)) | |
17739
1b0a4e406ba2
(ange-ftp-start-process): Create the buffer
Richard M. Stallman <rms@gnu.org>
parents:
17651
diff
changeset
|
1915 (goto-char (point-max)) |
1b0a4e406ba2
(ange-ftp-start-process): Create the buffer
Richard M. Stallman <rms@gnu.org>
parents:
17651
diff
changeset
|
1916 (set-marker (process-mark proc) (point))) |
1b0a4e406ba2
(ange-ftp-start-process): Create the buffer
Richard M. Stallman <rms@gnu.org>
parents:
17651
diff
changeset
|
1917 (process-kill-without-query proc) |
1106 | 1918 (set-process-sentinel proc (function ange-ftp-process-sentinel)) |
1919 (set-process-filter proc (function ange-ftp-process-filter)) | |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1920 ;; On Windows, the standard ftp client buffers its output (because |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1921 ;; stdout is a pipe handle) so the startup message may never appear: |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1922 ;; `accept-process-output' at this point would hang indefinitely. |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1923 ;; However, sending an innocuous command ("help foo") forces some |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1924 ;; output that will be ignored, which is just as good. Once we |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1925 ;; start sending normal commands, the output no longer appears to be |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1926 ;; buffered, and everything works correctly. My guess is that the |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1927 ;; output of interest is being sent to stderr which is not buffered. |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1928 (when (eq system-type 'windows-nt) |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1929 ;; force ftp output to be treated as DOS text, otherwise the |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1930 ;; output of "help foo" confuses the EOL detection logic. |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1931 (set-process-coding-system proc 'raw-text-dos) |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1932 (process-send-string proc "help foo\n")) |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1933 (accept-process-output proc) ;wait for ftp startup message |
1106 | 1934 proc)) |
1935 | |
17651
9670cdb28032
(internal-ange-ftp-mode): Add a mode-class property.
Richard M. Stallman <rms@gnu.org>
parents:
17584
diff
changeset
|
1936 (put 'internal-ange-ftp-mode 'mode-class 'special) |
9670cdb28032
(internal-ange-ftp-mode): Add a mode-class property.
Richard M. Stallman <rms@gnu.org>
parents:
17584
diff
changeset
|
1937 |
3502
c2b4a5b9c8d5
(internal-ange-ftp-mode): Renamed from ange-ftp-mode. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
3441
diff
changeset
|
1938 (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
|
1939 "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
|
1940 |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1941 \\{comint-mode-map}" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1942 (interactive) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1943 (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
|
1944 (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
|
1945 (setq mode-name "Internal Ange-ftp") |
1106 | 1946 (let ((proc (get-buffer-process (current-buffer)))) |
1947 (make-local-variable 'ange-ftp-process-string) | |
1948 (setq ange-ftp-process-string "") | |
1949 (make-local-variable 'ange-ftp-process-busy) | |
1950 (make-local-variable 'ange-ftp-process-result) | |
1951 (make-local-variable 'ange-ftp-process-msg) | |
1952 (make-local-variable 'ange-ftp-process-multi-skip) | |
1953 (make-local-variable 'ange-ftp-process-result-line) | |
1954 (make-local-variable 'ange-ftp-process-continue) | |
1955 (make-local-variable 'ange-ftp-hash-mark-count) | |
1956 (make-local-variable 'ange-ftp-binary-hash-mark-size) | |
1957 (make-local-variable 'ange-ftp-ascii-hash-mark-size) | |
1958 (make-local-variable 'ange-ftp-hash-mark-unit) | |
1959 (make-local-variable 'ange-ftp-xfer-size) | |
1960 (make-local-variable 'ange-ftp-last-percent) | |
1961 (setq ange-ftp-hash-mark-count 0) | |
1962 (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
|
1963 (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
|
1964 |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1965 (setq comint-prompt-regexp "^ftp> ") |
13278
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
1966 (make-local-variable 'comint-password-prompt-regexp) |
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
1967 ;; This is a regexp that can't match anything. |
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
1968 ;; ange-ftp has its own ways of handling passwords. |
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
1969 (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
|
1970 (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
|
1971 (setq paragraph-start comint-prompt-regexp))) |
1106 | 1972 |
1973 (defun ange-ftp-smart-login (host user pass account proc) | |
1974 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
1975 PROC is the FTP-client's process. This routine uses the smart-gateway | |
1976 host specified in ``ange-ftp-gateway-host''." | |
1977 (let ((result (ange-ftp-raw-send-cmd | |
1978 proc | |
1979 (format "open %s %s" | |
1980 (ange-ftp-nslookup-host ange-ftp-gateway-host) | |
1981 ange-ftp-smart-gateway-port) | |
1982 (format "Opening FTP connection to %s via %s" | |
1983 host | |
1984 ange-ftp-gateway-host)))) | |
1985 (or (car result) | |
1986 (ange-ftp-error host user | |
1987 (concat "OPEN request failed: " | |
1988 (cdr result)))) | |
1989 (setq result (ange-ftp-raw-send-cmd | |
1990 proc (format "user \"%s\"@%s %s %s" | |
1991 user | |
1992 (ange-ftp-nslookup-host host) | |
1993 pass | |
1994 account) | |
1995 (format "Logging in as user %s@%s" | |
1996 user host))) | |
1997 (or (car result) | |
1998 (progn | |
1999 (ange-ftp-set-passwd host user nil) ; reset password | |
2000 (ange-ftp-set-account host user nil) ; reset account | |
2001 (ange-ftp-error host user | |
2002 (concat "USER request failed: " | |
2003 (cdr result))))))) | |
2004 | |
2005 (defun ange-ftp-normal-login (host user pass account proc) | |
2006 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
25923 | 2007 PROC is the process to the FTP-client. HOST may have an optional |
2008 suffix of the form #PORT to specify a non-default port" | |
2009 (save-match-data | |
2010 (string-match "^\\([^#]+\\)\\(#\\([0-9]+\\)\\)?\\'" host) | |
2011 (let* ((nshost (ange-ftp-nslookup-host (match-string 1 host))) | |
2012 (port (match-string 3 host)) | |
2013 (result (ange-ftp-raw-send-cmd | |
2014 proc | |
2015 (if port | |
2016 (format "open %s %s" nshost port) | |
2017 (format "open %s" nshost)) | |
2018 (format "Opening FTP connection to %s" host)))) | |
2019 (or (car result) | |
1106 | 2020 (ange-ftp-error host user |
25923 | 2021 (concat "OPEN request failed: " |
2022 (cdr result)))) | |
2023 (setq result (ange-ftp-raw-send-cmd | |
2024 proc | |
2025 (if (and (ange-ftp-use-smart-gateway-p host) | |
2026 ange-ftp-gateway-host) | |
2027 (format "user \"%s\"@%s %s %s" user nshost pass account) | |
2028 (format "user \"%s\" %s %s" user pass account)) | |
2029 (format "Logging in as user %s@%s" user host))) | |
2030 (or (car result) | |
2031 (progn | |
2032 (ange-ftp-set-passwd host user nil) ;reset password. | |
2033 (ange-ftp-set-account host user nil) ;reset account. | |
2034 (ange-ftp-error host user | |
2035 (concat "USER request failed: " | |
2036 (cdr result)))))))) | |
1106 | 2037 |
5480
f193f880c524
(ange-ftp-hash-mark-msgs): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5350
diff
changeset
|
2038 ;; ange@hplb.hpl.hp.com says this should not be changed. |
1106 | 2039 (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
|
2040 "[hH]ash mark [^0-9]*\\([0-9]+\\)" |
1106 | 2041 "*Regexp matching the FTP client's output upon doing a HASH command.") |
2042 | |
2043 (defun ange-ftp-guess-hash-mark-size (proc) | |
2044 (if ange-ftp-send-hash | |
2045 (save-excursion | |
2046 (set-buffer (process-buffer proc)) | |
2047 (let* ((status (ange-ftp-raw-send-cmd proc "hash")) | |
2048 (result (car status)) | |
2049 (line (cdr status))) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2050 (save-match-data |
1106 | 2051 (if (string-match ange-ftp-hash-mark-msgs line) |
2052 (let ((size (string-to-int | |
2053 (substring line | |
2054 (match-beginning 1) | |
2055 (match-end 1))))) | |
2056 (setq ange-ftp-ascii-hash-mark-size size | |
2057 ange-ftp-hash-mark-unit (ash size -4)) | |
2058 | |
2059 ;; if a default value for this is set, use that value. | |
2060 (or ange-ftp-binary-hash-mark-size | |
2061 (setq ange-ftp-binary-hash-mark-size size))))))))) | |
2062 | |
2063 (defun ange-ftp-get-process (host user) | |
7042 | 2064 "Return an FTP subprocess connected to HOST and logged in as USER. |
2065 Create a new process if needed." | |
1106 | 2066 (let* ((name (ange-ftp-ftp-process-buffer host user)) |
2067 (proc (get-process name))) | |
2068 (if (and proc (memq (process-status proc) '(run open))) | |
2069 proc | |
16933
c6d12d67e2b5
(ange-ftp-get-process): Call delete-process.
Richard M. Stallman <rms@gnu.org>
parents:
16916
diff
changeset
|
2070 ;; Must delete dead process so that new process can reuse the name. |
c6d12d67e2b5
(ange-ftp-get-process): Call delete-process.
Richard M. Stallman <rms@gnu.org>
parents:
16916
diff
changeset
|
2071 (if proc (delete-process proc)) |
1106 | 2072 (let ((pass (ange-ftp-quote-string |
2073 (ange-ftp-get-passwd host user))) | |
2074 (account (ange-ftp-quote-string | |
2075 (ange-ftp-get-account host user)))) | |
2076 ;; grab a suitable process. | |
2077 (setq proc (ange-ftp-start-process host user name)) | |
2078 | |
2079 ;; 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
|
2080 (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
|
2081 ange-ftp-gateway-host) |
1106 | 2082 (ange-ftp-smart-login host user pass account proc) |
2083 (ange-ftp-normal-login host user pass account proc)) | |
2084 | |
2085 ;; Tell client to send back hash-marks as progress. It isn't usually | |
2086 ;; fatal if this command fails. | |
2087 (ange-ftp-guess-hash-mark-size proc) | |
2088 | |
2089 ;; Guess at the host type. | |
2090 (ange-ftp-guess-host-type host user) | |
2091 | |
2092 ;; Run any user-specified hooks. Note that proc, host and user are | |
2093 ;; dynamically bound at this point. | |
2094 (run-hooks 'ange-ftp-process-startup-hook)) | |
2095 proc))) | |
2096 | |
2097 ;; Variables for caching host and host-type | |
2098 (defvar ange-ftp-host-cache nil) | |
2099 (defvar ange-ftp-host-type-cache nil) | |
2100 | |
2101 ;; If ange-ftp-host-type is called with the optional user | |
2102 ;; argument, it will attempt to guess the host type by connecting | |
2103 ;; as user, if necessary. For efficiency, I have tried to give this | |
2104 ;; optional second argument only when necessary. Have I missed any calls | |
2105 ;; to ange-ftp-host-type where it should have been supplied? | |
2106 | |
2107 (defun ange-ftp-host-type (host &optional user) | |
2108 "Return a symbol which represents the type of the HOST given. | |
2109 If the optional argument USER is given, attempts to guess the | |
2110 host-type by logging in as USER." | |
23231
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2111 (cond ((null host) 'unix) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2112 ;; Return `unix' if HOST is nil, since that's the most vanilla |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2113 ;; possible return value. |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2114 ((eq host ange-ftp-host-cache) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2115 ange-ftp-host-type-cache) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2116 ;; Trigger an ftp connection, in case we need to guess at the host type. |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2117 ((and user (ange-ftp-get-process host user) (eq host ange-ftp-host-cache)) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2118 ange-ftp-host-type-cache) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2119 (t |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2120 (setq ange-ftp-host-cache host |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2121 ange-ftp-host-type-cache |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2122 (cond ((ange-ftp-dumb-unix-host host) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2123 'dumb-unix) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2124 ;; ((and (fboundp 'ange-ftp-vos-host) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2125 ;; (ange-ftp-vos-host host)) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2126 ;; 'vos) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2127 ((and (fboundp 'ange-ftp-vms-host) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2128 (ange-ftp-vms-host host)) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2129 'vms) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2130 ((and (fboundp 'ange-ftp-mts-host) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2131 (ange-ftp-mts-host host)) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2132 'mts) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2133 ((and (fboundp 'ange-ftp-cms-host) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2134 (ange-ftp-cms-host host)) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2135 'cms) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2136 (t |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2137 'unix)))))) |
1106 | 2138 |
2139 ;; It would be nice to abstract the functions ange-ftp-TYPE-host and | |
2140 ;; ange-ftp-add-TYPE-host. The trick is to abstract these functions | |
2141 ;; without sacrificing speed. Also, having separate variables | |
2142 ;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to | |
2143 ;; set an alist to indicate that a host is of a given type. Even with | |
2144 ;; automatic host type recognition, setting a regexp is still a good idea | |
2145 ;; (for efficiency) if you log into a particular non-UNIX host frequently. | |
2146 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2147 (defvar ange-ftp-fix-name-func-alist nil |
7042 | 2148 "Alist saying how to convert file name to the host's syntax. |
2149 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
|
2150 which can change a UNIX file name into a name more suitable for a host of type |
1106 | 2151 TYPE.") |
2152 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2153 (defvar ange-ftp-fix-dir-name-func-alist nil |
7042 | 2154 "Alist saying how to convert directory name to the host's syntax. |
2155 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
|
2156 which can change UNIX directory name into a directory name more suitable |
1106 | 2157 for a host of type TYPE.") |
2158 | |
2159 ;; *** Perhaps the sense of this variable should be inverted, since there | |
2160 ;; *** is only 1 host type that can take ls-style listing options. | |
2161 (defvar ange-ftp-dumb-host-types '(dumb-unix) | |
2162 "List of host types that can't take UNIX ls-style listing options.") | |
2163 | |
2164 (defun ange-ftp-send-cmd (host user cmd &optional msg cont nowait) | |
2165 "Find an ftp process connected to HOST logged in as USER and send it CMD. | |
2166 MSG is an optional status message to be output before and after issuing the | |
2167 command. | |
2168 See the documentation for ange-ftp-raw-send-cmd for a description of CONT | |
2169 and NOWAIT." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2170 ;; Handle conversion to remote file name syntax and remote ls option |
1106 | 2171 ;; capability. |
2172 (let ((cmd0 (car cmd)) | |
2173 (cmd1 (nth 1 cmd)) | |
4498
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2174 (ange-ftp-this-user user) |
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2175 (ange-ftp-this-host host) |
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2176 (ange-ftp-this-msg msg) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2177 cmd2 cmd3 host-type fix-name-func) |
1106 | 2178 |
2179 (cond | |
2180 | |
2181 ;; pwd case (We don't care what host-type.) | |
2182 ((null cmd1)) | |
2183 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2184 ;; cmd == 'dir "remote-name" "local-name" "ls-switches" |
1106 | 2185 ((progn |
2186 (setq cmd2 (nth 2 cmd) | |
2187 host-type (ange-ftp-host-type host user)) | |
2188 ;; This will trigger an FTP login, if one doesn't exist | |
2189 (eq cmd0 'dir)) | |
2190 (setq cmd1 (funcall | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2191 (or (cdr (assq host-type ange-ftp-fix-dir-name-func-alist)) |
1106 | 2192 'identity) |
2193 cmd1) | |
2194 cmd3 (nth 3 cmd)) | |
2195 ;; Need to deal with the HP-UX ftp bug. This should also allow | |
2196 ;; us to resolve symlinks to directories on SysV machines. (Sebastian will | |
2197 ;; be happy.) | |
2198 (and (eq host-type 'unix) | |
2199 (string-match "/$" cmd1) | |
2200 (not (string-match "R" cmd3)) | |
2201 (setq cmd1 (concat cmd1 "."))) | |
22642
f392093d562d
(ange-ftp-send-cmd): When listing a directory that
Richard M. Stallman <rms@gnu.org>
parents:
22566
diff
changeset
|
2202 |
f392093d562d
(ange-ftp-send-cmd): When listing a directory that
Richard M. Stallman <rms@gnu.org>
parents:
22566
diff
changeset
|
2203 ;; If the dir name contains a space, some ftp servers will |
f392093d562d
(ange-ftp-send-cmd): When listing a directory that
Richard M. Stallman <rms@gnu.org>
parents:
22566
diff
changeset
|
2204 ;; refuse to list it. We instead change directory to the |
f392093d562d
(ange-ftp-send-cmd): When listing a directory that
Richard M. Stallman <rms@gnu.org>
parents:
22566
diff
changeset
|
2205 ;; directory in question and ls ".". |
f392093d562d
(ange-ftp-send-cmd): When listing a directory that
Richard M. Stallman <rms@gnu.org>
parents:
22566
diff
changeset
|
2206 (when (string-match " " cmd1) |
f392093d562d
(ange-ftp-send-cmd): When listing a directory that
Richard M. Stallman <rms@gnu.org>
parents:
22566
diff
changeset
|
2207 (ange-ftp-cd host user (nth 1 cmd)) |
f392093d562d
(ange-ftp-send-cmd): When listing a directory that
Richard M. Stallman <rms@gnu.org>
parents:
22566
diff
changeset
|
2208 (setq cmd1 ".")) |
f392093d562d
(ange-ftp-send-cmd): When listing a directory that
Richard M. Stallman <rms@gnu.org>
parents:
22566
diff
changeset
|
2209 |
1106 | 2210 ;; If the remote ls can take switches, put them in |
2211 (or (memq host-type ange-ftp-dumb-host-types) | |
2212 (setq cmd0 'ls | |
2213 cmd1 (format "\"%s %s\"" cmd3 cmd1)))) | |
2214 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2215 ;; 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
|
2216 ((progn |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2217 (setq fix-name-func (or (cdr (assq host-type |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2218 ange-ftp-fix-name-func-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2219 'identity)) |
1106 | 2220 (memq cmd0 '(get delete mkdir rmdir cd))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2221 (setq cmd1 (funcall fix-name-func cmd1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2222 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2223 ;; Second argument is the remote name |
1106 | 2224 ((memq cmd0 '(append put chmod)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2225 (setq cmd2 (funcall fix-name-func cmd2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2226 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2227 ;; Both arguments are remote names |
1106 | 2228 ((eq cmd0 'rename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2229 (setq cmd1 (funcall fix-name-func cmd1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2230 cmd2 (funcall fix-name-func cmd2)))) |
1106 | 2231 |
2232 ;; Turn the command into one long string | |
2233 (setq cmd0 (symbol-name cmd0)) | |
2234 (setq cmd (concat cmd0 | |
2235 (and cmd1 (concat " " cmd1)) | |
2236 (and cmd2 (concat " " cmd2)))) | |
2237 | |
2238 ;; Actually send the resulting command. | |
2239 (let (afsc-result | |
2240 afsc-line) | |
2241 (ange-ftp-raw-send-cmd | |
2242 (ange-ftp-get-process host user) | |
2243 cmd | |
2244 msg | |
2245 (list | |
2246 (function (lambda (result line host user | |
2247 cmd msg cont nowait) | |
2248 (or cont | |
2249 (setq afsc-result result | |
2250 afsc-line line)) | |
2251 (if result | |
2252 (ange-ftp-call-cont cont result line) | |
2253 (ange-ftp-raw-send-cmd | |
2254 (ange-ftp-get-process host user) | |
2255 cmd | |
2256 msg | |
2257 (list | |
2258 (function (lambda (result line cont) | |
2259 (or cont | |
2260 (setq afsc-result result | |
2261 afsc-line line)) | |
2262 (ange-ftp-call-cont cont result line))) | |
2263 cont) | |
2264 nowait)))) | |
2265 host user cmd msg cont nowait) | |
2266 nowait) | |
2267 | |
2268 (if nowait | |
2269 nil | |
2270 (if cont | |
2271 nil | |
2272 (cons afsc-result afsc-line)))))) | |
2273 | |
2274 ;; It might be nice to message users about the host type identified, | |
2275 ;; but there is so much other messaging going on, it would not be | |
2276 ;; seen. No point in slowing things down just so users can read | |
2277 ;; a host type message. | |
2278 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2279 (defconst ange-ftp-cms-name-template |
1106 | 2280 (concat |
2281 "^[-A-Z0-9$*][-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?" | |
2282 "[-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
|
2283 (defconst ange-ftp-vms-name-template |
1106 | 2284 "^[-A-Z0-9_$]+:\\[[-A-Z0-9_$]+\\(\\.[-A-Z0-9_$]+\\)*\\]$") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2285 (defconst ange-ftp-mts-name-template |
1106 | 2286 "^[A-Z0-9._][A-Z0-9._][A-Z0-9._][A-Z0-9._]:$") |
2287 | |
2288 (defun ange-ftp-guess-host-type (host user) | |
7042 | 2289 "Guess at the the host type of HOST. |
2290 Works by doing a pwd and examining the directory syntax." | |
1106 | 2291 (let ((host-type (ange-ftp-host-type host)) |
2292 (key (concat host "/" user "/~"))) | |
2293 (if (eq host-type 'unix) | |
2294 ;; 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
|
2295 (save-match-data |
1106 | 2296 (let* ((result (ange-ftp-get-pwd host user)) |
2297 (dir (car result)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2298 fix-name-func) |
1106 | 2299 (cond ((null dir) |
2300 (message "Warning! Unable to get home directory") | |
2301 (sit-for 1) | |
2302 (if (string-match | |
2303 "^450 No current working directory defined$" | |
2304 (cdr result)) | |
2305 | |
2306 ;; We'll assume that if pwd bombs with this | |
2307 ;; error message, then it's CMS. | |
2308 (progn | |
2309 (ange-ftp-add-cms-host host) | |
2310 (setq ange-ftp-host-cache host | |
2311 ange-ftp-host-type-cache 'cms)))) | |
2312 | |
2313 ;; try for VMS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2314 ((string-match ange-ftp-vms-name-template dir) |
1106 | 2315 (ange-ftp-add-vms-host host) |
2316 ;; The add-host functions clear the host type cache. | |
2317 ;; Therefore, need to set the cache afterwards. | |
2318 (setq ange-ftp-host-cache host | |
2319 ange-ftp-host-type-cache 'vms)) | |
2320 | |
2321 ;; try for MTS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2322 ((string-match ange-ftp-mts-name-template dir) |
1106 | 2323 (ange-ftp-add-mts-host host) |
2324 (setq ange-ftp-host-cache host | |
2325 ange-ftp-host-type-cache 'mts)) | |
2326 | |
2327 ;; try for CMS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2328 ((string-match ange-ftp-cms-name-template dir) |
1106 | 2329 (ange-ftp-add-cms-host host) |
2330 (setq ange-ftp-host-cache host | |
2331 ange-ftp-host-type-cache 'cms)) | |
2332 | |
2333 ;; assume UN*X | |
2334 (t | |
2335 (setq ange-ftp-host-cache host | |
2336 ange-ftp-host-type-cache 'unix))) | |
2337 | |
2338 ;; Now that we have done a pwd, might as well put it in | |
2339 ;; the expand-dir hashtable. | |
2340 (let ((ange-ftp-this-user user) | |
2341 (ange-ftp-this-host host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2342 (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
|
2343 ange-ftp-fix-name-func-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2344 (if fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2345 (setq dir (funcall fix-name-func dir 'reverse)))) |
1106 | 2346 (ange-ftp-put-hash-entry key dir |
2347 ange-ftp-expand-dir-hashtable)))) | |
2348 | |
2349 ;; In the special case of CMS make sure that know the | |
2350 ;; expansion of the home minidisk now, because we will | |
2351 ;; be doing a lot of cd's. | |
2352 (if (and (eq host-type 'cms) | |
2353 (not (ange-ftp-hash-entry-exists-p | |
2354 key ange-ftp-expand-dir-hashtable))) | |
2355 (let ((dir (car (ange-ftp-get-pwd host user)))) | |
2356 (if dir | |
2357 (ange-ftp-put-hash-entry key (concat "/" dir) | |
2358 ange-ftp-expand-dir-hashtable) | |
2359 (message "Warning! Unable to get home directory") | |
2360 (sit-for 1)))))) | |
2361 | |
2362 | |
2363 ;;;; ------------------------------------------------------------ | |
2364 ;;;; Remote file and directory listing support. | |
2365 ;;;; ------------------------------------------------------------ | |
2366 | |
7042 | 2367 ;; Returns whether HOST's FTP server doesn't like \'ls\' or \'dir\' commands |
2368 ;; to take switch arguments. | |
1106 | 2369 (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
|
2370 (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
|
2371 (save-match-data |
1106 | 2372 (string-match ange-ftp-dumb-unix-host-regexp host)))) |
2373 | |
2374 (defun ange-ftp-add-dumb-unix-host (host) | |
2375 "Interactively adds a given HOST to ange-ftp-dumb-unix-host-regexp." | |
2376 (interactive | |
2377 (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
|
2378 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2379 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 2380 (if (not (ange-ftp-dumb-unix-host host)) |
2381 (setq ange-ftp-dumb-unix-host-regexp | |
2382 (concat "^" (regexp-quote host) "$" | |
2383 (and ange-ftp-dumb-unix-host-regexp "\\|") | |
2384 ange-ftp-dumb-unix-host-regexp) | |
2385 ange-ftp-host-cache nil))) | |
2386 | |
2387 (defvar ange-ftp-parse-list-func-alist nil | |
7042 | 2388 "Alist saying how to parse directory listings for certain OS types. |
2389 Association list of \( TYPE \. FUNC \) pairs. The FUNC is a routine | |
1106 | 2390 which can parse the output from a DIR listing for a host of type TYPE.") |
2391 | |
2392 ;; With no-error nil, this function returns: | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2393 ;; an error if file is not an ange-ftp-name |
1106 | 2394 ;; (This should never happen.) |
2395 ;; an error if either the listing is unreadable or there is an ftp error. | |
2396 ;; the listing (a string), if everything works. | |
2397 ;; | |
2398 ;; With no-error t, it returns: | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2399 ;; an error if not an ange-ftp-name |
14040 | 2400 ;; error if listing is unreadable (most likely caused by a slow connection) |
1106 | 2401 ;; nil if ftp error (this is because although asking to list a nonexistent |
2402 ;; directory on a remote unix machine usually (except | |
2403 ;; maybe for dumb hosts) returns an ls error, but no | |
2404 ;; ftp error, if the same is done on a VMS machine, | |
2405 ;; an ftp error is returned. Need to trap the error | |
2406 ;; so we can go on and try to list the parent.) | |
2407 ;; the listing, if everything works. | |
2408 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2409 ;; 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
|
2410 ;; 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
|
2411 ;; of FILE within the directory specified by `default-directory'. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2412 |
15958
58742d1b996a
(ange-ftp-ls): Run ange-ftp-before-parse-ls-hook.
Richard M. Stallman <rms@gnu.org>
parents:
15872
diff
changeset
|
2413 (defvar ange-ftp-before-parse-ls-hook nil |
58742d1b996a
(ange-ftp-ls): Run ange-ftp-before-parse-ls-hook.
Richard M. Stallman <rms@gnu.org>
parents:
15872
diff
changeset
|
2414 "Normal hook run before parsing the text of an ftp directory listing.") |
58742d1b996a
(ange-ftp-ls): Run ange-ftp-before-parse-ls-hook.
Richard M. Stallman <rms@gnu.org>
parents:
15872
diff
changeset
|
2415 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2416 (defun ange-ftp-ls (file lsargs parse &optional no-error wildcard) |
1106 | 2417 "Return the output of an `DIR' or `ls' command done over ftp. |
2418 FILE is the full name of the remote file, LSARGS is any args to pass to the | |
2419 `ls' command, and PARSE specifies that the output should be parsed and stored | |
2420 away in the internal cache." | |
2421 ;; If parse is t, we assume that file is a directory. i.e. we only parse | |
2422 ;; full directory listings. | |
2423 (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
|
2424 (parsed (ange-ftp-ftp-name ange-ftp-this-file))) |
1106 | 2425 (if parsed |
2426 (let* ((host (nth 0 parsed)) | |
2427 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2428 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2429 (key (directory-file-name ange-ftp-this-file)) |
2430 (host-type (ange-ftp-host-type host user)) | |
2431 (dumb (memq host-type ange-ftp-dumb-host-types)) | |
2432 result | |
2433 temp | |
2434 lscmd parse-func) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2435 (if (string-equal name "") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2436 (setq name |
1106 | 2437 (ange-ftp-real-file-name-as-directory |
2438 (ange-ftp-expand-dir host user "~")))) | |
2439 (if (and ange-ftp-ls-cache-file | |
2440 (string-equal key ange-ftp-ls-cache-file) | |
2441 ;; Don't care about lsargs for dumb hosts. | |
2442 (or dumb (string-equal lsargs ange-ftp-ls-cache-lsargs))) | |
2443 ange-ftp-ls-cache-res | |
2444 (setq temp (ange-ftp-make-tmp-name host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2445 (if wildcard |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2446 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2447 (ange-ftp-cd host user (file-name-directory name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2448 (setq lscmd (list 'dir file temp lsargs))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2449 (setq lscmd (list 'dir name temp lsargs))) |
1106 | 2450 (unwind-protect |
2451 (if (car (setq result (ange-ftp-send-cmd | |
2452 host | |
2453 user | |
2454 lscmd | |
2455 (format "Listing %s" | |
2456 (ange-ftp-abbreviate-filename | |
2457 ange-ftp-this-file))))) | |
2458 (save-excursion | |
2459 (set-buffer (get-buffer-create | |
2460 ange-ftp-data-buffer-name)) | |
2461 (erase-buffer) | |
2462 (if (ange-ftp-real-file-readable-p temp) | |
2463 (ange-ftp-real-insert-file-contents temp) | |
2464 (sleep-for ange-ftp-retry-time) | |
2465 ;wait for file to possibly appear | |
2466 (if (ange-ftp-real-file-readable-p temp) | |
2467 ;; Try again. | |
2468 (ange-ftp-real-insert-file-contents temp) | |
2469 (ange-ftp-error host user | |
2470 (format | |
2471 "list data file %s not readable" | |
2472 temp)))) | |
15958
58742d1b996a
(ange-ftp-ls): Run ange-ftp-before-parse-ls-hook.
Richard M. Stallman <rms@gnu.org>
parents:
15872
diff
changeset
|
2473 (run-hooks 'ange-ftp-before-parse-ls-hook) |
1106 | 2474 (if parse |
2475 (ange-ftp-set-files | |
2476 ange-ftp-this-file | |
2477 (if (setq | |
2478 parse-func | |
2479 (cdr (assq host-type | |
2480 ange-ftp-parse-list-func-alist))) | |
2481 (funcall parse-func) | |
2482 (ange-ftp-parse-dired-listing lsargs)))) | |
2483 (setq ange-ftp-ls-cache-file key | |
2484 ange-ftp-ls-cache-lsargs lsargs | |
2485 ; For dumb hosts-types this is | |
2486 ; meaningless but harmless. | |
2487 ange-ftp-ls-cache-res (buffer-string)) | |
2488 ;; (kill-buffer (current-buffer)) | |
2489 ange-ftp-ls-cache-res) | |
2490 (if no-error | |
2491 nil | |
2492 (ange-ftp-error host user | |
2493 (concat "DIR failed: " (cdr result))))) | |
2494 (ange-ftp-del-tmp-name temp)))) | |
2495 (error "Should never happen. Please report. Bug ref. no.: 1")))) | |
2496 | |
2497 ;;;; ------------------------------------------------------------ | |
2498 ;;;; Directory information caching support. | |
2499 ;;;; ------------------------------------------------------------ | |
2500 | |
2501 (defconst ange-ftp-date-regexp | |
20692
8af33d2de7b2
(ange-ftp-date-regexp): Make l pattern match any non-ASCII char.
Richard M. Stallman <rms@gnu.org>
parents:
20656
diff
changeset
|
2502 (let* ((l "\\([A-Za-z]\\|[^\0-\177]\\)") |
20453
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2503 ;; In some locales, month abbreviations are as short as 2 letters, |
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2504 ;; and they can be padded on the right with spaces. |
25807
b245d837503b
(ange-ftp-date-regexp): Make it work for
Gerd Moellmann <gerd@gnu.org>
parents:
24912
diff
changeset
|
2505 ;; weiand: changed: month ends with . or , or ., |
b245d837503b
(ange-ftp-date-regexp): Make it work for
Gerd Moellmann <gerd@gnu.org>
parents:
24912
diff
changeset
|
2506 ;;old (month (concat l l "+ *")) |
b245d837503b
(ange-ftp-date-regexp): Make it work for
Gerd Moellmann <gerd@gnu.org>
parents:
24912
diff
changeset
|
2507 (month (concat l l "+[.]?,? *")) |
20692
8af33d2de7b2
(ange-ftp-date-regexp): Make l pattern match any non-ASCII char.
Richard M. Stallman <rms@gnu.org>
parents:
20656
diff
changeset
|
2508 ;; Recognize any non-ASCII character. |
20453
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2509 ;; The purpose is to match a Kanji character. |
20692
8af33d2de7b2
(ange-ftp-date-regexp): Make l pattern match any non-ASCII char.
Richard M. Stallman <rms@gnu.org>
parents:
20656
diff
changeset
|
2510 (k "[^\0-\177]") |
20222
9823d1d05083
(ange-ftp-date-regexp): Handle Japanese-format dates.
Paul Eggert <eggert@twinsun.com>
parents:
20015
diff
changeset
|
2511 (s " ") |
9823d1d05083
(ange-ftp-date-regexp): Handle Japanese-format dates.
Paul Eggert <eggert@twinsun.com>
parents:
20015
diff
changeset
|
2512 (mm "[ 0-1][0-9]") |
25807
b245d837503b
(ange-ftp-date-regexp): Make it work for
Gerd Moellmann <gerd@gnu.org>
parents:
24912
diff
changeset
|
2513 ;; weiand: changed: day ends with . |
b245d837503b
(ange-ftp-date-regexp): Make it work for
Gerd Moellmann <gerd@gnu.org>
parents:
24912
diff
changeset
|
2514 ;;old (dd "[ 0-3][0-9]") |
b245d837503b
(ange-ftp-date-regexp): Make it work for
Gerd Moellmann <gerd@gnu.org>
parents:
24912
diff
changeset
|
2515 (dd "[ 0-3][0-9][.]?") |
20453
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2516 (western (concat "\\(" month s dd "\\|" dd s month "\\)")) |
20222
9823d1d05083
(ange-ftp-date-regexp): Handle Japanese-format dates.
Paul Eggert <eggert@twinsun.com>
parents:
20015
diff
changeset
|
2517 (japanese (concat mm k s dd k))) |
20453
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2518 ;; Require the previous column to end in a digit. |
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2519 ;; This avoids recognizing `1 may 1997' as a date in the line: |
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2520 ;; -r--r--r-- 1 may 1997 1168 Oct 19 16:49 README |
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2521 (concat "[0-9]" s "\\(" western "\\|" japanese "\\)" s)) |
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2522 "Regular expression to match up to the column before the file name in a |
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2523 directory listing. This regular expression is designed to recognize dates |
16709
3b6153697884
(ange-ftp-date-regexp): Recognize various languages.
Richard M. Stallman <rms@gnu.org>
parents:
16611
diff
changeset
|
2524 regardless of the language.") |
1106 | 2525 |
2526 (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
|
2527 "Alist saying how to add file entries on certain OS types. |
7042 | 2528 Association list of pairs \( TYPE \. FUNC \), where FUNC |
1106 | 2529 is a function to be used to add a file entry for the OS TYPE. The |
2530 main reason for this alist is to deal with file versions in VMS.") | |
2531 | |
2532 (defvar ange-ftp-delete-file-entry-alist nil | |
7042 | 2533 "Alist saying how to delete files on certain OS types. |
2534 Association list of pairs \( TYPE \. FUNC \), where FUNC | |
1106 | 2535 is a function to be used to delete a file entry for the OS TYPE. |
7042 | 2536 The main reason for this alist is to deal with file versions in VMS.") |
1106 | 2537 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2538 (defun ange-ftp-add-file-entry (name &optional dir-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2539 "Add a file entry for file NAME, if its directory info exists." |
1106 | 2540 (funcall (or (cdr (assq (ange-ftp-host-type |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2541 (car (ange-ftp-ftp-name name))) |
1106 | 2542 ange-ftp-add-file-entry-alist)) |
2543 'ange-ftp-internal-add-file-entry) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2544 name dir-p) |
1106 | 2545 (setq ange-ftp-ls-cache-file nil)) |
2546 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2547 (defun ange-ftp-delete-file-entry (name &optional dir-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2548 "Delete the file entry for file NAME, if its directory info exists." |
1106 | 2549 (funcall (or (cdr (assq (ange-ftp-host-type |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2550 (car (ange-ftp-ftp-name name))) |
1106 | 2551 ange-ftp-delete-file-entry-alist)) |
2552 'ange-ftp-internal-delete-file-entry) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2553 name dir-p) |
1106 | 2554 (setq ange-ftp-ls-cache-file nil)) |
2555 | |
2556 (defmacro ange-ftp-parse-filename () | |
2557 ;;Extract the filename from the current line of a dired-like listing. | |
2558 (` (let ((eol (progn (end-of-line) (point)))) | |
2559 (beginning-of-line) | |
2560 (if (re-search-forward ange-ftp-date-regexp eol t) | |
2561 (progn | |
2562 (skip-chars-forward " ") | |
2563 (skip-chars-forward "^ " eol) | |
2564 (skip-chars-forward " " eol) | |
2565 ;; We bomb on filenames starting with a space. | |
2566 (buffer-substring (point) eol)))))) | |
2567 | |
2568 ;; This deals with the F switch. Should also do something about | |
2569 ;; unquoting names obtained with the SysV b switch and the GNU Q | |
2570 ;; switch. See Sebastian's dired-get-filename. | |
2571 | |
2572 (defmacro ange-ftp-ls-parser () | |
2573 ;; Note that switches is dynamically bound. | |
2574 ;; Meant to be called by ange-ftp-parse-dired-listing | |
2575 (` (let ((tbl (ange-ftp-make-hashtable)) | |
2576 (used-F (and (stringp switches) | |
2577 (string-match "F" switches))) | |
2578 file-type symlink directory file) | |
2579 (while (setq file (ange-ftp-parse-filename)) | |
2580 (beginning-of-line) | |
2581 (skip-chars-forward "\t 0-9") | |
2582 (setq file-type (following-char) | |
2583 directory (eq file-type ?d)) | |
2584 (if (eq file-type ?l) | |
2585 (if (string-match " -> " file) | |
2586 (setq symlink (substring file (match-end 0)) | |
2587 file (substring file 0 (match-beginning 0))) | |
2588 ;; Shouldn't happen | |
2589 (setq symlink "")) | |
2590 (setq symlink nil)) | |
2591 ;; Only do a costly regexp search if the F switch was used. | |
2592 (if (and used-F | |
2593 (not (string-equal file "")) | |
2594 (looking-at | |
2595 ".[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)")) | |
2596 (let ((socket (eq file-type ?s)) | |
2597 (executable | |
2598 (and (not symlink) ; x bits don't mean a thing for symlinks | |
2599 (string-match "[xst]" | |
2600 (concat | |
2601 (buffer-substring | |
2602 (match-beginning 1) | |
2603 (match-end 1)) | |
2604 (buffer-substring | |
2605 (match-beginning 2) | |
2606 (match-end 2)) | |
2607 (buffer-substring | |
2608 (match-beginning 3) | |
2609 (match-end 3))))))) | |
2610 ;; Some ls's with the F switch mark symlinks with an @ (ULTRIX) | |
2611 ;; and others don't. (sigh...) Beware, that some Unix's don't | |
2612 ;; seem to believe in the F-switch | |
2613 (if (or (and symlink (string-match "@$" file)) | |
2614 (and directory (string-match "/$" file)) | |
2615 (and executable (string-match "*$" file)) | |
2616 (and socket (string-match "=$" file))) | |
2617 (setq file (substring file 0 -1))))) | |
2618 (ange-ftp-put-hash-entry file (or symlink directory) tbl) | |
2619 (forward-line 1)) | |
2620 (ange-ftp-put-hash-entry "." t tbl) | |
2621 (ange-ftp-put-hash-entry ".." t tbl) | |
2622 tbl))) | |
2623 | |
2624 ;;; The dl stuff for descriptive listings | |
2625 | |
2626 (defvar ange-ftp-dl-dir-regexp nil | |
7042 | 2627 "Regexp matching directories which are listed in dl format. |
2628 This regexp should not be anchored with a trailing `$', because it should | |
2629 match subdirectories as well.") | |
1106 | 2630 |
2631 (defun ange-ftp-add-dl-dir (dir) | |
1233 | 2632 "Interactively adds a DIR to ange-ftp-dl-dir-regexp." |
1106 | 2633 (interactive |
2634 (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
|
2635 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2636 (and name (ange-ftp-ftp-name name) |
1106 | 2637 (file-name-directory name)))))) |
2638 (if (not (and ange-ftp-dl-dir-regexp | |
2639 (string-match ange-ftp-dl-dir-regexp dir))) | |
2640 (setq ange-ftp-dl-dir-regexp | |
2641 (concat "^" (regexp-quote dir) | |
2642 (and ange-ftp-dl-dir-regexp "\\|") | |
2643 ange-ftp-dl-dir-regexp)))) | |
2644 | |
2645 (defmacro ange-ftp-dl-parser () | |
2646 ;; Parse the current buffer, which is assumed to be a descriptive | |
2647 ;; listing, and return a hashtable. | |
2648 (` (let ((tbl (ange-ftp-make-hashtable))) | |
2649 (while (not (eobp)) | |
2650 (ange-ftp-put-hash-entry | |
2651 (buffer-substring (point) | |
2652 (progn | |
2653 (skip-chars-forward "^ /\n") | |
2654 (point))) | |
2655 (eq (following-char) ?/) | |
2656 tbl) | |
2657 (forward-line 1)) | |
2658 (ange-ftp-put-hash-entry "." t tbl) | |
2659 (ange-ftp-put-hash-entry ".." t tbl) | |
2660 tbl))) | |
2661 | |
7042 | 2662 ;; Parse the current buffer which is assumed to be in a dired-like listing |
2663 ;; format, and return a hashtable as the result. If the listing is not really | |
2664 ;; a listing, then return nil. | |
2665 | |
1106 | 2666 (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
|
2667 (save-match-data |
1106 | 2668 (cond |
2669 ((looking-at "^total [0-9]+$") | |
2670 (forward-line 1) | |
5067
4854aff5c5b3
(ange-ftp-parse-dired-listing): Skip extra blank line
Richard M. Stallman <rms@gnu.org>
parents:
4912
diff
changeset
|
2671 ;; 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
|
2672 (if (eolp) (forward-line 1)) |
1106 | 2673 (ange-ftp-ls-parser)) |
2674 ((looking-at "[^\n]+\\( not found\\|: Not a directory\\)\n\\'") | |
2675 ;; It's an ls error message. | |
2676 nil) | |
2677 ((eobp) ; i.e. (zerop (buffer-size)) | |
2678 ;; This could be one of: | |
2679 ;; (1) An Ultrix ls error message | |
2680 ;; (2) A listing with the A switch of an empty directory | |
2681 ;; on a machine which doesn't give a total line. | |
2682 ;; (3) The twilight zone. | |
2683 ;; We'll assume (1) for now. | |
2684 nil) | |
2685 ((re-search-forward ange-ftp-date-regexp nil t) | |
2686 (beginning-of-line) | |
2687 (ange-ftp-ls-parser)) | |
2688 ((re-search-forward "^[^ \n\t]+ +\\([0-9]+\\|-\\|=\\) " nil t) | |
2689 ;; It's a dl listing (I hope). | |
2690 ;; file is bound by the call to ange-ftp-ls | |
2691 (ange-ftp-add-dl-dir ange-ftp-this-file) | |
2692 (beginning-of-line) | |
2693 (ange-ftp-dl-parser)) | |
2694 (t nil)))) | |
2695 | |
2696 (defun ange-ftp-set-files (directory files) | |
2697 "For a given DIRECTORY, set or change the associated FILES hashtable." | |
2698 (and files (ange-ftp-put-hash-entry (file-name-as-directory directory) | |
2699 files ange-ftp-files-hashtable))) | |
2700 | |
2701 (defun ange-ftp-get-files (directory &optional no-error) | |
2702 "Given a given DIRECTORY, return a hashtable of file entries. | |
2703 This will give an error or return nil, depending on the value of | |
2704 NO-ERROR, if a listing for DIRECTORY cannot be obtained." | |
2705 (setq directory (file-name-as-directory directory)) ;normalize | |
2706 (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
|
2707 (save-match-data |
1106 | 2708 (and (ange-ftp-ls directory |
2709 ;; This is an efficiency hack. We try to | |
2710 ;; anticipate what sort of listing dired | |
2711 ;; might want, and cache just such a listing. | |
2712 (if (and (boundp 'dired-actual-switches) | |
2713 (stringp dired-actual-switches) | |
2714 ;; We allow the A switch, which lists | |
2715 ;; all files except "." and "..". | |
2716 ;; This is OK because we manually | |
2717 ;; insert these entries | |
2718 ;; in the hash table. | |
2719 (string-match | |
2720 "[aA]" dired-actual-switches) | |
2721 (string-match | |
2722 "l" dired-actual-switches) | |
2723 (not (string-match | |
2724 "R" dired-actual-switches))) | |
2725 dired-actual-switches | |
2726 (if (and (boundp 'dired-listing-switches) | |
2727 (stringp dired-listing-switches) | |
2728 (string-match | |
2729 "[aA]" dired-listing-switches) | |
2730 (string-match | |
2731 "l" dired-listing-switches) | |
2732 (not (string-match | |
2733 "R" dired-listing-switches))) | |
2734 dired-listing-switches | |
2735 "-al")) | |
2736 t no-error) | |
2737 (ange-ftp-get-hash-entry | |
2738 directory ange-ftp-files-hashtable))))) | |
2739 | |
7042 | 2740 ;; Given NAME, return the file part that can be used for looking up the |
2741 ;; file's entry in a hashtable. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2742 (defmacro ange-ftp-get-file-part (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2743 (` (let ((file (file-name-nondirectory (, name)))) |
1106 | 2744 (if (string-equal file "") |
2745 "." | |
2746 file)))) | |
2747 | |
7042 | 2748 ;; Return whether ange-ftp-file-entry-p and ange-ftp-get-file-entry are |
2749 ;; allowed to determine if NAME is a sub-directory by listing it directly, | |
2750 ;; rather than listing its parent directory. This is used for efficiency so | |
2751 ;; that a wasted listing is not done: | |
2752 ;; 1. When looking for a .dired file in dired-x.el. | |
2753 ;; 2. The syntax of FILE and DIR make it impossible that FILE could be a valid | |
2754 ;; subdirectory. This is of course an OS dependent judgement. | |
2755 | |
1106 | 2756 (defmacro ange-ftp-allow-child-lookup (dir file) |
2757 (` (not | |
2758 (let* ((efile (, file)) ; expand once. | |
2759 (edir (, dir)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2760 (parsed (ange-ftp-ftp-name edir)) |
1106 | 2761 (host-type (ange-ftp-host-type |
2762 (car parsed)))) | |
2763 (or | |
23119 | 2764 ;; Deal with dired |
2765 (and (boundp 'dired-local-variables-file) ; in the dired-x package | |
2766 (stringp dired-local-variables-file) | |
2767 (string-equal dired-local-variables-file efile)) | |
1106 | 2768 ;; No dots in dir names in vms. |
2769 (and (eq host-type 'vms) | |
2770 (string-match "\\." efile)) | |
2771 ;; No subdirs in mts of cms. | |
2772 (and (memq host-type '(mts cms)) | |
2773 (not (string-equal "/" (nth 2 parsed))))))))) | |
2774 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2775 (defun ange-ftp-file-entry-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2776 "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
|
2777 (let* ((name (directory-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2778 (dir (file-name-directory name)) |
1106 | 2779 (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
|
2780 (file (ange-ftp-get-file-part name))) |
1106 | 2781 (if ent |
2782 (ange-ftp-hash-entry-exists-p file ent) | |
2783 (or (and (ange-ftp-allow-child-lookup dir file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2784 (setq ent (ange-ftp-get-files name t)) |
1106 | 2785 ;; Try a child lookup. i.e. try to list file as a |
2786 ;; subdirectory of dir. This is a good idea because | |
2787 ;; we may not have read permission for file's parent. Also, | |
2788 ;; people tend to work down directory trees anyway. We use | |
2789 ;; no-error ;; because if file does not exist as a subdir., | |
2790 ;; then dumb hosts will give an ftp error. Smart unix hosts | |
2791 ;; will simply send back the ls | |
2792 ;; error message. | |
2793 (ange-ftp-get-hash-entry "." ent)) | |
17584
53a369ac3d2c
(ange-ftp-file-entry-p): If ange-ftp-get-files returns
Richard M. Stallman <rms@gnu.org>
parents:
16933
diff
changeset
|
2794 ;; Child lookup failed, so try the parent. |
53a369ac3d2c
(ange-ftp-file-entry-p): If ange-ftp-get-files returns
Richard M. Stallman <rms@gnu.org>
parents:
16933
diff
changeset
|
2795 (let ((table (ange-ftp-get-files dir))) |
53a369ac3d2c
(ange-ftp-file-entry-p): If ange-ftp-get-files returns
Richard M. Stallman <rms@gnu.org>
parents:
16933
diff
changeset
|
2796 ;; If the dir doesn't exist, don't use it as a hash table. |
53a369ac3d2c
(ange-ftp-file-entry-p): If ange-ftp-get-files returns
Richard M. Stallman <rms@gnu.org>
parents:
16933
diff
changeset
|
2797 (and table |
53a369ac3d2c
(ange-ftp-file-entry-p): If ange-ftp-get-files returns
Richard M. Stallman <rms@gnu.org>
parents:
16933
diff
changeset
|
2798 (ange-ftp-hash-entry-exists-p file |
53a369ac3d2c
(ange-ftp-file-entry-p): If ange-ftp-get-files returns
Richard M. Stallman <rms@gnu.org>
parents:
16933
diff
changeset
|
2799 table))))))) |
1106 | 2800 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2801 (defun ange-ftp-get-file-entry (name) |
1233 | 2802 "Given NAME, return the given file entry. |
2803 The entry will be either t for a directory, nil for a normal file, | |
2804 or a string for a symlink. If the file isn't in the hashtable, | |
2805 this also returns nil." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2806 (let* ((name (directory-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2807 (dir (file-name-directory name)) |
1106 | 2808 (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
|
2809 (file (ange-ftp-get-file-part name))) |
1106 | 2810 (if ent |
2811 (ange-ftp-get-hash-entry file ent) | |
2812 (or (and (ange-ftp-allow-child-lookup dir file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2813 (setq ent (ange-ftp-get-files name t)) |
1106 | 2814 (ange-ftp-get-hash-entry "." ent)) |
2815 ;; i.e. it's a directory by child lookup | |
2816 (ange-ftp-get-hash-entry file | |
2817 (ange-ftp-get-files dir)))))) | |
2818 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2819 (defun ange-ftp-internal-delete-file-entry (name &optional dir-p) |
1106 | 2820 (if dir-p |
2821 (progn | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2822 (setq name (file-name-as-directory name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2823 (ange-ftp-del-hash-entry name ange-ftp-files-hashtable) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2824 (setq name (directory-file-name name)))) |
1106 | 2825 ;; Note that file-name-as-directory followed by directory-file-name |
2826 ;; serves to canonicalize directory file names to their unix form. | |
2827 ;; i.e. in VMS, FOO.DIR -> FOO/ -> FOO | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2828 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) |
1106 | 2829 ange-ftp-files-hashtable))) |
2830 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2831 (ange-ftp-del-hash-entry (ange-ftp-get-file-part name) |
1106 | 2832 files)))) |
2833 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2834 (defun ange-ftp-internal-add-file-entry (name &optional dir-p) |
1106 | 2835 (and dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2836 (setq name (directory-file-name name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2837 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) |
1106 | 2838 ange-ftp-files-hashtable))) |
2839 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2840 (ange-ftp-put-hash-entry (ange-ftp-get-file-part name) |
1106 | 2841 dir-p |
2842 files)))) | |
2843 | |
2844 (defun ange-ftp-wipe-file-entries (host user) | |
7042 | 2845 "Get rid of entry for HOST, USER pair from file entry information hashtable." |
1106 | 2846 (let ((new-tbl (ange-ftp-make-hashtable (length ange-ftp-files-hashtable)))) |
2847 (ange-ftp-map-hashtable | |
2848 (function | |
2849 (lambda (key val) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2850 (let ((parsed (ange-ftp-ftp-name key))) |
1106 | 2851 (if parsed |
2852 (let ((h (nth 0 parsed)) | |
2853 (u (nth 1 parsed))) | |
2854 (or (and (equal host h) (equal user u)) | |
2855 (ange-ftp-put-hash-entry key val new-tbl))))))) | |
2856 ange-ftp-files-hashtable) | |
2857 (setq ange-ftp-files-hashtable new-tbl))) | |
2858 | |
2859 ;;;; ------------------------------------------------------------ | |
2860 ;;;; File transfer mode support. | |
2861 ;;;; ------------------------------------------------------------ | |
2862 | |
2863 (defun ange-ftp-set-binary-mode (host user) | |
2864 "Tell the ftp process for the given HOST & USER to switch to binary mode." | |
2865 (let ((result (ange-ftp-send-cmd host user '(type "binary")))) | |
2866 (if (not (car result)) | |
2867 (ange-ftp-error host user (concat "BINARY failed: " (cdr result))) | |
2868 (save-excursion | |
2869 (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
|
2870 (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
|
2871 (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
|
2872 (ash ange-ftp-binary-hash-mark-size -4))))))) |
1106 | 2873 |
2874 (defun ange-ftp-set-ascii-mode (host user) | |
2875 "Tell the ftp process for the given HOST & USER to switch to ascii mode." | |
2876 (let ((result (ange-ftp-send-cmd host user '(type "ascii")))) | |
2877 (if (not (car result)) | |
2878 (ange-ftp-error host user (concat "ASCII failed: " (cdr result))) | |
2879 (save-excursion | |
2880 (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
|
2881 (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
|
2882 (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
|
2883 (ash ange-ftp-ascii-hash-mark-size -4))))))) |
1106 | 2884 |
2885 (defun ange-ftp-cd (host user dir) | |
2886 (let ((result (ange-ftp-send-cmd host user (list 'cd dir) "Doing CD"))) | |
2887 (or (car result) | |
2888 (ange-ftp-error host user (concat "CD failed: " (cdr result)))))) | |
2889 | |
2890 (defun ange-ftp-get-pwd (host user) | |
2891 "Attempts to get the current working directory for the given HOST/USER pair. | |
18956 | 2892 Returns \( DIR . LINE \) where DIR is either the directory or nil if not found, |
1106 | 2893 and LINE is the relevant success or fail line from the FTP-client." |
2894 (let* ((result (ange-ftp-send-cmd host user '(pwd) "Getting PWD")) | |
2895 (line (cdr result)) | |
2896 dir) | |
2897 (if (car result) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2898 (save-match-data |
1106 | 2899 (and (or (string-match "\"\\([^\"]*\\)\"" line) |
2900 (string-match " \\([^ ]+\\) " line)) ; stone-age VMS servers! | |
2901 (setq dir (substring line | |
2902 (match-beginning 1) | |
2903 (match-end 1)))))) | |
2904 (cons dir line))) | |
2905 | |
2906 ;;; ------------------------------------------------------------ | |
2907 ;;; expand-file-name and friends...which currently don't work | |
2908 ;;; ------------------------------------------------------------ | |
2909 | |
2910 (defun ange-ftp-expand-dir (host user dir) | |
7042 | 2911 "Return the result of doing a PWD in the current FTP session. |
2912 Use the connection to machine HOST | |
1106 | 2913 logged in as user USER and cd'd to directory DIR." |
2914 (let* ((host-type (ange-ftp-host-type host user)) | |
2915 ;; It is more efficient to call ange-ftp-host-type | |
2916 ;; before binding res, because ange-ftp-host-type sometimes | |
2917 ;; adds to the info in the expand-dir-hashtable. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2918 (fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2919 (cdr (assq host-type ange-ftp-fix-name-func-alist))) |
1106 | 2920 (key (concat host "/" user "/" dir)) |
2921 (res (ange-ftp-get-hash-entry key ange-ftp-expand-dir-hashtable))) | |
2922 (or res | |
2923 (progn | |
2924 (or | |
2925 (string-equal user "anonymous") | |
2926 (string-equal user "ftp") | |
2927 (not (eq host-type 'unix)) | |
2928 (let* ((ange-ftp-good-msgs (concat ange-ftp-expand-dir-regexp | |
2929 "\\|" | |
2930 ange-ftp-good-msgs)) | |
2931 (result (ange-ftp-send-cmd host user | |
22406
d893285c4d8a
(ange-ftp-expand-dir): Use null-device.
Richard M. Stallman <rms@gnu.org>
parents:
22401
diff
changeset
|
2932 (list 'get dir null-device) |
1106 | 2933 (format "expanding %s" dir))) |
2934 (line (cdr result))) | |
2935 (setq res | |
2936 (if (string-match ange-ftp-expand-dir-regexp line) | |
2937 (substring line | |
2938 (match-beginning 1) | |
2939 (match-end 1)))))) | |
2940 (or res | |
2941 (if (string-equal dir "~") | |
2942 (setq res (car (ange-ftp-get-pwd host user))) | |
2943 (let ((home (ange-ftp-expand-dir host user "~"))) | |
2944 (unwind-protect | |
2945 (and (ange-ftp-cd host user dir) | |
2946 (setq res (car (ange-ftp-get-pwd host user)))) | |
2947 (ange-ftp-cd host user home))))) | |
2948 (if res | |
2949 (let ((ange-ftp-this-user user) | |
2950 (ange-ftp-this-host host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2951 (if fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2952 (setq res (funcall fix-name-func res 'reverse))) |
1106 | 2953 (ange-ftp-put-hash-entry |
2954 key res ange-ftp-expand-dir-hashtable))) | |
2955 res)))) | |
2956 | |
2957 (defun ange-ftp-canonize-filename (n) | |
2958 "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
|
2959 (if (string-match "[^:]+//" n) ;don't upset Apollo users |
1106 | 2960 (setq n (substring n (1- (match-end 0))))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2961 (let ((parsed (ange-ftp-ftp-name n))) |
1106 | 2962 (if parsed |
2963 (let ((host (car parsed)) | |
2964 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2965 (name (nth 2 parsed))) |
1106 | 2966 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2967 ;; 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
|
2968 ;; replace the name component of the overall name. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2969 (cond ((string-match "^/" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2970 name) |
1106 | 2971 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2972 ;; Name starts with ~ or ~user. Resolve that part of the name |
1106 | 2973 ;; making it absolute then re-expand it. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2974 ((string-match "^~[^/]*" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2975 (let* ((tilda (substring name |
1106 | 2976 (match-beginning 0) |
2977 (match-end 0))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2978 (rest (substring name (match-end 0))) |
1106 | 2979 (dir (ange-ftp-expand-dir host user tilda))) |
2980 (if dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2981 (setq name (concat dir rest)) |
1106 | 2982 (error "User \"%s\" is not known" |
2983 (substring tilda 1))))) | |
2984 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2985 ;; relative name. Tack on homedir and re-expand. |
1106 | 2986 (t |
2987 (let ((dir (ange-ftp-expand-dir host user "~"))) | |
2988 (if dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2989 (setq name (concat |
1106 | 2990 (ange-ftp-real-file-name-as-directory dir) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2991 name)) |
1106 | 2992 (error "Unable to obtain CWD"))))) |
2993 | |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
2994 ;; 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
|
2995 (if (not (string-match "^//" name)) |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
2996 (progn |
23570
e782dce34a19
(ange-ftp-canonicalize-filename): Do not use a UNC
Geoff Voelker <voelker@cs.washington.edu>
parents:
23483
diff
changeset
|
2997 (if (not (eq system-type 'windows-nt)) |
e782dce34a19
(ange-ftp-canonicalize-filename): Do not use a UNC
Geoff Voelker <voelker@cs.washington.edu>
parents:
23483
diff
changeset
|
2998 (setq name (ange-ftp-real-expand-file-name name)) |
e782dce34a19
(ange-ftp-canonicalize-filename): Do not use a UNC
Geoff Voelker <voelker@cs.washington.edu>
parents:
23483
diff
changeset
|
2999 ;; Windows UNC default dirs do not make sense for ftp. |
e782dce34a19
(ange-ftp-canonicalize-filename): Do not use a UNC
Geoff Voelker <voelker@cs.washington.edu>
parents:
23483
diff
changeset
|
3000 (if (string-match "^//" default-directory) |
e782dce34a19
(ange-ftp-canonicalize-filename): Do not use a UNC
Geoff Voelker <voelker@cs.washington.edu>
parents:
23483
diff
changeset
|
3001 (setq name (ange-ftp-real-expand-file-name name "c:/")) |
e782dce34a19
(ange-ftp-canonicalize-filename): Do not use a UNC
Geoff Voelker <voelker@cs.washington.edu>
parents:
23483
diff
changeset
|
3002 (setq name (ange-ftp-real-expand-file-name name))) |
e782dce34a19
(ange-ftp-canonicalize-filename): Do not use a UNC
Geoff Voelker <voelker@cs.washington.edu>
parents:
23483
diff
changeset
|
3003 ;; Strip off possible drive specifier. |
e782dce34a19
(ange-ftp-canonicalize-filename): Do not use a UNC
Geoff Voelker <voelker@cs.washington.edu>
parents:
23483
diff
changeset
|
3004 (if (string-match "^[a-zA-Z]:" name) |
e782dce34a19
(ange-ftp-canonicalize-filename): Do not use a UNC
Geoff Voelker <voelker@cs.washington.edu>
parents:
23483
diff
changeset
|
3005 (setq name (substring name 2)))) |
7923
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
3006 (if (string-match "^//" name) |
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
3007 (setq name (substring name 1))))) |
1106 | 3008 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3009 ;; Now substitute the expanded name back into the overall filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3010 (ange-ftp-replace-name-component n name)) |
1106 | 3011 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3012 ;; non-ange-ftp name. Just expand normally. |
1106 | 3013 (if (eq (string-to-char n) ?/) |
3014 (ange-ftp-real-expand-file-name n) | |
3015 (ange-ftp-real-expand-file-name | |
3016 (ange-ftp-real-file-name-nondirectory n) | |
3017 (ange-ftp-real-file-name-directory n)))))) | |
3018 | |
3019 (defun ange-ftp-expand-file-name (name &optional default) | |
3020 "Documented as original." | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
3021 (save-match-data |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3022 (setq default (or default default-directory)) |
1106 | 3023 (cond ((eq (string-to-char name) ?~) |
3024 (ange-ftp-real-expand-file-name name)) | |
3025 ((eq (string-to-char name) ?/) | |
3026 (ange-ftp-canonize-filename name)) | |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3027 ((and (eq system-type 'windows-nt) |
23840
4a967683f653
(ange-ftp-expand-file-name) [windows-nt]: Handle
Geoff Voelker <voelker@cs.washington.edu>
parents:
23570
diff
changeset
|
3028 (eq (string-to-char name) ?\\)) |
4a967683f653
(ange-ftp-expand-file-name) [windows-nt]: Handle
Geoff Voelker <voelker@cs.washington.edu>
parents:
23570
diff
changeset
|
3029 (ange-ftp-canonize-filename name)) |
4a967683f653
(ange-ftp-expand-file-name) [windows-nt]: Handle
Geoff Voelker <voelker@cs.washington.edu>
parents:
23570
diff
changeset
|
3030 ((and (eq system-type 'windows-nt) |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3031 (or (string-match "^[a-zA-Z]:" name) |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3032 (string-match "^[a-zA-Z]:" default))) |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3033 (ange-ftp-real-expand-file-name name default)) |
1106 | 3034 ((zerop (length name)) |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3035 (ange-ftp-canonize-filename default)) |
1106 | 3036 ((ange-ftp-canonize-filename |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3037 (concat (file-name-as-directory default) name)))))) |
1106 | 3038 |
3039 ;;; These are problems--they are currently not enabled. | |
3040 | |
3041 (defvar ange-ftp-file-name-as-directory-alist nil | |
7042 | 3042 "Association list of \( TYPE \. FUNC \) pairs. |
1106 | 3043 FUNC converts a filename to a directory name for the operating |
3044 system TYPE.") | |
3045 | |
3046 (defun ange-ftp-file-name-as-directory (name) | |
3047 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3048 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 3049 (if parsed |
3050 (if (string-equal (nth 2 parsed) "") | |
3051 name | |
3052 (funcall (or (cdr (assq | |
3053 (ange-ftp-host-type (car parsed)) | |
3054 ange-ftp-file-name-as-directory-alist)) | |
3055 'ange-ftp-real-file-name-as-directory) | |
3056 name)) | |
3057 (ange-ftp-real-file-name-as-directory name)))) | |
3058 | |
3059 (defun ange-ftp-file-name-directory (name) | |
3060 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3061 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 3062 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3063 (let ((filename (nth 2 parsed))) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
3064 (if (save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3065 (string-match "^~[^/]*$" filename)) |
1106 | 3066 name |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3067 (ange-ftp-replace-name-component |
1106 | 3068 name |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3069 (ange-ftp-real-file-name-directory filename)))) |
1106 | 3070 (ange-ftp-real-file-name-directory name)))) |
3071 | |
3072 (defun ange-ftp-file-name-nondirectory (name) | |
3073 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3074 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 3075 (if parsed |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3076 (let ((filename (nth 2 parsed))) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
3077 (if (save-match-data |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3078 (string-match "^~[^/]*$" filename)) |
1106 | 3079 "" |
27257
6b68e8616c20
(ange-ftp-file-name-nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
26208
diff
changeset
|
3080 (ange-ftp-real-file-name-nondirectory filename))) |
1106 | 3081 (ange-ftp-real-file-name-nondirectory name)))) |
3082 | |
3083 (defun ange-ftp-directory-file-name (dir) | |
3084 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3085 (let ((parsed (ange-ftp-ftp-name dir))) |
1106 | 3086 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3087 (ange-ftp-replace-name-component |
1106 | 3088 dir |
3089 (ange-ftp-real-directory-file-name (nth 2 parsed))) | |
3090 (ange-ftp-real-directory-file-name dir)))) | |
3091 | |
3092 | |
3093 ;;; Hooks that handle Emacs primitives. | |
3094 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3095 ;; Returns non-nil if should transfer FILE in binary mode. |
1106 | 3096 (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
|
3097 (save-match-data |
1106 | 3098 (string-match ange-ftp-binary-file-name-regexp file))) |
3099 | |
3100 (defun ange-ftp-write-region (start end filename &optional append visit) | |
3101 (setq filename (expand-file-name filename)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3102 (let ((parsed (ange-ftp-ftp-name filename))) |
1106 | 3103 (if parsed |
3104 (let* ((host (nth 0 parsed)) | |
3105 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3106 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 3107 (temp (ange-ftp-make-tmp-name host)) |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
3108 ;; What we REALLY need here is a way to determine if the mode |
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
3109 ;; of the transfer is irrelevant, i.e. we can use binary mode |
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
3110 ;; regardless. Maybe a system-type to host-type lookup? |
10748
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3111 (binary (or (ange-ftp-binary-file filename) |
23231
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
3112 (memq (ange-ftp-host-type host user) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
3113 '(unix dumb-unix)))) |
1106 | 3114 (cmd (if append 'append 'put)) |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3115 (abbr (ange-ftp-abbreviate-filename filename)) |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3116 ;; we need to reset `last-coding-system-used' to its |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3117 ;; value immediately after calling the real write-region, |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3118 ;; so that `basic-save-buffer' doesn't see whatever value |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3119 ;; might be used when communicating with the ftp process. |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3120 (coding-system-used last-coding-system-used)) |
1106 | 3121 (unwind-protect |
3122 (progn | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
3123 (let ((executing-kbd-macro t) |
1106 | 3124 (filename (buffer-file-name)) |
3125 (mod-p (buffer-modified-p))) | |
3126 (unwind-protect | |
3127 (ange-ftp-real-write-region start end temp nil visit) | |
3128 ;; cleanup forms | |
3129 (setq buffer-file-name filename) | |
3130 (set-buffer-modified-p mod-p))) | |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3131 ;; save value used by the real write-region |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3132 (setq coding-system-used last-coding-system-used) |
1106 | 3133 (if binary |
3134 (ange-ftp-set-binary-mode host user)) | |
3135 | |
3136 ;; tell the process filter what size the transfer will be. | |
3137 (let ((attr (file-attributes temp))) | |
3138 (if attr | |
3139 (ange-ftp-set-xfer-size host user (nth 7 attr)))) | |
3140 | |
3141 ;; put or append the file. | |
3142 (let ((result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3143 (list cmd temp name) |
1106 | 3144 (format "Writing %s" abbr)))) |
3145 (or (car result) | |
3146 (signal 'ftp-error | |
3147 (list | |
3148 "Opening output file" | |
3149 (format "FTP Error: \"%s\"" (cdr result)) | |
3150 filename))))) | |
3151 (ange-ftp-del-tmp-name temp) | |
3152 (if binary | |
3153 (ange-ftp-set-ascii-mode host user))) | |
3154 (if (eq visit t) | |
3155 (progn | |
5350
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
3156 (set-visited-file-modtime '(0 0)) |
1106 | 3157 (ange-ftp-set-buffer-mode) |
3158 (setq buffer-file-name filename) | |
3159 (set-buffer-modified-p nil))) | |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3160 ;; ensure `last-coding-system-used' has an appropriate value |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3161 (setq last-coding-system-used coding-system-used) |
1106 | 3162 (ange-ftp-message "Wrote %s" abbr) |
3163 (ange-ftp-add-file-entry filename)) | |
3164 (ange-ftp-real-write-region start end filename append visit)))) | |
3165 | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3166 (defun ange-ftp-insert-file-contents (filename &optional visit beg end replace) |
1106 | 3167 (barf-if-buffer-read-only) |
3168 (setq filename (expand-file-name filename)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3169 (let ((parsed (ange-ftp-ftp-name filename))) |
1106 | 3170 (if parsed |
3171 (progn | |
3172 (if visit | |
3173 (setq buffer-file-name filename)) | |
3174 (if (or (file-exists-p filename) | |
3175 (progn | |
3176 (setq ange-ftp-ls-cache-file nil) | |
3177 (ange-ftp-del-hash-entry (file-name-directory filename) | |
3178 ange-ftp-files-hashtable) | |
3179 (file-exists-p filename))) | |
3180 (let* ((host (nth 0 parsed)) | |
3181 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3182 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 3183 (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
|
3184 (binary (or (ange-ftp-binary-file filename) |
23246
3741d2ab743a
(ange-ftp-insert-file-contents):
Karl Heuer <kwzh@gnu.org>
parents:
23231
diff
changeset
|
3185 (memq (ange-ftp-host-type host user) |
3741d2ab743a
(ange-ftp-insert-file-contents):
Karl Heuer <kwzh@gnu.org>
parents:
23231
diff
changeset
|
3186 '(unix dumb-unix)))) |
1106 | 3187 (abbr (ange-ftp-abbreviate-filename filename)) |
27585
65b514b0ab72
(ange-ftp-write-region): Handle case that
Gerd Moellmann <gerd@gnu.org>
parents:
27478
diff
changeset
|
3188 (coding-system-used last-coding-system-used) |
1106 | 3189 size) |
3190 (unwind-protect | |
3191 (progn | |
3192 (if binary | |
3193 (ange-ftp-set-binary-mode host user)) | |
3194 (let ((result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3195 (list 'get name temp) |
1106 | 3196 (format "Retrieving %s" abbr)))) |
3197 (or (car result) | |
3198 (signal 'ftp-error | |
3199 (list | |
3200 "Opening input file" | |
3201 (format "FTP Error: \"%s\"" (cdr result)) | |
3202 filename)))) | |
3203 (if (or (ange-ftp-real-file-readable-p temp) | |
3204 (sleep-for ange-ftp-retry-time) | |
3205 ;; Wait for file to hopefully appear. | |
3206 (ange-ftp-real-file-readable-p temp)) | |
3207 (setq | |
3208 size | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3209 (nth 1 (ange-ftp-real-insert-file-contents |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
3210 temp visit beg end replace)) |
27585
65b514b0ab72
(ange-ftp-write-region): Handle case that
Gerd Moellmann <gerd@gnu.org>
parents:
27478
diff
changeset
|
3211 coding-system-used last-coding-system-used |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
3212 ;; override autodetection of buffer file type |
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
3213 ;; to ensure buffer is saved in DOS format |
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
3214 buffer-file-type binary) |
1106 | 3215 (signal 'ftp-error |
3216 (list | |
3217 "Opening input file:" | |
3218 (format | |
3219 "FTP Error: %s not arrived or readable" | |
3220 filename))))) | |
3221 (if binary | |
26208
41fc37a93f9e
(ange-ftp-insert-file-contents): Don't change
Kenichi Handa <handa@m17n.org>
parents:
26039
diff
changeset
|
3222 ;; We must keep `last-coding-system-used' |
41fc37a93f9e
(ange-ftp-insert-file-contents): Don't change
Kenichi Handa <handa@m17n.org>
parents:
26039
diff
changeset
|
3223 ;; unchanged. |
41fc37a93f9e
(ange-ftp-insert-file-contents): Don't change
Kenichi Handa <handa@m17n.org>
parents:
26039
diff
changeset
|
3224 (let (last-coding-system-used) |
41fc37a93f9e
(ange-ftp-insert-file-contents): Don't change
Kenichi Handa <handa@m17n.org>
parents:
26039
diff
changeset
|
3225 (ange-ftp-set-ascii-mode host user))) |
1106 | 3226 (ange-ftp-del-tmp-name temp)) |
3227 (if visit | |
5350
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
3228 (progn |
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
3229 (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
|
3230 (setq buffer-file-name filename))) |
27585
65b514b0ab72
(ange-ftp-write-region): Handle case that
Gerd Moellmann <gerd@gnu.org>
parents:
27478
diff
changeset
|
3231 (setq last-coding-system-used coding-system-used) |
1106 | 3232 (list filename size)) |
3233 (signal 'file-error | |
3234 (list | |
3235 "Opening input file" | |
3236 filename)))) | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3237 (ange-ftp-real-insert-file-contents filename visit beg end replace)))) |
1106 | 3238 |
3239 (defun ange-ftp-expand-symlink (file dir) | |
3240 (if (file-name-absolute-p file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3241 (ange-ftp-replace-name-component dir file) |
1106 | 3242 (expand-file-name file dir))) |
3243 | |
3244 (defun ange-ftp-file-symlink-p (file) | |
3245 ;; call ange-ftp-expand-file-name rather than the normal | |
3246 ;; expand-file-name to stop loops when using a package that | |
3247 ;; redefines both file-symlink-p and expand-file-name. | |
3248 (setq file (ange-ftp-expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3249 (if (ange-ftp-ftp-name file) |
1106 | 3250 (let ((file-ent |
3251 (ange-ftp-get-hash-entry | |
3252 (ange-ftp-get-file-part file) | |
3253 (ange-ftp-get-files (file-name-directory file))))) | |
3254 (if (stringp file-ent) | |
3255 (if (file-name-absolute-p file-ent) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3256 (ange-ftp-replace-name-component |
1106 | 3257 (file-name-directory file) file-ent) |
3258 file-ent))) | |
3259 (ange-ftp-real-file-symlink-p file))) | |
3260 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3261 (defun ange-ftp-file-exists-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3262 (setq name (expand-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3263 (if (ange-ftp-ftp-name name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3264 (if (ange-ftp-file-entry-p name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3265 (let ((file-ent (ange-ftp-get-file-entry name))) |
1106 | 3266 (if (stringp file-ent) |
3267 (file-exists-p | |
3268 (ange-ftp-expand-symlink file-ent | |
3269 (file-name-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3270 (directory-file-name name)))) |
1106 | 3271 t))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3272 (ange-ftp-real-file-exists-p name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3273 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3274 (defun ange-ftp-file-directory-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3275 (setq name (expand-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3276 (if (ange-ftp-ftp-name name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3277 ;; We do a file-name-as-directory on name here because some |
1106 | 3278 ;; machines (VMS) use a .DIR to indicate the filename associated |
3279 ;; with a directory. This needs to be canonicalized. | |
3280 (let ((file-ent (ange-ftp-get-file-entry | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3281 (ange-ftp-file-name-as-directory name)))) |
1106 | 3282 (if (stringp file-ent) |
3283 (file-directory-p | |
3284 (ange-ftp-expand-symlink file-ent | |
3285 (file-name-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3286 (directory-file-name name)))) |
1106 | 3287 file-ent)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3288 (ange-ftp-real-file-directory-p name))) |
1106 | 3289 |
3290 (defun ange-ftp-directory-files (directory &optional full match | |
3291 &rest v19-args) | |
3292 (setq directory (expand-file-name directory)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3293 (if (ange-ftp-ftp-name directory) |
1106 | 3294 (progn |
3295 (ange-ftp-barf-if-not-directory directory) | |
3296 (let ((tail (ange-ftp-hash-table-keys | |
3297 (ange-ftp-get-files directory))) | |
3298 files f) | |
3299 (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
|
3300 (save-match-data |
1106 | 3301 (while tail |
3302 (setq f (car tail) | |
3303 tail (cdr tail)) | |
3304 (if (or (not match) (string-match match f)) | |
3305 (setq files | |
3306 (cons (if full (concat directory f) f) files))))) | |
3307 (nreverse files))) | |
3308 (apply 'ange-ftp-real-directory-files directory full match v19-args))) | |
3309 | |
3310 (defun ange-ftp-file-attributes (file) | |
3311 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3312 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3313 (if parsed |
3314 (let ((part (ange-ftp-get-file-part file)) | |
3315 (files (ange-ftp-get-files (file-name-directory file)))) | |
3316 (if (ange-ftp-hash-entry-exists-p part files) | |
3317 (let ((host (nth 0 parsed)) | |
3318 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3319 (name (nth 2 parsed)) |
20656
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
3320 (dirp (ange-ftp-get-hash-entry part files)) |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
3321 (inode (ange-ftp-get-hash-entry |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
3322 file ange-ftp-inodes-hashtable))) |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
3323 (unless inode |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
3324 (setq inode ange-ftp-next-inode-number |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
3325 ange-ftp-next-inode-number (1+ inode)) |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
3326 (ange-ftp-put-hash-entry file inode ange-ftp-inodes-hashtable)) |
1106 | 3327 (list (if (and (stringp dirp) (file-name-absolute-p dirp)) |
3328 (ange-ftp-expand-symlink dirp | |
3329 (file-name-directory file)) | |
3330 dirp) ;0 file type | |
3331 -1 ;1 link count | |
3332 -1 ;2 uid | |
3333 -1 ;3 gid | |
3334 '(0 0) ;4 atime | |
3335 '(0 0) ;5 mtime | |
3336 '(0 0) ;6 ctime | |
3337 -1 ;7 size | |
3338 (concat (if (stringp dirp) "l" (if dirp "d" "-")) | |
3339 "?????????") ;8 mode | |
3340 nil ;9 gid weird | |
20656
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
3341 inode ;10 "inode number". |
1106 | 3342 -1 ;11 device number [v19 only] |
3343 )))) | |
3344 (ange-ftp-real-file-attributes file)))) | |
3345 | |
3346 (defun ange-ftp-file-writable-p (file) | |
3347 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3348 (if (ange-ftp-ftp-name file) |
1106 | 3349 (or (file-exists-p file) ;guess here for speed |
3350 (file-directory-p (file-name-directory file))) | |
3351 (ange-ftp-real-file-writable-p file))) | |
3352 | |
3353 (defun ange-ftp-file-readable-p (file) | |
3354 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3355 (if (ange-ftp-ftp-name file) |
1106 | 3356 (file-exists-p file) |
3357 (ange-ftp-real-file-readable-p file))) | |
3358 | |
4674
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3359 (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
|
3360 (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
|
3361 (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
|
3362 (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
|
3363 (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
|
3364 |
1106 | 3365 (defun ange-ftp-delete-file (file) |
3366 (interactive "fDelete file: ") | |
3367 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3368 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3369 (if parsed |
3370 (let* ((host (nth 0 parsed)) | |
3371 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3372 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 3373 (abbr (ange-ftp-abbreviate-filename file)) |
3374 (result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3375 (list 'delete name) |
1106 | 3376 (format "Deleting %s" abbr)))) |
3377 (or (car result) | |
3378 (signal 'ftp-error | |
3379 (list | |
3380 "Removing old name" | |
3381 (format "FTP Error: \"%s\"" (cdr result)) | |
3382 file))) | |
3383 (ange-ftp-delete-file-entry file)) | |
3384 (ange-ftp-real-delete-file file)))) | |
3385 | |
3386 (defun ange-ftp-verify-visited-file-modtime (buf) | |
3387 (let ((name (buffer-file-name buf))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3388 (if (and (stringp name) (ange-ftp-ftp-name name)) |
1106 | 3389 t |
3390 (ange-ftp-real-verify-visited-file-modtime buf)))) | |
3391 | |
3392 ;;;; ------------------------------------------------------------ | |
3393 ;;;; File copying support... totally re-written 6/24/92. | |
3394 ;;;; ------------------------------------------------------------ | |
3395 | |
3396 (defun ange-ftp-barf-or-query-if-file-exists (absname querystring interactive) | |
3397 (if (file-exists-p absname) | |
3398 (if (not interactive) | |
3399 (signal 'file-already-exists (list absname)) | |
3400 (if (not (yes-or-no-p (format "File %s already exists; %s anyway? " | |
3401 absname querystring))) | |
3402 (signal 'file-already-exists (list absname)))))) | |
3403 | |
3404 ;; async local copy commented out for now since I don't seem to get | |
3405 ;; the process sentinel called for some processes. | |
3406 ;; | |
3407 ;; (defun ange-ftp-copy-file-locally (filename newname ok-if-already-exists | |
3408 ;; keep-date cont) | |
3409 ;; "Kludge to copy a local file and call a continuation when the copy | |
3410 ;; finishes." | |
3411 ;; ;; check to see if we can overwrite | |
3412 ;; (if (or (not ok-if-already-exists) | |
3413 ;; (numberp ok-if-already-exists)) | |
3414 ;; (ange-ftp-barf-or-query-if-file-exists newname "copy to it" | |
3415 ;; (numberp ok-if-already-exists))) | |
3416 ;; (let ((proc (start-process " *copy*" | |
3417 ;; (generate-new-buffer "*copy*") | |
3418 ;; "cp" | |
3419 ;; filename | |
3420 ;; newname)) | |
3421 ;; res) | |
3422 ;; (set-process-sentinel proc (function ange-ftp-copy-file-locally-sentinel)) | |
3423 ;; (process-kill-without-query proc) | |
3424 ;; (save-excursion | |
3425 ;; (set-buffer (process-buffer proc)) | |
3426 ;; (make-variable-buffer-local 'copy-cont) | |
3427 ;; (setq copy-cont cont)))) | |
3428 ;; | |
3429 ;; (defun ange-ftp-copy-file-locally-sentinel (proc status) | |
3430 ;; (save-excursion | |
3431 ;; (set-buffer (process-buffer proc)) | |
3432 ;; (let ((cont copy-cont) | |
3433 ;; (result (buffer-string))) | |
3434 ;; (unwind-protect | |
3435 ;; (if (and (string-equal status "finished\n") | |
3436 ;; (zerop (length result))) | |
3437 ;; (ange-ftp-call-cont cont t nil) | |
3438 ;; (ange-ftp-call-cont cont | |
3439 ;; nil | |
3440 ;; (if (zerop (length result)) | |
3441 ;; (substring status 0 -1) | |
3442 ;; (substring result 0 -1)))) | |
3443 ;; (kill-buffer (current-buffer)))))) | |
3444 | |
3445 ;; 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
|
3446 ;; asynchronously if asked nicely. |
1106 | 3447 (defun ange-ftp-copy-file-internal (filename newname ok-if-already-exists |
3448 keep-date &optional msg cont nowait) | |
3449 (setq filename (expand-file-name filename) | |
3450 newname (expand-file-name newname)) | |
3451 | |
3452 ;; canonicalize newname if a directory. | |
3453 (if (file-directory-p newname) | |
3454 (setq newname (expand-file-name (file-name-nondirectory filename) newname))) | |
3455 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3456 (let ((f-parsed (ange-ftp-ftp-name filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3457 (t-parsed (ange-ftp-ftp-name newname))) |
1106 | 3458 |
3459 ;; local file to local file copy? | |
3460 (if (and (not f-parsed) (not t-parsed)) | |
3461 (progn | |
3462 (ange-ftp-real-copy-file filename newname ok-if-already-exists | |
3463 keep-date) | |
3464 (if cont | |
3465 (ange-ftp-call-cont cont t "Copied locally"))) | |
3466 ;; one or both files are remote. | |
3467 (let* ((f-host (and f-parsed (nth 0 f-parsed))) | |
3468 (f-user (and f-parsed (nth 1 f-parsed))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3469 (f-name (and f-parsed (ange-ftp-quote-string (nth 2 f-parsed)))) |
1106 | 3470 (f-abbr (ange-ftp-abbreviate-filename filename)) |
3471 (t-host (and t-parsed (nth 0 t-parsed))) | |
3472 (t-user (and t-parsed (nth 1 t-parsed))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3473 (t-name (and t-parsed (ange-ftp-quote-string (nth 2 t-parsed)))) |
1106 | 3474 (t-abbr (ange-ftp-abbreviate-filename newname filename)) |
3475 (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
|
3476 (ange-ftp-binary-file newname) |
23246
3741d2ab743a
(ange-ftp-insert-file-contents):
Karl Heuer <kwzh@gnu.org>
parents:
23231
diff
changeset
|
3477 (and (memq (ange-ftp-host-type f-host f-user) |
3741d2ab743a
(ange-ftp-insert-file-contents):
Karl Heuer <kwzh@gnu.org>
parents:
23231
diff
changeset
|
3478 '(unix dumb-unix)) |
3741d2ab743a
(ange-ftp-insert-file-contents):
Karl Heuer <kwzh@gnu.org>
parents:
23231
diff
changeset
|
3479 (memq (ange-ftp-host-type t-host t-user) |
3741d2ab743a
(ange-ftp-insert-file-contents):
Karl Heuer <kwzh@gnu.org>
parents:
23231
diff
changeset
|
3480 '(unix dumb-unix))))) |
1106 | 3481 temp1 |
3482 temp2) | |
3483 | |
3484 ;; check to see if we can overwrite | |
3485 (if (or (not ok-if-already-exists) | |
3486 (numberp ok-if-already-exists)) | |
3487 (ange-ftp-barf-or-query-if-file-exists newname "copy to it" | |
3488 (numberp ok-if-already-exists))) | |
3489 | |
3490 ;; do the copying. | |
3491 (if f-parsed | |
3492 | |
3493 ;; filename was remote. | |
3494 (progn | |
3495 (if (or (ange-ftp-use-gateway-p f-host) | |
3496 t-parsed) | |
3497 ;; have to use intermediate file if we are getting via | |
3498 ;; gateway machine or we are doing a remote to remote copy. | |
3499 (setq temp1 (ange-ftp-make-tmp-name f-host))) | |
3500 | |
3501 (if binary | |
3502 (ange-ftp-set-binary-mode f-host f-user)) | |
3503 | |
3504 (ange-ftp-send-cmd | |
3505 f-host | |
3506 f-user | |
27478
00282ceafbca
(ange-ftp-copy-file-internal): Quote new name
Gerd Moellmann <gerd@gnu.org>
parents:
27357
diff
changeset
|
3507 (list 'get f-name (or temp1 (ange-ftp-quote-string newname))) |
1106 | 3508 (or msg |
3509 (if (and temp1 t-parsed) | |
3510 (format "Getting %s" f-abbr) | |
3511 (format "Copying %s to %s" f-abbr t-abbr))) | |
3512 (list (function ange-ftp-cf1) | |
3513 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3514 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3515 t-parsed t-host t-user t-name t-abbr |
1106 | 3516 temp1 temp2 cont nowait) |
3517 nowait)) | |
3518 | |
3519 ;; filename wasn't remote. newname must be remote. call the | |
3520 ;; function which does the remainder of the copying work. | |
3521 (ange-ftp-cf1 t nil | |
3522 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3523 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3524 t-parsed t-host t-user t-name t-abbr |
1106 | 3525 nil nil cont nowait)))))) |
3526 | |
23483
abcdf0c8e98d
(ange-ftp-waiting-flag): defvar moved.
Richard M. Stallman <rms@gnu.org>
parents:
23464
diff
changeset
|
3527 (defvar ange-ftp-waiting-flag nil) |
abcdf0c8e98d
(ange-ftp-waiting-flag): defvar moved.
Richard M. Stallman <rms@gnu.org>
parents:
23464
diff
changeset
|
3528 |
1106 | 3529 ;; next part of copying routine. |
3530 (defun ange-ftp-cf1 (result line | |
3531 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3532 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3533 t-parsed t-host t-user t-name t-abbr |
1106 | 3534 temp1 temp2 cont nowait) |
3535 (if line | |
3536 ;; filename must have been remote, and we must have just done a GET. | |
3537 (unwind-protect | |
3538 (or result | |
3539 ;; GET failed for some reason. Clean up and get out. | |
3540 (progn | |
3541 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3542 (or cont | |
16876
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3543 (if ange-ftp-waiting-flag |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3544 (throw 'ftp-error t) |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3545 (signal 'ftp-error |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3546 (list "Opening input file" |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3547 (format "FTP Error: \"%s\"" line) |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3548 filename)))))) |
1106 | 3549 ;; cleanup |
3550 (if binary | |
3551 (ange-ftp-set-ascii-mode f-host f-user)))) | |
3552 | |
3553 (if result | |
3554 ;; We now have to copy either temp1 or filename to newname. | |
3555 (if t-parsed | |
3556 | |
3557 ;; newname was remote. | |
3558 (progn | |
3559 (if (ange-ftp-use-gateway-p t-host) | |
3560 (setq temp2 (ange-ftp-make-tmp-name t-host))) | |
3561 | |
3562 ;; make sure data is moved into the right place for the | |
3563 ;; outgoing transfer. gateway temporary files complicate | |
3564 ;; things nicely. | |
3565 (if temp1 | |
3566 (if temp2 | |
3567 (if (string-equal temp1 temp2) | |
3568 (setq temp1 nil) | |
3569 (ange-ftp-real-copy-file temp1 temp2 t)) | |
3570 (setq temp2 temp1 temp1 nil)) | |
3571 (if temp2 | |
3572 (ange-ftp-real-copy-file filename temp2 t))) | |
3573 | |
3574 (if binary | |
3575 (ange-ftp-set-binary-mode t-host t-user)) | |
3576 | |
3577 ;; tell the process filter what size the file is. | |
3578 (let ((attr (file-attributes (or temp2 filename)))) | |
3579 (if attr | |
3580 (ange-ftp-set-xfer-size t-host t-user (nth 7 attr)))) | |
3581 | |
3582 (ange-ftp-send-cmd | |
3583 t-host | |
3584 t-user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3585 (list 'put (or temp2 filename) t-name) |
1106 | 3586 (or msg |
3587 (if (and temp2 f-parsed) | |
3588 (format "Putting %s" newname) | |
3589 (format "Copying %s to %s" f-abbr t-abbr))) | |
3590 (list (function ange-ftp-cf2) | |
3591 newname t-host t-user binary temp1 temp2 cont) | |
3592 nowait)) | |
3593 | |
3594 ;; newname wasn't remote. | |
3595 (ange-ftp-cf2 t nil newname t-host t-user binary temp1 temp2 cont)) | |
3596 | |
3597 ;; first copy failed, tell caller | |
3598 (ange-ftp-call-cont cont result line))) | |
3599 | |
3600 ;; last part of copying routine. | |
3601 (defun ange-ftp-cf2 (result line newname t-host t-user binary temp1 temp2 cont) | |
3602 (unwind-protect | |
3603 (if line | |
3604 ;; result from doing a local to remote copy. | |
3605 (unwind-protect | |
3606 (progn | |
3607 (or result | |
3608 (or cont | |
16876
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3609 (if ange-ftp-waiting-flag |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3610 (throw 'ftp-error t) |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3611 (signal 'ftp-error |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3612 (list "Opening output file" |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3613 (format "FTP Error: \"%s\"" line) |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3614 newname))))) |
1106 | 3615 |
3616 (ange-ftp-add-file-entry newname)) | |
3617 | |
3618 ;; cleanup. | |
3619 (if binary | |
3620 (ange-ftp-set-ascii-mode t-host t-user))) | |
3621 | |
3622 ;; newname was local. | |
3623 (if temp1 | |
3624 (ange-ftp-real-copy-file temp1 newname t))) | |
3625 | |
3626 ;; clean up | |
3627 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3628 (and temp2 (ange-ftp-del-tmp-name temp2)) | |
3629 (ange-ftp-call-cont cont result line))) | |
3630 | |
3631 (defun ange-ftp-copy-file (filename newname &optional ok-if-already-exists | |
3632 keep-date) | |
3633 (interactive "fCopy file: \nFCopy %s to file: \np") | |
3634 (ange-ftp-copy-file-internal filename | |
3635 newname | |
3636 ok-if-already-exists | |
3637 keep-date | |
3638 nil | |
3639 nil | |
3640 (interactive-p))) | |
3641 | |
3642 ;;;; ------------------------------------------------------------ | |
3643 ;;;; File renaming support. | |
3644 ;;;; ------------------------------------------------------------ | |
3645 | |
10748
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3646 (defun ange-ftp-rename-remote-to-remote (filename newname f-parsed t-parsed) |
1106 | 3647 "Rename remote file FILE to remote file NEWNAME." |
3648 (let ((f-host (nth 0 f-parsed)) | |
3649 (f-user (nth 1 f-parsed)) | |
3650 (t-host (nth 0 t-parsed)) | |
3651 (t-user (nth 1 t-parsed))) | |
3652 (if (and (string-equal f-host t-host) | |
3653 (string-equal f-user t-user)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3654 (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
|
3655 (t-name (ange-ftp-quote-string (nth 2 t-parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3656 (cmd (list 'rename f-name t-name)) |
1106 | 3657 (fabbr (ange-ftp-abbreviate-filename filename)) |
3658 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3659 (result (ange-ftp-send-cmd f-host f-user cmd | |
3660 (format "Renaming %s to %s" | |
3661 fabbr | |
3662 nabbr)))) | |
3663 (or (car result) | |
3664 (signal 'ftp-error | |
3665 (list | |
3666 "Renaming" | |
3667 (format "FTP Error: \"%s\"" (cdr result)) | |
3668 filename | |
3669 newname))) | |
3670 (ange-ftp-add-file-entry newname) | |
3671 (ange-ftp-delete-file-entry filename)) | |
3672 (ange-ftp-copy-file-internal filename newname t nil) | |
3673 (delete-file filename)))) | |
3674 | |
3675 (defun ange-ftp-rename-local-to-remote (filename newname) | |
1233 | 3676 "Rename local FILENAME to remote file NEWNAME." |
1106 | 3677 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3678 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3679 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3680 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3681 (let (ange-ftp-process-verbose) | |
3682 (delete-file filename)))) | |
3683 | |
3684 (defun ange-ftp-rename-remote-to-local (filename newname) | |
1233 | 3685 "Rename remote file FILENAME to local file NEWNAME." |
1106 | 3686 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3687 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3688 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3689 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3690 (let (ange-ftp-process-verbose) | |
3691 (delete-file filename)))) | |
3692 | |
3693 (defun ange-ftp-rename-file (filename newname &optional ok-if-already-exists) | |
3694 (interactive "fRename file: \nFRename %s to file: \np") | |
3695 (setq filename (expand-file-name filename)) | |
3696 (setq newname (expand-file-name newname)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3697 (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
|
3698 (t-parsed (ange-ftp-ftp-name newname))) |
1106 | 3699 (if (and (or f-parsed t-parsed) |
3700 (or (not ok-if-already-exists) | |
3701 (numberp ok-if-already-exists))) | |
3702 (ange-ftp-barf-or-query-if-file-exists | |
3703 newname | |
3704 "rename to it" | |
3705 (numberp ok-if-already-exists))) | |
3706 (if f-parsed | |
3707 (if t-parsed | |
3708 (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
|
3709 t-parsed) |
1106 | 3710 (ange-ftp-rename-remote-to-local filename newname)) |
3711 (if t-parsed | |
3712 (ange-ftp-rename-local-to-remote filename newname) | |
3713 (ange-ftp-real-rename-file filename newname ok-if-already-exists))))) | |
3714 | |
3715 ;;;; ------------------------------------------------------------ | |
3716 ;;;; File name completion support. | |
3717 ;;;; ------------------------------------------------------------ | |
3718 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3719 ;; 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
|
3720 ;; Note that `ange-ftp-this-dir' is used as a free variable. |
1106 | 3721 (defun ange-ftp-file-entry-active-p (sym) |
3722 (let ((val (get sym 'val))) | |
3723 (or (not (stringp val)) | |
3724 (file-exists-p (ange-ftp-expand-symlink val ange-ftp-this-dir))))) | |
3725 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3726 ;; 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
|
3727 ;; 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
|
3728 ;; by completion-ignored-extensions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3729 ;; 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
|
3730 ;; are used as free variables. |
1106 | 3731 (defun ange-ftp-file-entry-not-ignored-p (sym) |
3732 (let ((val (get sym 'val)) | |
3733 (symname (symbol-name sym))) | |
3734 (if (stringp val) | |
3735 (let ((file (ange-ftp-expand-symlink val ange-ftp-this-dir))) | |
3736 (or (file-directory-p file) | |
3737 (and (file-exists-p file) | |
3738 (not (string-match ange-ftp-completion-ignored-pattern | |
3739 symname))))) | |
3740 (or val ; is a directory name | |
3741 (not (string-match ange-ftp-completion-ignored-pattern symname)))))) | |
3742 | |
3743 (defun ange-ftp-file-name-all-completions (file dir) | |
3744 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3745 (if (ange-ftp-ftp-name ange-ftp-this-dir) |
1106 | 3746 (progn |
3747 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3748 (setq ange-ftp-this-dir | |
3749 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) | |
3750 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3751 (completions | |
3752 (all-completions file tbl | |
3753 (function ange-ftp-file-entry-active-p)))) | |
3754 | |
3755 ;; see whether each matching file is a directory or not... | |
3756 (mapcar | |
3757 (function | |
3758 (lambda (file) | |
3759 (let ((ent (ange-ftp-get-hash-entry file tbl))) | |
3760 (if (and ent | |
3761 (or (not (stringp ent)) | |
3762 (file-directory-p | |
3763 (ange-ftp-expand-symlink ent | |
3764 ange-ftp-this-dir)))) | |
3765 (concat file "/") | |
3766 file)))) | |
3767 completions))) | |
3768 | |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
3769 (if (or (and (eq system-type 'windows-nt) |
22395
4f8f06912912
(ange-ftp-file-name-completion): Do hostname
Richard M. Stallman <rms@gnu.org>
parents:
22278
diff
changeset
|
3770 (string-match "^[a-zA-Z]:[/\\]$" ange-ftp-this-dir)) |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
3771 (string-equal "/" ange-ftp-this-dir)) |
1106 | 3772 (nconc (all-completions file (ange-ftp-generate-root-prefixes)) |
3773 (ange-ftp-real-file-name-all-completions file | |
3774 ange-ftp-this-dir)) | |
3775 (ange-ftp-real-file-name-all-completions file ange-ftp-this-dir))))) | |
3776 | |
3777 (defun ange-ftp-file-name-completion (file dir) | |
3778 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3779 (if (ange-ftp-ftp-name ange-ftp-this-dir) |
1106 | 3780 (progn |
3781 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3782 (if (equal file "") | |
3783 "" | |
3784 (setq ange-ftp-this-dir | |
3785 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) ;real? | |
3786 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3787 (ange-ftp-completion-ignored-pattern | |
3788 (mapconcat (function | |
3789 (lambda (s) (if (stringp s) | |
3790 (concat (regexp-quote s) "$") | |
3791 "/"))) ; / never in filename | |
3792 completion-ignored-extensions | |
3793 "\\|"))) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
3794 (save-match-data |
1106 | 3795 (or (ange-ftp-file-name-completion-1 |
3796 file tbl ange-ftp-this-dir | |
3797 (function ange-ftp-file-entry-not-ignored-p)) | |
3798 (ange-ftp-file-name-completion-1 | |
3799 file tbl ange-ftp-this-dir | |
3800 (function ange-ftp-file-entry-active-p))))))) | |
3801 | |
22395
4f8f06912912
(ange-ftp-file-name-completion): Do hostname
Richard M. Stallman <rms@gnu.org>
parents:
22278
diff
changeset
|
3802 (if (or (and (eq system-type 'windows-nt) |
4f8f06912912
(ange-ftp-file-name-completion): Do hostname
Richard M. Stallman <rms@gnu.org>
parents:
22278
diff
changeset
|
3803 (string-match "^[a-zA-Z]:[/\\]$" ange-ftp-this-dir)) |
4f8f06912912
(ange-ftp-file-name-completion): Do hostname
Richard M. Stallman <rms@gnu.org>
parents:
22278
diff
changeset
|
3804 (string-equal "/" ange-ftp-this-dir)) |
1106 | 3805 (try-completion |
3806 file | |
3807 (nconc (ange-ftp-generate-root-prefixes) | |
3808 (mapcar 'list | |
22401
13df619ccc57
(ange-ftp-file-name-completion): Use ange-ftp-this-dir instead of
Richard M. Stallman <rms@gnu.org>
parents:
22395
diff
changeset
|
3809 (ange-ftp-real-file-name-all-completions |
13df619ccc57
(ange-ftp-file-name-completion): Use ange-ftp-this-dir instead of
Richard M. Stallman <rms@gnu.org>
parents:
22395
diff
changeset
|
3810 file ange-ftp-this-dir)))) |
1106 | 3811 (ange-ftp-real-file-name-completion file ange-ftp-this-dir))))) |
3812 | |
3813 | |
3814 (defun ange-ftp-file-name-completion-1 (file tbl dir predicate) | |
3815 (let ((bestmatch (try-completion file tbl predicate))) | |
3816 (if bestmatch | |
3817 (if (eq bestmatch t) | |
3818 (if (file-directory-p (expand-file-name file dir)) | |
3819 (concat file "/") | |
3820 t) | |
3821 (if (and (eq (try-completion bestmatch tbl predicate) t) | |
3822 (file-directory-p | |
3823 (expand-file-name bestmatch dir))) | |
3824 (concat bestmatch "/") | |
3825 bestmatch))))) | |
3826 | |
3827 ;; Put these lines uncommmented in your .emacs if you want C-r to refresh | |
3828 ;; ange-ftp's cache whilst doing filename completion. | |
3829 ;; | |
3830 ;;(define-key minibuffer-local-completion-map "\C-r" 'ange-ftp-re-read-dir) | |
3831 ;;(define-key minibuffer-local-must-match-map "\C-r" 'ange-ftp-re-read-dir) | |
3832 | |
22797
2311a799a981
(ange-ftp-reread-dir): Renamed from `re-read'.
Richard M. Stallman <rms@gnu.org>
parents:
22642
diff
changeset
|
3833 ;; The autoload cookie is to make sure the doc is always available. |
22818
3c30de5e4f1d
Quote ange-ftp-reread-dir in autoload cookie.
Kenichi Handa <handa@m17n.org>
parents:
22797
diff
changeset
|
3834 ;;;###autoload (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) |
22797
2311a799a981
(ange-ftp-reread-dir): Renamed from `re-read'.
Richard M. Stallman <rms@gnu.org>
parents:
22642
diff
changeset
|
3835 ;;;###autoload |
2311a799a981
(ange-ftp-reread-dir): Renamed from `re-read'.
Richard M. Stallman <rms@gnu.org>
parents:
22642
diff
changeset
|
3836 (defun ange-ftp-reread-dir (&optional dir) |
2311a799a981
(ange-ftp-reread-dir): Renamed from `re-read'.
Richard M. Stallman <rms@gnu.org>
parents:
22642
diff
changeset
|
3837 "Reread remote directory DIR to update the directory cache. |
2311a799a981
(ange-ftp-reread-dir): Renamed from `re-read'.
Richard M. Stallman <rms@gnu.org>
parents:
22642
diff
changeset
|
3838 The implementation of remote ftp file names caches directory contents |
2311a799a981
(ange-ftp-reread-dir): Renamed from `re-read'.
Richard M. Stallman <rms@gnu.org>
parents:
22642
diff
changeset
|
3839 for speed. Therefore, when new remote files are created, Emacs |
2311a799a981
(ange-ftp-reread-dir): Renamed from `re-read'.
Richard M. Stallman <rms@gnu.org>
parents:
22642
diff
changeset
|
3840 may not know they exist. You can use this command to reread a specific |
2311a799a981
(ange-ftp-reread-dir): Renamed from `re-read'.
Richard M. Stallman <rms@gnu.org>
parents:
22642
diff
changeset
|
3841 directory, so that Emacs will know its current contents." |
1106 | 3842 (interactive) |
3843 (if dir | |
3844 (setq dir (expand-file-name dir)) | |
3845 (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
|
3846 (if (ange-ftp-ftp-name dir) |
1106 | 3847 (progn |
3848 (setq ange-ftp-ls-cache-file nil) | |
3849 (ange-ftp-del-hash-entry dir ange-ftp-files-hashtable) | |
3850 (ange-ftp-get-files dir t)))) | |
3851 | |
3611
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3852 (defun ange-ftp-make-directory (dir &optional parents) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3853 (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
|
3854 (if parents |
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3855 (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
|
3856 (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
|
3857 (ange-ftp-make-directory parent parents)))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3858 (if (file-exists-p dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3859 (error "Cannot make directory %s: file already exists" dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3860 (let ((parsed (ange-ftp-ftp-name dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3861 (if parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3862 (let* ((host (nth 0 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3863 (user (nth 1 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3864 ;; Some ftp's on unix machines (at least on Suns) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3865 ;; insist that mkdir take a filename, and not a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3866 ;; 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
|
3867 ;; Non-unix machines will probably always insist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3868 ;; that mkdir takes a directory-name as an arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3869 ;; (as the ftp man page says it should). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3870 (name (ange-ftp-quote-string |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3871 (if (eq (ange-ftp-host-type host) 'unix) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3872 (ange-ftp-real-directory-file-name (nth 2 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3873 (ange-ftp-real-file-name-as-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3874 (nth 2 parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3875 (abbr (ange-ftp-abbreviate-filename dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3876 (result (ange-ftp-send-cmd host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3877 (list 'mkdir name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3878 (format "Making directory %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3879 abbr)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3880 (or (car result) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3881 (ange-ftp-error host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3882 (format "Could not make directory %s: %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3883 dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3884 (cdr result)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3885 (ange-ftp-add-file-entry dir t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3886 (ange-ftp-real-make-directory dir))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3887 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3888 (defun ange-ftp-delete-directory (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3889 (if (file-directory-p dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3890 (let ((parsed (ange-ftp-ftp-name dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3891 (if parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3892 (let* ((host (nth 0 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3893 (user (nth 1 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3894 ;; Some ftp's on unix machines (at least on Suns) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3895 ;; insist that rmdir take a filename, and not a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3896 ;; 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
|
3897 ;; Non-unix machines will probably always insist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3898 ;; that rmdir takes a directory-name as an arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3899 ;; (as the ftp man page says it should). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3900 (name (ange-ftp-quote-string |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3901 (if (eq (ange-ftp-host-type host) 'unix) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3902 (ange-ftp-real-directory-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3903 (nth 2 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3904 (ange-ftp-real-file-name-as-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3905 (nth 2 parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3906 (abbr (ange-ftp-abbreviate-filename dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3907 (result (ange-ftp-send-cmd host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3908 (list 'rmdir name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3909 (format "Removing directory %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3910 abbr)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3911 (or (car result) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3912 (ange-ftp-error host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3913 (format "Could not remove directory %s: %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3914 dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3915 (cdr result)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3916 (ange-ftp-delete-file-entry dir t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3917 (ange-ftp-real-delete-directory dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3918 (error "Not a directory: %s" dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3919 |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3920 ;; Make a local copy of FILE and return its name. |
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3921 |
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3922 (defun ange-ftp-file-local-copy (file) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3923 (let* ((fn1 (expand-file-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3924 (pa1 (ange-ftp-ftp-name fn1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3925 (if pa1 |
10748
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3926 (let ((tmp1 (ange-ftp-make-tmp-name (car pa1)))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3927 (ange-ftp-copy-file-internal fn1 tmp1 t nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3928 (format "Getting %s" fn1)) |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3929 tmp1)))) |
3532
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
3930 |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3931 (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
|
3932 (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
|
3933 (let ((tryfiles (if nosuffix |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3934 (list file) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3935 (list (concat file ".elc") (concat file ".el") file))) |
24912
15cba2bd779a
(ange-ftp-load): Bind load-force-doc-strings to t,
Andrew Innes <andrewi@gnu.org>
parents:
24818
diff
changeset
|
3936 ;; make sure there are no references to temp files |
15cba2bd779a
(ange-ftp-load): Bind load-force-doc-strings to t,
Andrew Innes <andrewi@gnu.org>
parents:
24818
diff
changeset
|
3937 (load-force-doc-strings t) |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3938 copy) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3939 (while (and tryfiles (not copy)) |
16876
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3940 (catch 'ftp-error |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3941 (let ((ange-ftp-waiting-flag t)) |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3942 (condition-case error |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3943 (setq copy (ange-ftp-file-local-copy (car tryfiles))) |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3944 (ftp-error nil)))) |
13789
7ccb22bca972
(ange-ftp-load): Added missing form to `cdr' down
Karl Heuer <kwzh@gnu.org>
parents:
13594
diff
changeset
|
3945 (setq tryfiles (cdr tryfiles))) |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3946 (if copy |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3947 (unwind-protect |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3948 (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
|
3949 (delete-file copy)) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3950 (or noerror |
16916
49435b5ecb29
(ange-ftp-load): If fail, return nil.
Richard M. Stallman <rms@gnu.org>
parents:
16876
diff
changeset
|
3951 (signal 'file-error (list "Cannot open load file" file))) |
49435b5ecb29
(ange-ftp-load): If fail, return nil.
Richard M. Stallman <rms@gnu.org>
parents:
16876
diff
changeset
|
3952 nil)) |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3953 (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
|
3954 |
1670
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3955 ;; 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
|
3956 (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
|
3957 (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
|
3958 |
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3959 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3960 ;; Need the following functions for making filenames of compressed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3961 ;; 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
|
3962 ;; have two extensions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3963 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3964 (defvar ange-ftp-make-compressed-filename-alist nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3965 "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
|
3966 Each element has the form (TYPE . FUNC). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3967 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
|
3968 of the form (COMPRESSING NEWNAME). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3969 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
|
3970 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
|
3971 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
|
3972 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3973 (defun ange-ftp-dired-compress-file (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3974 (let ((parsed (ange-ftp-ftp-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3975 conversion-func) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3976 (if (and parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3977 (setq conversion-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3978 (cdr (assq (ange-ftp-host-type (car parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3979 ange-ftp-make-compressed-filename-alist)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3980 (let* ((decision |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
3981 (save-match-data (funcall conversion-func name))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3982 (compressing (car decision)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3983 (newfile (nth 1 decision))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3984 (if compressing |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3985 (ange-ftp-compress name newfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3986 (ange-ftp-uncompress name newfile))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3987 (let (file-name-handler-alist) |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
3988 (dired-compress-file name))))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3989 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3990 ;; 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
|
3991 (defun ange-ftp-compress (file nfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3992 (let* ((parsed (ange-ftp-ftp-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3993 (tmp1 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3994 (tmp2 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3995 (abbr (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3996 (nabbr (ange-ftp-abbreviate-filename nfile)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3997 (msg1 (format "Getting %s" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3998 (msg2 (format "Putting %s" nabbr))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3999 (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4000 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4001 (ange-ftp-copy-file-internal file tmp1 t nil msg1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4002 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4003 (ange-ftp-message "Compressing %s..." abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4004 (call-process-region (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4005 (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4006 shell-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4007 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4008 t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4009 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4010 "-c" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4011 (format "compress -f -c < %s > %s" tmp1 tmp2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4012 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4013 (ange-ftp-message "Compressing %s...done" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4014 (if (zerop (buffer-size)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4015 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4016 (let (ange-ftp-process-verbose) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4017 (delete-file file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4018 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4019 (ange-ftp-del-tmp-name tmp1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4020 (ange-ftp-del-tmp-name tmp2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4021 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4022 ;; 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
|
4023 (defun ange-ftp-uncompress (file nfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4024 (let* ((parsed (ange-ftp-ftp-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4025 (tmp1 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4026 (tmp2 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4027 (abbr (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4028 (nabbr (ange-ftp-abbreviate-filename nfile)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4029 (msg1 (format "Getting %s" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4030 (msg2 (format "Putting %s" nabbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4031 ;; ;; Cheap hack because of problems with binary file transfers from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4032 ;; ;; VMS hosts. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4033 ;; (gbinary (not (eq 'vms (ange-ftp-host-type (car parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4034 ) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4035 (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4036 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4037 (ange-ftp-copy-file-internal file tmp1 t nil msg1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4038 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4039 (ange-ftp-message "Uncompressing %s..." abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4040 (call-process-region (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4041 (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4042 shell-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4043 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4044 t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4045 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4046 "-c" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4047 (format "uncompress -c < %s > %s" tmp1 tmp2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4048 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4049 (ange-ftp-message "Uncompressing %s...done" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4050 (if (zerop (buffer-size)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4051 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4052 (let (ange-ftp-process-verbose) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4053 (delete-file file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4054 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4055 (ange-ftp-del-tmp-name tmp1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4056 (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
|
4057 |
8b26137996f9
(ange-ftp-set-buffer-mode): Don't set make-backup-files.
Richard M. Stallman <rms@gnu.org>
parents:
10244
diff
changeset
|
4058 (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
|
4059 ;; 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
|
4060 ;; 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
|
4061 (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
|
4062 (ange-ftp-real-find-backup-file-name fn))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4063 |
1106 | 4064 ;;; Define the handler for special file names |
4065 ;;; that causes ange-ftp to be invoked. | |
4066 | |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4067 ;;;###autoload |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4068 (defun ange-ftp-hook-function (operation &rest args) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4069 (let ((fn (get operation 'ange-ftp))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4070 (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
|
4071 (ange-ftp-run-real-handler operation args)))) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4072 |
3893
d04e12f9153f
* ange-ftp.el: Loosen file-name-handler-alist regexp so we can do
Jim Blandy <jimb@redhat.com>
parents:
3831
diff
changeset
|
4073 |
d04e12f9153f
* ange-ftp.el: Loosen file-name-handler-alist regexp so we can do
Jim Blandy <jimb@redhat.com>
parents:
3831
diff
changeset
|
4074 ;;; 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
|
4075 ;;; 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
|
4076 ;;; 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
|
4077 ;;;###autoload |
21822
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4078 (or (assoc "^/[^/:]*[^/:.]:" file-name-handler-alist) |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4079 (setq file-name-handler-alist |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4080 (cons '("^/[^/:]*[^/:.]:" . ange-ftp-hook-function) |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4081 file-name-handler-alist))) |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4082 |
22395
4f8f06912912
(ange-ftp-file-name-completion): Do hostname
Richard M. Stallman <rms@gnu.org>
parents:
22278
diff
changeset
|
4083 ;;; This regexp recognizes absolute filenames with only one component, |
4185
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
4084 ;;; 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
|
4085 ;;;###autoload |
21822
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4086 (or (assoc "^/[^/:]*\\'" file-name-handler-alist) |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4087 (setq file-name-handler-alist |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4088 (cons '("^/[^/:]*\\'" . ange-ftp-completion-hook-function) |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4089 file-name-handler-alist))) |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4090 |
22395
4f8f06912912
(ange-ftp-file-name-completion): Do hostname
Richard M. Stallman <rms@gnu.org>
parents:
22278
diff
changeset
|
4091 ;;; This regexp recognizes absolute filenames with only one component |
4f8f06912912
(ange-ftp-file-name-completion): Do hostname
Richard M. Stallman <rms@gnu.org>
parents:
22278
diff
changeset
|
4092 ;;; on Windows, for the sake of hostname completion. |
4f8f06912912
(ange-ftp-file-name-completion): Do hostname
Richard M. Stallman <rms@gnu.org>
parents:
22278
diff
changeset
|
4093 ;;; NB. Do not mark this as autoload, because it is very common to |
4f8f06912912
(ange-ftp-file-name-completion): Do hostname
Richard M. Stallman <rms@gnu.org>
parents:
22278
diff
changeset
|
4094 ;;; do completions in the root directory of drives on Windows. |
21822
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4095 (and (memq system-type '(ms-dos windows-nt)) |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4096 (or (assoc "^[a-zA-Z]:/[^/:]*\\'" file-name-handler-alist) |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4097 (setq file-name-handler-alist |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4098 (cons '("^[a-zA-Z]:/[^/:]*\\'" . |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4099 ange-ftp-completion-hook-function) |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4100 file-name-handler-alist)))) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4101 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4102 ;;; 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
|
4103 ;;; 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
|
4104 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4105 ;;; This sets the mode |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4106 (or (memq 'ange-ftp-set-buffer-mode find-file-hooks) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4107 (setq find-file-hooks |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4108 (cons 'ange-ftp-set-buffer-mode find-file-hooks))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4109 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4110 ;;; Now say where to find the handlers for particular operations. |
1106 | 4111 |
4112 (put 'file-name-directory 'ange-ftp 'ange-ftp-file-name-directory) | |
4113 (put 'file-name-nondirectory 'ange-ftp 'ange-ftp-file-name-nondirectory) | |
4114 (put 'file-name-as-directory 'ange-ftp 'ange-ftp-file-name-as-directory) | |
4115 (put 'directory-file-name 'ange-ftp 'ange-ftp-directory-file-name) | |
4116 (put 'expand-file-name 'ange-ftp 'ange-ftp-expand-file-name) | |
4117 (put 'make-directory 'ange-ftp 'ange-ftp-make-directory) | |
4118 (put 'delete-directory 'ange-ftp 'ange-ftp-delete-directory) | |
4119 (put 'insert-file-contents 'ange-ftp 'ange-ftp-insert-file-contents) | |
4120 (put 'directory-files 'ange-ftp 'ange-ftp-directory-files) | |
4121 (put 'file-directory-p 'ange-ftp 'ange-ftp-file-directory-p) | |
4122 (put 'file-writable-p 'ange-ftp 'ange-ftp-file-writable-p) | |
4123 (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
|
4124 (put 'file-executable-p 'ange-ftp 'ange-ftp-file-executable-p) |
1106 | 4125 (put 'file-symlink-p 'ange-ftp 'ange-ftp-file-symlink-p) |
4126 (put 'delete-file 'ange-ftp 'ange-ftp-delete-file) | |
4127 (put 'read-file-name-internal 'ange-ftp 'ange-ftp-read-file-name-internal) | |
4128 (put 'verify-visited-file-modtime 'ange-ftp | |
4129 'ange-ftp-verify-visited-file-modtime) | |
4130 (put 'file-exists-p 'ange-ftp 'ange-ftp-file-exists-p) | |
4131 (put 'write-region 'ange-ftp 'ange-ftp-write-region) | |
4132 (put 'backup-buffer 'ange-ftp 'ange-ftp-backup-buffer) | |
4133 (put 'copy-file 'ange-ftp 'ange-ftp-copy-file) | |
4134 (put 'rename-file 'ange-ftp 'ange-ftp-rename-file) | |
4135 (put 'file-attributes 'ange-ftp 'ange-ftp-file-attributes) | |
4136 (put 'file-name-all-completions 'ange-ftp 'ange-ftp-file-name-all-completions) | |
4137 (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
|
4138 (put 'insert-directory 'ange-ftp 'ange-ftp-insert-directory) |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
4139 (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
|
4140 (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
|
4141 'ange-ftp-unhandled-file-name-directory) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4142 (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
|
4143 (put 'dired-uncache 'ange-ftp 'ange-ftp-dired-uncache) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4144 (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
|
4145 (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
|
4146 (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
|
4147 |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
4148 ;; 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
|
4149 ;; 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
|
4150 (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
|
4151 |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
4152 ;; 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
|
4153 ;; 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
|
4154 (put 'vc-registered 'ange-ftp 'null) |
14634
c7dfe102acc3
(dired-call-process): Put on ange-ftp property.
Karl Heuer <kwzh@gnu.org>
parents:
14572
diff
changeset
|
4155 |
c7dfe102acc3
(dired-call-process): Put on ange-ftp property.
Karl Heuer <kwzh@gnu.org>
parents:
14572
diff
changeset
|
4156 (put 'dired-call-process 'ange-ftp 'ange-ftp-dired-call-process) |
21278 | 4157 (put 'shell-command 'ange-ftp 'ange-ftp-shell-command) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4158 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4159 ;;; Define ways of getting at unmodified Emacs primitives, |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4160 ;;; turning off our handler. |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4161 |
7042 | 4162 (defun ange-ftp-run-real-handler (operation args) |
4163 (let ((inhibit-file-name-handlers | |
4164 (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
|
4165 (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
|
4166 (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
|
4167 inhibit-file-name-handlers)))) |
7042 | 4168 (inhibit-file-name-operation operation)) |
4169 (apply operation args))) | |
4170 | |
1106 | 4171 (defun ange-ftp-real-file-name-directory (&rest args) |
7042 | 4172 (ange-ftp-run-real-handler 'file-name-directory args)) |
1106 | 4173 (defun ange-ftp-real-file-name-nondirectory (&rest args) |
7042 | 4174 (ange-ftp-run-real-handler 'file-name-nondirectory args)) |
1106 | 4175 (defun ange-ftp-real-file-name-as-directory (&rest args) |
7042 | 4176 (ange-ftp-run-real-handler 'file-name-as-directory args)) |
1106 | 4177 (defun ange-ftp-real-directory-file-name (&rest args) |
7042 | 4178 (ange-ftp-run-real-handler 'directory-file-name args)) |
1106 | 4179 (defun ange-ftp-real-expand-file-name (&rest args) |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
4180 (ange-ftp-run-real-handler 'expand-file-name args)) |
1106 | 4181 (defun ange-ftp-real-make-directory (&rest args) |
7042 | 4182 (ange-ftp-run-real-handler 'make-directory args)) |
1106 | 4183 (defun ange-ftp-real-delete-directory (&rest args) |
7042 | 4184 (ange-ftp-run-real-handler 'delete-directory args)) |
1106 | 4185 (defun ange-ftp-real-insert-file-contents (&rest args) |
7042 | 4186 (ange-ftp-run-real-handler 'insert-file-contents args)) |
1106 | 4187 (defun ange-ftp-real-directory-files (&rest args) |
7042 | 4188 (ange-ftp-run-real-handler 'directory-files args)) |
1106 | 4189 (defun ange-ftp-real-file-directory-p (&rest args) |
7042 | 4190 (ange-ftp-run-real-handler 'file-directory-p args)) |
1106 | 4191 (defun ange-ftp-real-file-writable-p (&rest args) |
7042 | 4192 (ange-ftp-run-real-handler 'file-writable-p args)) |
1106 | 4193 (defun ange-ftp-real-file-readable-p (&rest args) |
7042 | 4194 (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
|
4195 (defun ange-ftp-real-file-executable-p (&rest args) |
7042 | 4196 (ange-ftp-run-real-handler 'file-executable-p args)) |
1106 | 4197 (defun ange-ftp-real-file-symlink-p (&rest args) |
7042 | 4198 (ange-ftp-run-real-handler 'file-symlink-p args)) |
1106 | 4199 (defun ange-ftp-real-delete-file (&rest args) |
7042 | 4200 (ange-ftp-run-real-handler 'delete-file args)) |
1106 | 4201 (defun ange-ftp-real-read-file-name-internal (&rest args) |
7042 | 4202 (ange-ftp-run-real-handler 'read-file-name-internal args)) |
1106 | 4203 (defun ange-ftp-real-verify-visited-file-modtime (&rest args) |
7042 | 4204 (ange-ftp-run-real-handler 'verify-visited-file-modtime args)) |
1106 | 4205 (defun ange-ftp-real-file-exists-p (&rest args) |
7042 | 4206 (ange-ftp-run-real-handler 'file-exists-p args)) |
1106 | 4207 (defun ange-ftp-real-write-region (&rest args) |
7042 | 4208 (ange-ftp-run-real-handler 'write-region args)) |
1106 | 4209 (defun ange-ftp-real-backup-buffer (&rest args) |
7042 | 4210 (ange-ftp-run-real-handler 'backup-buffer args)) |
1106 | 4211 (defun ange-ftp-real-copy-file (&rest args) |
7042 | 4212 (ange-ftp-run-real-handler 'copy-file args)) |
1106 | 4213 (defun ange-ftp-real-rename-file (&rest args) |
7042 | 4214 (ange-ftp-run-real-handler 'rename-file args)) |
1106 | 4215 (defun ange-ftp-real-file-attributes (&rest args) |
7042 | 4216 (ange-ftp-run-real-handler 'file-attributes args)) |
1106 | 4217 (defun ange-ftp-real-file-name-all-completions (&rest args) |
7042 | 4218 (ange-ftp-run-real-handler 'file-name-all-completions args)) |
1106 | 4219 (defun ange-ftp-real-file-name-completion (&rest args) |
7042 | 4220 (ange-ftp-run-real-handler 'file-name-completion args)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4221 (defun ange-ftp-real-insert-directory (&rest args) |
7042 | 4222 (ange-ftp-run-real-handler 'insert-directory args)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4223 (defun ange-ftp-real-file-name-sans-versions (&rest args) |
7042 | 4224 (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
|
4225 (defun ange-ftp-real-shell-command (&rest args) |
7042 | 4226 (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
|
4227 (defun ange-ftp-real-load (&rest args) |
7042 | 4228 (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
|
4229 (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
|
4230 (ange-ftp-run-real-handler 'find-backup-file-name args)) |
1106 | 4231 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4232 ;; Here we support using dired on remote hosts. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4233 ;; 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
|
4234 ;; That involves too many unclean hooks. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4235 ;; It would be cleaner to support such operations by |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4236 ;; converting the foreign directory format to something dired can understand; |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4237 ;; something close to ls -l output. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4238 ;; 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
|
4239 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4240 ;; 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
|
4241 ;; I have preserved (and modernized) those hooks. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4242 ;; So the format conversion should be all that is needed. |
1106 | 4243 |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4244 (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
|
4245 (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
|
4246 (parsed (ange-ftp-ftp-name (expand-file-name file)))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4247 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4248 (insert |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4249 (if wildcard |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4250 (let ((default-directory (file-name-directory file))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4251 (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
|
4252 (ange-ftp-ls file switches full))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4253 (ange-ftp-real-insert-directory file switches wildcard full)))) |
1106 | 4254 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4255 (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
|
4256 (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
|
4257 (setq ange-ftp-ls-cache-file nil))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4258 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4259 (defvar ange-ftp-sans-version-alist nil |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4260 "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
|
4261 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4262 (defun ange-ftp-file-name-sans-versions (file keep-backup-version) |
23052
39b3f4c74b93
(ange-ftp-file-name-sans-versions): Don't return
Richard M. Stallman <rms@gnu.org>
parents:
22818
diff
changeset
|
4263 (let* ((short (ange-ftp-abbreviate-filename file)) |
39b3f4c74b93
(ange-ftp-file-name-sans-versions): Don't return
Richard M. Stallman <rms@gnu.org>
parents:
22818
diff
changeset
|
4264 (parsed (ange-ftp-ftp-name short)) |
39b3f4c74b93
(ange-ftp-file-name-sans-versions): Don't return
Richard M. Stallman <rms@gnu.org>
parents:
22818
diff
changeset
|
4265 host-type func) |
1106 | 4266 (if parsed |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4267 (setq host-type (ange-ftp-host-type (car parsed)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4268 func (cdr (assq (ange-ftp-host-type (car parsed)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4269 ange-ftp-sans-version-alist)))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4270 (if func (funcall func file keep-backup-version) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4271 (ange-ftp-real-file-name-sans-versions file keep-backup-version)))) |
1106 | 4272 |
21278 | 4273 ;; This is the handler for shell-command. |
24818
6486c94c16ae
(ange-ftp-shell-command): Handle error-buffer arg.
Karl Heuer <kwzh@gnu.org>
parents:
23840
diff
changeset
|
4274 (defun ange-ftp-shell-command (command &optional output-buffer error-buffer) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4275 (let* ((parsed (ange-ftp-ftp-name default-directory)) |
1106 | 4276 (host (nth 0 parsed)) |
4277 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4278 (name (nth 2 parsed))) |
1106 | 4279 (if (not parsed) |
24818
6486c94c16ae
(ange-ftp-shell-command): Handle error-buffer arg.
Karl Heuer <kwzh@gnu.org>
parents:
23840
diff
changeset
|
4280 (ange-ftp-real-shell-command command output-buffer error-buffer) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4281 (if (> (length name) 0) ; else it's $HOME |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4282 (setq command (concat "cd " name "; " command))) |
1106 | 4283 (setq command |
4284 (format "%s %s \"%s\"" ; remsh -l USER does not work well | |
4285 ; 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
|
4286 remote-shell-program host command)) |
1106 | 4287 (ange-ftp-message "Remote command '%s' ..." command) |
4288 ;; Cannot call ange-ftp-real-dired-run-shell-command here as it | |
4289 ;; would prepend "cd default-directory" --- which bombs because | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4290 ;; default-directory is in ange-ftp syntax for remote file names. |
24818
6486c94c16ae
(ange-ftp-shell-command): Handle error-buffer arg.
Karl Heuer <kwzh@gnu.org>
parents:
23840
diff
changeset
|
4291 (ange-ftp-real-shell-command command output-buffer error-buffer)))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4292 |
14634
c7dfe102acc3
(dired-call-process): Put on ange-ftp property.
Karl Heuer <kwzh@gnu.org>
parents:
14572
diff
changeset
|
4293 ;;; This is the handler for call-process. |
1106 | 4294 (defun ange-ftp-dired-call-process (program discard &rest arguments) |
4295 ;; PROGRAM is always one of those below in the cond in dired.el. | |
4296 ;; The ARGUMENTS are (nearly) always files. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4297 (if (ange-ftp-ftp-name default-directory) |
1106 | 4298 ;; Can't use ange-ftp-dired-host-type here because the current |
4299 ;; buffer is *dired-check-process output* | |
4300 (condition-case oops | |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
4301 (cond ((equal dired-chmod-program program) |
1106 | 4302 (ange-ftp-call-chmod arguments)) |
4303 ;; ((equal "chgrp" program)) | |
4304 ;; ((equal dired-chown-program program)) | |
4305 (t (error "Unknown remote command: %s" program))) | |
4306 (ftp-error (insert (format "%s: %s, %s\n" | |
4307 (nth 1 oops) | |
4308 (nth 2 oops) | |
14869
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4309 (nth 3 oops))) |
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4310 ;; Caller expects nonzero value to mean failure. |
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4311 1) |
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4312 (error (insert (format "%s\n" (nth 1 oops))) |
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4313 1)) |
1106 | 4314 (apply 'call-process program nil (not discard) nil arguments))) |
4315 | |
14869
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4316 (defvar ange-ftp-remote-shell "rsh" |
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4317 "Remote shell to use for chmod, if FTP server rejects the `chmod' command.") |
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4318 |
14868
cca4562fbafd
(ange-ftp-call-chmod): Return proper value.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
4319 ;; Handle an attempt to run chmod on a remote file |
cca4562fbafd
(ange-ftp-call-chmod): Return proper value.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
4320 ;; by using the ftp chmod command. |
1106 | 4321 (defun ange-ftp-call-chmod (args) |
4322 (if (< (length args) 2) | |
4323 (error "ange-ftp-call-chmod: missing mode and/or filename: %s" args)) | |
21026
e01ca278ca3e
(ange-ftp-call-chmod): Don't try to chmod file `--'.
Richard M. Stallman <rms@gnu.org>
parents:
20692
diff
changeset
|
4324 (let ((mode (car args)) |
e01ca278ca3e
(ange-ftp-call-chmod): Don't try to chmod file `--'.
Richard M. Stallman <rms@gnu.org>
parents:
20692
diff
changeset
|
4325 (rest (cdr args))) |
e01ca278ca3e
(ange-ftp-call-chmod): Don't try to chmod file `--'.
Richard M. Stallman <rms@gnu.org>
parents:
20692
diff
changeset
|
4326 (if (equal "--" (car rest)) |
e01ca278ca3e
(ange-ftp-call-chmod): Don't try to chmod file `--'.
Richard M. Stallman <rms@gnu.org>
parents:
20692
diff
changeset
|
4327 (setq rest (cdr rest))) |
1106 | 4328 (mapcar |
4329 (function | |
4330 (lambda (file) | |
4331 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4332 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 4333 (if parsed |
4334 (let* ((host (nth 0 parsed)) | |
4335 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4336 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 4337 (abbr (ange-ftp-abbreviate-filename file)) |
4338 (result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4339 (list 'chmod mode name) |
1106 | 4340 (format "doing chmod %s" |
4341 abbr)))) | |
4342 (or (car result) | |
14869
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4343 (call-process |
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4344 ange-ftp-remote-shell |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
4345 nil t nil host dired-chmod-program mode name))))))) |
21026
e01ca278ca3e
(ange-ftp-call-chmod): Don't try to chmod file `--'.
Richard M. Stallman <rms@gnu.org>
parents:
20692
diff
changeset
|
4346 rest)) |
14868
cca4562fbafd
(ange-ftp-call-chmod): Return proper value.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
4347 (setq ange-ftp-ls-cache-file nil) ;Stop confusing Dired. |
cca4562fbafd
(ange-ftp-call-chmod): Return proper value.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
4348 0) |
1106 | 4349 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4350 ;;; 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
|
4351 ;;; with dired. It could be reasonable to adapt this to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4352 ;;; replace ange-ftp-copy-file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4353 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4354 ;;;;; ------------------------------------------------------------ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4355 ;;;;; Noddy support for async copy-file within dired. |
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 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4358 ;;(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
|
4359 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4360 ;; (dired-handle-overwrite to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4361 ;; (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
|
4362 ;; cont nowait)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4363 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4364 ;;(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
|
4365 ;; &optional marker-char op1 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4366 ;; how-to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4367 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4368 ;; ;; 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
|
4369 ;; ;; called it rather than somebody else. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4370 ;; (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
|
4371 ;; (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
|
4372 ;; arg marker-char op1 how-to))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4373 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4374 ;;(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
|
4375 ;; &optional marker-char) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4376 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4377 ;; (if (and (boundp 'ange-ftp-dired-do-create-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4378 ;; ;; called from ange-ftp-dired-do-create-files? |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4379 ;; ange-ftp-dired-do-create-files |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4380 ;; ;; any files worth copying? |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4381 ;; fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4382 ;; ;; we only support async copy-file at the mo. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4383 ;; (eq file-creator 'dired-copy-file) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4384 ;; ;; 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
|
4385 ;; ;; as we tie ourself in recursive knots otherwise. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4386 ;; (or (ange-ftp-ftp-name (car fn-list)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4387 ;; ;; 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
|
4388 ;; ;; since the one for regexps starts prompting here, there and |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4389 ;; ;; everywhere. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4390 ;; (ange-ftp-ftp-name (funcall name-constructor (car fn-list))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4391 ;; ;; 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
|
4392 ;; (ange-ftp-dcf-1 file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4393 ;; operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4394 ;; fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4395 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4396 ;; (and (boundp 'target) target) ;dynamically bound |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4397 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4398 ;; (current-buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4399 ;; nil ;overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4400 ;; nil ;overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4401 ;; nil ;failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4402 ;; nil ;skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4403 ;; 0 ;success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4404 ;; (length fn-list) ;total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4405 ;; ) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
4406 ;; ;; normal case... use the interactive routine... much cheaper. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4407 ;; (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
|
4408 ;; name-constructor marker-char))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4409 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4410 ;;(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
|
4411 ;; target marker-char buffer overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4412 ;; overwrite-backup-query failures skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4413 ;; success-count total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4414 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4415 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4416 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4417 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4418 ;; (if (null fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4419 ;; (ange-ftp-dcf-3 failures operation total skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4420 ;; success-count buffer) |
1106 | 4421 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4422 ;; (let* ((from (car fn-list)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4423 ;; (to (funcall name-constructor from))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4424 ;; (if (equal to from) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4425 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4426 ;; (setq to nil) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4427 ;; (dired-log "Cannot %s to same file: %s\n" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4428 ;; (downcase operation) from))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4429 ;; (if (not to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4430 ;; (ange-ftp-dcf-1 file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4431 ;; operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4432 ;; (cdr fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4433 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4434 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4435 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4436 ;; buffer |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4437 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4438 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4439 ;; failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4440 ;; (cons (dired-make-relative from) skipped) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4441 ;; success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4442 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4443 ;; (let* ((overwrite (file-exists-p to)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4444 ;; (overwrite-confirmed ; for dired-handle-overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4445 ;; (and overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4446 ;; (let ((help-form '(format "\ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4447 ;;Type SPC or `y' to overwrite file `%s', |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4448 ;;DEL or `n' to skip to next, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4449 ;;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
|
4450 ;;`!' to overwrite all remaining files with no more questions." to))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4451 ;; (dired-query 'overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4452 ;; "Overwrite `%s'?" to)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4453 ;; ;; must determine if FROM is marked before file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4454 ;; ;; 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
|
4455 ;; (actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4456 ;; (cond ((integerp marker-char) marker-char) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4457 ;; (marker-char (dired-file-marker from)) ; slow |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4458 ;; (t nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4459 ;; (condition-case err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4460 ;; (funcall file-creator from to overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4461 ;; (list (function ange-ftp-dcf-2) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4462 ;; nil ;err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4463 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4464 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4465 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4466 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4467 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4468 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4469 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4470 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4471 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4472 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4473 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4474 ;; t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4475 ;; (file-error ; FILE-CREATOR aborted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4476 ;; (ange-ftp-dcf-2 nil ;result |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4477 ;; nil ;line |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4478 ;; err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4479 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4480 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4481 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4482 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4483 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4484 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4485 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4486 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4487 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4488 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4489 ;; total)))))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4490 ;; (set-buffer old-buf)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4491 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4492 ;;(defun ange-ftp-dcf-2 (result line err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4493 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4494 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4495 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4496 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4497 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4498 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4499 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4500 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4501 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4502 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4503 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4504 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4505 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4506 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4507 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4508 ;; (if (or err (not result)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4509 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4510 ;; (setq failures (cons (dired-make-relative from) failures)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4511 ;; (dired-log "%s `%s' to `%s' failed:\n%s\n" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4512 ;; operation from to (or err line))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4513 ;; (if overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4514 ;; ;; If we get here, file-creator hasn't been aborted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4515 ;; ;; and the old entry (if any) has to be deleted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4516 ;; ;; before adding the new entry. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4517 ;; (dired-remove-file to)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4518 ;; (setq success-count (1+ success-count)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4519 ;; (message "%s: %d of %d" operation success-count total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4520 ;; (dired-add-file to actual-marker-char)) |
1106 | 4521 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4522 ;; (ange-ftp-dcf-1 file-creator operation (cdr fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4523 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4524 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4525 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4526 ;; buffer |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4527 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4528 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4529 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4530 ;; total)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4531 ;; (set-buffer old-buf)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4532 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4533 ;;(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
|
4534 ;; buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4535 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4536 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4537 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4538 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4539 ;; (cond |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4540 ;; (failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4541 ;; (dired-log-summary |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4542 ;; (message "%s failed for %d of %d file%s %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4543 ;; operation (length failures) total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4544 ;; (dired-plural-s total) failures))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4545 ;; (skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4546 ;; (dired-log-summary |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4547 ;; (message "%s: %d of %d file%s skipped %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4548 ;; operation (length skipped) total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4549 ;; (dired-plural-s total) skipped))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4550 ;; (t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4551 ;; (message "%s: %s file%s." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4552 ;; operation success-count (dired-plural-s success-count)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4553 ;; (dired-move-to-filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4554 ;; (set-buffer old-buf)))) |
1106 | 4555 |
4556 ;;;; ----------------------------------------------- | |
4557 ;;;; Unix Descriptive Listing (dl) Support | |
4558 ;;;; ----------------------------------------------- | |
4559 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4560 ;; This is turned off because nothing uses it currently |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4561 ;; 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
|
4562 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4563 ;;(defconst ange-ftp-dired-dl-re-dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4564 ;; "^. [^ /]+/[ \n]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4565 ;; "Regular expression to use to search for dl directories.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4566 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4567 ;;(or (assq 'unix:dl ange-ftp-dired-re-dir-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4568 ;; (setq ange-ftp-dired-re-dir-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4569 ;; (cons (cons 'unix:dl ange-ftp-dired-dl-re-dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4570 ;; ange-ftp-dired-re-dir-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4571 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4572 ;;(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
|
4573 ;; "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
|
4574 ;; ;; This is the Unix dl version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4575 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4576 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4577 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4578 ;; (if (looking-at ". [^ ]+ +\\([0-9]+\\|-\\|=\\) ") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4579 ;; (goto-char (+ (point) 2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4580 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4581 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4582 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4583 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4584 ;;(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
|
4585 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4586 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4587 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4588 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4589 ;;(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
|
4590 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4591 ;; ;; 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
|
4592 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4593 ;; ;; This is the Unix dl version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4594 ;; (let ((opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4595 ;; case-fold-search hidden) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4596 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4597 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4598 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4599 ;; (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4600 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4601 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4602 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4603 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4604 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4605 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4606 ;; (skip-chars-forward "^ /" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4607 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4608 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4609 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4610 ;; (error "No file on this line")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4611 ;; (point))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4612 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4613 ;;(or (assq '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
|
4614 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4615 ;; (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
|
4616 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 4617 |
4618 ;;;; ------------------------------------------------------------ | |
4619 ;;;; VOS support (VOS support is probably broken, | |
4620 ;;;; but I don't know anything about VOS.) | |
4621 ;;;; ------------------------------------------------------------ | |
4622 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4623 ;(defun ange-ftp-fix-name-for-vos (name &optional reverse) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4624 ; (setq name (copy-sequence name)) |
1106 | 4625 ; (let ((from (if reverse ?\> ?\/)) |
4626 ; (to (if reverse ?\/ ?\>)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4627 ; (i (1- (length name)))) |
1106 | 4628 ; (while (>= i 0) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4629 ; (if (= (aref name i) from) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4630 ; (aset name i to)) |
1106 | 4631 ; (setq i (1- i))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4632 ; name)) |
1106 | 4633 ; |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4634 ;(or (assq 'vos ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4635 ; (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4636 ; (cons '(vos . ange-ftp-fix-name-for-vos) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4637 ; ange-ftp-fix-name-func-alist))) |
1106 | 4638 ; |
4639 ;(or (memq 'vos ange-ftp-dumb-host-types) | |
4640 ; (setq ange-ftp-dumb-host-types | |
4641 ; (cons 'vos ange-ftp-dumb-host-types))) | |
4642 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4643 ;(defun ange-ftp-fix-dir-name-for-vos (dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4644 ; (ange-ftp-fix-name-for-vos |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4645 ; (concat dir-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4646 ; (if (eq ?/ (aref dir-name (1- (length dir-name)))) |
1106 | 4647 ; "" "/") |
4648 ; "*"))) | |
4649 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4650 ;(or (assq 'vos ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4651 ; (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4652 ; (cons '(vos . ange-ftp-fix-dir-name-for-vos) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4653 ; ange-ftp-fix-dir-name-func-alist))) |
1106 | 4654 ; |
4655 ;(defvar ange-ftp-vos-host-regexp nil | |
4656 ; "If a host matches this regexp then it is assumed to be running VOS.") | |
4657 ; | |
4658 ;(defun ange-ftp-vos-host (host) | |
4659 ; (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
|
4660 ; (save-match-data |
1106 | 4661 ; (string-match ange-ftp-vos-host-regexp host)))) |
4662 ; | |
4663 ;(defun ange-ftp-parse-vos-listing () | |
4664 ; "Parse the current buffer which is assumed to be in VOS list -all | |
4665 ;format, and return a hashtable as the result." | |
4666 ; (let ((tbl (ange-ftp-make-hashtable)) | |
4667 ; (type-list | |
4668 ; '(("^Files: [0-9]+ +Blocks: [0-9]+\n+" nil 40) | |
4669 ; ("^Dirs: [0-9]+\n+" t 30))) | |
4670 ; type-regexp type-is-dir type-col file) | |
4671 ; (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
4672 ; (save-match-data |
1106 | 4673 ; (while type-list |
4674 ; (setq type-regexp (car (car type-list)) | |
4675 ; type-is-dir (nth 1 (car type-list)) | |
4676 ; type-col (nth 2 (car type-list)) | |
4677 ; type-list (cdr type-list)) | |
4678 ; (if (re-search-forward type-regexp nil t) | |
4679 ; (while (eq (char-after (point)) ? ) | |
4680 ; (move-to-column type-col) | |
4681 ; (setq file (buffer-substring (point) | |
4682 ; (progn | |
4683 ; (end-of-line 1) | |
4684 ; (point)))) | |
4685 ; (ange-ftp-put-hash-entry file type-is-dir tbl) | |
4686 ; (forward-line 1)))) | |
4687 ; (ange-ftp-put-hash-entry "." 'vosdir tbl) | |
4688 ; (ange-ftp-put-hash-entry ".." 'vosdir tbl)) | |
4689 ; tbl)) | |
4690 ; | |
4691 ;(or (assq 'vos ange-ftp-parse-list-func-alist) | |
4692 ; (setq ange-ftp-parse-list-func-alist | |
4693 ; (cons '(vos . ange-ftp-parse-vos-listing) | |
4694 ; ange-ftp-parse-list-func-alist))) | |
4695 | |
4696 ;;;; ------------------------------------------------------------ | |
4697 ;;;; VMS support. | |
4698 ;;;; ------------------------------------------------------------ | |
4699 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4700 ;; 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
|
4701 ;; to UNIX-ish. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4702 (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
|
4703 (save-match-data |
1106 | 4704 (if reverse |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4705 (if (string-match "^\\([^:]+:\\)?\\(\\[.*\\]\\)?\\([^][]*\\)$" name) |
1106 | 4706 (let (drive dir file) |
4707 (if (match-beginning 1) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4708 (setq drive (substring name |
1106 | 4709 (match-beginning 1) |
4710 (match-end 1)))) | |
4711 (if (match-beginning 2) | |
4712 (setq dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4713 (substring name (match-beginning 2) (match-end 2)))) |
1106 | 4714 (if (match-beginning 3) |
4715 (setq file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4716 (substring name (match-beginning 3) (match-end 3)))) |
1106 | 4717 (and dir |
4718 (setq dir (apply (function concat) | |
4719 (mapcar (function | |
4720 (lambda (char) | |
4721 (if (= char ?.) | |
4722 (vector ?/) | |
4723 (vector char)))) | |
4724 (substring dir 1 -1))))) | |
4725 (concat (and drive | |
4726 (concat "/" drive "/")) | |
4727 dir (and dir "/") | |
4728 file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4729 (error "name %s didn't match" name)) |
1106 | 4730 (let (drive dir file tmp) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4731 (if (string-match "^/[^:]+:/" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4732 (setq drive (substring name 1 |
1106 | 4733 (1- (match-end 0))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4734 name (substring name (match-end 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4735 (setq tmp (file-name-directory name)) |
1106 | 4736 (if tmp |
4737 (setq dir (apply (function concat) | |
4738 (mapcar (function | |
4739 (lambda (char) | |
4740 (if (= char ?/) | |
4741 (vector ?.) | |
4742 (vector char)))) | |
4743 (substring tmp 0 -1))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4744 (setq file (file-name-nondirectory name)) |
1106 | 4745 (concat drive |
4746 (and dir (concat "[" (if drive nil ".") dir "]")) | |
4747 file))))) | |
4748 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4749 ;; (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
|
4750 ;; (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
|
4751 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4752 (or (assq 'vms ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4753 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4754 (cons '(vms . ange-ftp-fix-name-for-vms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4755 ange-ftp-fix-name-func-alist))) |
1106 | 4756 |
4757 (or (memq 'vms ange-ftp-dumb-host-types) | |
4758 (setq ange-ftp-dumb-host-types | |
4759 (cons 'vms ange-ftp-dumb-host-types))) | |
4760 | |
4761 ;; It is important that this function barf for directories for which we know | |
4762 ;; that we cannot possibly get a directory listing, such as "/" and "/DEV:/". | |
4763 ;; This is because it saves an unnecessary FTP error, or possibly the listing | |
4764 ;; might succeed, but give erroneous info. This last case is particularly | |
4765 ;; likely for OS's (like MTS) for which we need to use a wildcard in order | |
4766 ;; to list a directory. | |
4767 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4768 ;; 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
|
4769 (defun ange-ftp-fix-dir-name-for-vms (dir-name) |
1106 | 4770 ;; Should there be entries for .. -> [-] and . -> [] below. Don't |
4771 ;; think so, because expand-filename should have already short-circuited | |
4772 ;; them. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4773 (cond ((string-equal dir-name "/") |
1106 | 4774 (error "Cannot get listing for fictitious \"/\" directory.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4775 ((string-match "^/[-A-Z0-9_$]+:/$" dir-name) |
1106 | 4776 (error "Cannot get listing for device.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4777 ((ange-ftp-fix-name-for-vms dir-name)))) |
1106 | 4778 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4779 (or (assq 'vms ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4780 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4781 (cons '(vms . ange-ftp-fix-dir-name-for-vms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4782 ange-ftp-fix-dir-name-func-alist))) |
1106 | 4783 |
4784 (defvar ange-ftp-vms-host-regexp nil) | |
4785 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4786 ;; Return non-nil if HOST is running VMS. |
1106 | 4787 (defun ange-ftp-vms-host (host) |
4788 (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
|
4789 (save-match-data |
1106 | 4790 (string-match ange-ftp-vms-host-regexp host)))) |
4791 | |
4792 ;; Because some VMS ftp servers convert filenames to lower case | |
4793 ;; we allow a-z in the filename regexp. I'm not too happy about this. | |
4794 | |
4795 (defconst ange-ftp-vms-filename-regexp | |
4796 (concat | |
6309
9217f29851c2
Don't use triple-hyphen in a character class.
Karl Heuer <kwzh@gnu.org>
parents:
6192
diff
changeset
|
4797 "\\(\\([_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
|
4798 "[-_A-Za-z0-9$]*;+[0-9]*\\)") |
1106 | 4799 "Regular expression to match for a valid VMS file name in Dired buffer. |
4800 Stupid freaking bug! Position of _ and $ shouldn't matter but they do. | |
4801 Having [A-Z0-9$_] bombs on filename _$$CHANGE_LOG$.TXT$ and $CHANGE_LOG$.TX | |
4802 Other orders of $ and _ seem to all work just fine.") | |
4803 | |
4804 ;; These parsing functions are as general as possible because the syntax | |
4805 ;; of ftp listings from VMS hosts is a bit erratic. What saves us is that | |
4806 ;; the VMS filename syntax is so rigid. If they bomb on a listing in the | |
4807 ;; standard VMS Multinet format, then this is a bug. If they bomb on a listing | |
4808 ;; from vms.weird.net, then too bad. | |
4809 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4810 ;; Extract the next filename from a VMS dired-like listing. |
1106 | 4811 (defun ange-ftp-parse-vms-filename () |
4812 (if (re-search-forward | |
4813 ange-ftp-vms-filename-regexp | |
4814 nil t) | |
4815 (buffer-substring (match-beginning 0) (match-end 0)))) | |
4816 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4817 ;; 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
|
4818 ;; format, and return a hashtable as the result. |
1106 | 4819 (defun ange-ftp-parse-vms-listing () |
4820 (let ((tbl (ange-ftp-make-hashtable)) | |
4821 file) | |
4822 (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
4823 (save-match-data |
1106 | 4824 (while (setq file (ange-ftp-parse-vms-filename)) |
4825 (if (string-match "\\.\\(DIR\\|dir\\);[0-9]+" file) | |
4826 ;; deal with directories | |
4827 (ange-ftp-put-hash-entry | |
4828 (substring file 0 (match-beginning 0)) t tbl) | |
4829 (ange-ftp-put-hash-entry file nil tbl) | |
4830 (if (string-match ";[0-9]+$" file) ; deal with extension | |
4831 ;; sans extension | |
4832 (ange-ftp-put-hash-entry | |
4833 (substring file 0 (match-beginning 0)) nil tbl))) | |
4834 (forward-line 1)) | |
4835 ;; Would like to look for a "Total" line, or a "Directory" line to | |
4836 ;; make sure that the listing isn't complete garbage before putting | |
4837 ;; in "." and "..", but we can't even count on all VAX's giving us | |
4838 ;; either of these. | |
4839 (ange-ftp-put-hash-entry "." t tbl) | |
4840 (ange-ftp-put-hash-entry ".." t tbl)) | |
4841 tbl)) | |
4842 | |
4843 (or (assq 'vms ange-ftp-parse-list-func-alist) | |
4844 (setq ange-ftp-parse-list-func-alist | |
4845 (cons '(vms . ange-ftp-parse-vms-listing) | |
4846 ange-ftp-parse-list-func-alist))) | |
4847 | |
4848 ;; This version only deletes file entries which have | |
4849 ;; explicit version numbers, because that is all VMS allows. | |
4850 | |
4851 ;; Can the following two functions be speeded up using file | |
4852 ;; completion functions? | |
4853 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4854 (defun ange-ftp-vms-delete-file-entry (name &optional dir-p) |
1106 | 4855 (if dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4856 (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
|
4857 (save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4858 (let ((file (ange-ftp-get-file-part name))) |
1106 | 4859 (if (string-match ";[0-9]+$" file) |
4860 ;; In VMS you can't delete a file without an explicit | |
4861 ;; version number, or wild-card (e.g. FOO;*) | |
4862 ;; For now, we give up on wildcards. | |
4863 (let ((files (ange-ftp-get-hash-entry | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4864 (file-name-directory name) |
1106 | 4865 ange-ftp-files-hashtable))) |
4866 (if files | |
4867 (let* ((root (substring file 0 | |
4868 (match-beginning 0))) | |
4869 (regexp (concat "^" | |
4870 (regexp-quote root) | |
4871 ";[0-9]+$")) | |
4872 versions) | |
4873 (ange-ftp-del-hash-entry file files) | |
4874 ;; Now we need to check if there are any | |
4875 ;; versions left. If not, then delete the | |
4876 ;; root entry. | |
4877 (mapatoms | |
4878 '(lambda (sym) | |
4879 (and (string-match regexp (get sym 'key)) | |
4880 (setq versions t))) | |
4881 files) | |
4882 (or versions | |
4883 (ange-ftp-del-hash-entry root files)))))))))) | |
4884 | |
4885 (or (assq 'vms ange-ftp-delete-file-entry-alist) | |
4886 (setq ange-ftp-delete-file-entry-alist | |
4887 (cons '(vms . ange-ftp-vms-delete-file-entry) | |
4888 ange-ftp-delete-file-entry-alist))) | |
4889 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4890 (defun ange-ftp-vms-add-file-entry (name &optional dir-p) |
1106 | 4891 (if dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4892 (ange-ftp-internal-add-file-entry name t) |
1106 | 4893 (let ((files (ange-ftp-get-hash-entry |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4894 (file-name-directory name) |
1106 | 4895 ange-ftp-files-hashtable))) |
4896 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4897 (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
|
4898 (save-match-data |
1106 | 4899 (if (string-match ";[0-9]+$" file) |
4900 (ange-ftp-put-hash-entry | |
4901 (substring file 0 (match-beginning 0)) | |
4902 nil files) | |
4903 ;; Need to figure out what version of the file | |
4904 ;; is being added. | |
4905 (let ((regexp (concat "^" | |
4906 (regexp-quote file) | |
4907 ";\\([0-9]+\\)$")) | |
4908 (version 0)) | |
4909 (mapatoms | |
4910 '(lambda (sym) | |
4911 (let ((name (get sym 'key))) | |
4912 (and (string-match regexp name) | |
4913 (setq version | |
4914 (max version | |
4915 (string-to-int | |
4916 (substring name | |
4917 (match-beginning 1) | |
4918 (match-end 1)))))))) | |
4919 files) | |
4920 (setq version (1+ version)) | |
4921 (ange-ftp-put-hash-entry | |
4922 (concat file ";" (int-to-string version)) | |
4923 nil files)))) | |
4924 (ange-ftp-put-hash-entry file nil files)))))) | |
4925 | |
4926 (or (assq 'vms ange-ftp-add-file-entry-alist) | |
4927 (setq ange-ftp-add-file-entry-alist | |
4928 (cons '(vms . ange-ftp-vms-add-file-entry) | |
4929 ange-ftp-add-file-entry-alist))) | |
4930 | |
4931 | |
4932 (defun ange-ftp-add-vms-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4933 "Mark HOST as the name of a machine running VMS." |
1106 | 4934 (interactive |
4935 (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
|
4936 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4937 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 4938 (if (not (ange-ftp-vms-host host)) |
4939 (setq ange-ftp-vms-host-regexp | |
4940 (concat "^" (regexp-quote host) "$" | |
4941 (and ange-ftp-vms-host-regexp "\\|") | |
4942 ange-ftp-vms-host-regexp) | |
4943 ange-ftp-host-cache nil))) | |
4944 | |
4945 | |
4946 (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
|
4947 (save-match-data |
1106 | 4948 (if (string-match "\\.\\(DIR\\|dir\\)\\(;[0-9]+\\)?$" name) |
4949 (setq name (substring name 0 (match-beginning 0)))) | |
4950 (ange-ftp-real-file-name-as-directory name))) | |
4951 | |
4952 (or (assq 'vms ange-ftp-file-name-as-directory-alist) | |
4953 (setq ange-ftp-file-name-as-directory-alist | |
4954 (cons '(vms . ange-ftp-vms-file-name-as-directory) | |
4955 ange-ftp-file-name-as-directory-alist))) | |
4956 | |
4957 ;;; Tree dired support: | |
4958 | |
4959 ;; For this code I have borrowed liberally from Sebastian Kremer's | |
4960 ;; dired-vms.el | |
4961 | |
4962 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4963 ;;;; These regexps must be anchored to beginning of line. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4964 ;;;; 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
|
4965 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4966 ;;(defconst ange-ftp-dired-vms-re-exe "^. [^ \t.]+\\.\\(EXE\\|exe\\)[; ]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4967 ;; "Regular expression to use to search for VMS executable files.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4968 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4969 ;;(defconst ange-ftp-dired-vms-re-dir "^. [^ \t.]+\\.\\(DIR\\|dir\\)[; ]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4970 ;; "Regular expression to use to search for VMS directories.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4971 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4972 ;;(or (assq 'vms ange-ftp-dired-re-exe-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4973 ;; (setq ange-ftp-dired-re-exe-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4974 ;; (cons (cons 'vms ange-ftp-dired-vms-re-exe) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4975 ;; ange-ftp-dired-re-exe-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4976 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4977 ;;(or (assq 'vms ange-ftp-dired-re-dir-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4978 ;; (setq ange-ftp-dired-re-dir-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4979 ;; (cons (cons 'vms ange-ftp-dired-vms-re-dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4980 ;; ange-ftp-dired-re-dir-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4981 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4982 ;;(defun ange-ftp-dired-vms-insert-headerline (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4983 ;; ;; VMS inserts a headerline. I would prefer the headerline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4984 ;; ;; to be in ange-ftp format. This version tries to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4985 ;; ;; be careful, because we can't count on a headerline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4986 ;; ;; over ftp, and we wouldn't want to delete anything |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4987 ;; ;; important. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4988 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4989 ;; (if (looking-at "^ wildcard ") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4990 ;; (forward-line 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4991 ;; (if (looking-at "^[ \n\t]*[^\n]+\\][ \t]*\n") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4992 ;; (delete-region (point) (match-end 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4993 ;; (ange-ftp-real-dired-insert-headerline dir)) |
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-insert-headerline-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4996 ;; (setq ange-ftp-dired-insert-headerline-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4997 ;; (cons '(vms . ange-ftp-dired-vms-insert-headerline) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4998 ;; ange-ftp-dired-insert-headerline-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-move-to-filename (&optional raise-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5001 ;; "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
|
5002 ;;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
|
5003 ;; ;; This is the VMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5004 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5005 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5006 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5007 ;; (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
|
5008 ;; (goto-char (match-beginning 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5009 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5010 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5011 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5012 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5013 ;;(or (assq 'vms ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5014 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5015 ;; (cons '(vms . ange-ftp-dired-vms-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5016 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5017 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5018 ;;(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
|
5019 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5020 ;; ;; 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
|
5021 ;; ;; case-fold-search must be nil, at least for VMS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5022 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5023 ;; ;; This is the VMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5024 ;; (let (opoint hidden case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5025 ;; (setq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5026 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5027 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5028 ;; (save-excursion (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5029 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5030 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5031 ;; (re-search-forward ange-ftp-vms-filename-regexp eol t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5032 ;; (or no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5033 ;; (not (eq opoint (point))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5034 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5035 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5036 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5037 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5038 ;; "No file on this line"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5039 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5040 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5041 ;; (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5042 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5043 ;;(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
|
5044 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5045 ;; (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
|
5046 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5047 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5048 ;;(defun ange-ftp-dired-vms-between-files () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5049 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5050 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5051 ;; (or (equal (following-char) 10) ; newline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5052 ;; (equal (following-char) 9) ; tab |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5053 ;; (progn (forward-char 2) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5054 ;; (or (looking-at "Total of") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5055 ;; (equal (following-char) 32)))))) |
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 ;;(or (assq 'vms ange-ftp-dired-between-files-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5058 ;; (setq ange-ftp-dired-between-files-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5059 ;; (cons '(vms . ange-ftp-dired-vms-between-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5060 ;; ange-ftp-dired-between-files-alist))) |
1106 | 5061 |
5062 ;; Beware! In VMS filenames must be of the form "FILE.TYPE". | |
5063 ;; Therefore, we cannot just append a ".Z" to filenames for | |
5064 ;; compressed files. Instead, we turn "FILE.TYPE" into | |
5065 ;; "FILE.TYPE-Z". Hope that this is a reasonable thing to do. | |
5066 | |
5067 (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
|
5068 (cond |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5069 ((string-match "-Z;[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5070 (list nil (substring name 0 (match-beginning 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5071 ((string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5072 (list nil (substring name 0 (match-beginning 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5073 ((string-match "-Z$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5074 (list nil (substring name 0 -2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5075 (t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5076 (list t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5077 (if (string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5078 (concat (substring name 0 (match-beginning 0)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5079 "-Z") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5080 (concat name "-Z")))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5081 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5082 (or (assq 'vms ange-ftp-make-compressed-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5083 (setq ange-ftp-make-compressed-filename-alist |
1106 | 5084 (cons '(vms . ange-ftp-vms-make-compressed-filename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5085 ange-ftp-make-compressed-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5086 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5087 ;;;; 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
|
5088 ;;;; (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
|
5089 ;;;; 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
|
5090 ;;;; (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
|
5091 ;;;; If dired gets confused, revert-buffer will fix it. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5092 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5093 ;;(defun ange-ftp-dired-vms-ls-trim () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5094 ;; (goto-char (point-min)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5095 ;; (let ((case-fold-search nil)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5096 ;; (re-search-forward ange-ftp-vms-filename-regexp)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5097 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5098 ;; (delete-region (point-min) (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5099 ;; (forward-line 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5100 ;; (delete-region (point) (point-max))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5101 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5102 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5103 ;;(or (assq 'vms ange-ftp-dired-ls-trim-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5104 ;; (setq ange-ftp-dired-ls-trim-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5105 ;; (cons '(vms . ange-ftp-dired-vms-ls-trim) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5106 ;; ange-ftp-dired-ls-trim-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5107 |
12977
046bc1e2acc9
(ange-ftp-vms-sans-version): Accept extra args.
Richard M. Stallman <rms@gnu.org>
parents:
12741
diff
changeset
|
5108 (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
|
5109 (save-match-data |
1106 | 5110 (if (string-match ";[0-9]+$" name) |
5111 (substring name 0 (match-beginning 0)) | |
5112 name))) | |
5113 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5114 (or (assq 'vms ange-ftp-sans-version-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5115 (setq ange-ftp-sans-version-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5116 (cons '(vms . ange-ftp-vms-sans-version) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5117 ange-ftp-sans-version-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5118 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5119 ;;(defvar ange-ftp-file-version-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5120 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5121 ;;;;; 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
|
5122 ;;;;; 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
|
5123 ;;;;; ange-ftp-dired-vms-flag-backup-files. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5124 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5125 ;;(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
|
5126 ;; "Flag numerical backups for deletion. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5127 ;;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
|
5128 ;;Positive prefix arg KEEP overrides `dired-kept-versions'; |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5129 ;;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
|
5130 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5131 ;;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
|
5132 ;;with a prefix argument." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5133 ;;; (interactive "P") ; Never actually called interactively. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5134 ;; (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
|
5135 ;; (let ((early-retention (if (< keep 0) (- keep) kept-old-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5136 ;; ;; 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
|
5137 ;; ;; This could wipe ALL copies of the file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5138 ;; (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
|
5139 ;; (action (or msg "Cleaning")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5140 ;; (ange-ftp-trample-marker (or marker dired-del-marker)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5141 ;; (ange-ftp-file-version-alist ())) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5142 ;; (message (concat action |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5143 ;; " numerical backups (keeping %d late, %d old)...") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5144 ;; late-retention early-retention) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5145 ;; ;; Look at each file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5146 ;; ;; If the file has numeric backup versions, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5147 ;; ;; 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
|
5148 ;; ;; (FILENAME . VERSION-NUMBER-LIST) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5149 ;; (dired-map-dired-file-lines (function |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5150 ;; ange-ftp-dired-vms-collect-file-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5151 ;; ;; Sort each VERSION-NUMBER-LIST, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5152 ;; ;; and remove the versions not to be deleted. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5153 ;; (let ((fval ange-ftp-file-version-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5154 ;; (while fval |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5155 ;; (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5156 ;; (v-count (length sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5157 ;; (if (> v-count (+ early-retention late-retention)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5158 ;; (rplacd (nthcdr early-retention sorted-v-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5159 ;; (nthcdr (- v-count late-retention) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5160 ;; sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5161 ;; (rplacd (car fval) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5162 ;; (cdr sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5163 ;; (setq fval (cdr fval)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5164 ;; ;; 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
|
5165 ;; ;; 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
|
5166 ;; (dired-map-dired-file-lines |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5167 ;; (function |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5168 ;; ange-ftp-dired-vms-trample-file-versions mark)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5169 ;; (message (concat action " numerical backups...done")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5170 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5171 ;;(or (assq 'vms ange-ftp-dired-clean-directory-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5172 ;; (setq ange-ftp-dired-clean-directory-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5173 ;; (cons '(vms . ange-ftp-dired-vms-clean-directory) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5174 ;; ange-ftp-dired-clean-directory-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5175 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5176 ;;(defun ange-ftp-dired-vms-collect-file-versions (fn) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5177 ;; ;; "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
|
5178 ;; ;;That is a list of strings which are file names. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5179 ;; ;;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
|
5180 ;;(let ((name (nth 2 (ange-ftp-ftp-name fn)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5181 ;; (if (string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5182 ;; (let* ((name (substring name 0 (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5183 ;; (fn (ange-ftp-replace-name-component fn name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5184 ;; (if (not (assq fn ange-ftp-file-version-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5185 ;; (let* ((base-versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5186 ;; (concat (file-name-nondirectory name) ";")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5187 ;; (bv-length (length base-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5188 ;; (possibilities (file-name-all-completions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5189 ;; base-versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5190 ;; (file-name-directory fn))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5191 ;; (versions (mapcar |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5192 ;; '(lambda (arg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5193 ;; (if (and (string-match |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5194 ;; "[0-9]+$" arg bv-length) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5195 ;; (= (match-beginning 0) bv-length)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5196 ;; (string-to-int (substring arg bv-length)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5197 ;; 0)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5198 ;; possibilities))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5199 ;; (if versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5200 ;; (setq |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5201 ;; ange-ftp-file-version-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5202 ;; (cons (cons fn versions) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5203 ;; ange-ftp-file-version-alist))))))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5204 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5205 ;;(defun ange-ftp-dired-vms-trample-file-versions (fn) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5206 ;; (let* ((start-vn (string-match ";[0-9]+$" fn)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5207 ;; base-version-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5208 ;; (and start-vn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5209 ;; (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
|
5210 ;; (assoc (substring fn 0 start-vn) ; this looks like a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5211 ;; ange-ftp-file-version-alist)) ; subversion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5212 ;; (not (memq (string-to-int (substring fn (1+ start-vn))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5213 ;; base-version-list)) ; this one doesn't make the cut |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5214 ;; (progn (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5215 ;; (delete-char 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5216 ;; (insert ange-ftp-trample-marker))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5217 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5218 ;;(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
|
5219 ;; (let ((dired-kept-versions 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5220 ;; (kept-old-versions 0) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5221 ;; marker msg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5222 ;; (if unflag-p |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5223 ;; (setq marker ?\040 msg "Unflagging") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5224 ;; (setq marker dired-del-marker msg "Cleaning")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5225 ;; (ange-ftp-dired-vms-clean-directory nil marker msg))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5226 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5227 ;;(or (assq 'vms ange-ftp-dired-flag-backup-files-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5228 ;; (setq ange-ftp-dired-flag-backup-files-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5229 ;; (cons '(vms . ange-ftp-dired-vms-flag-backup-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5230 ;; ange-ftp-dired-flag-backup-files-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5231 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5232 ;;(defun ange-ftp-dired-vms-backup-diff (&optional switches) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5233 ;; (let ((file (dired-get-filename 'no-dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5234 ;; bak) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5235 ;; (if (and (string-match ";[0-9]+$" file) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5236 ;; ;; Find most recent previous version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5237 ;; (let ((root (substring file 0 (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5238 ;; (ver |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5239 ;; (string-to-int (substring file (1+ (match-beginning 0))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5240 ;; found) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5241 ;; (setq ver (1- ver)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5242 ;; (while (and (> ver 0) (not found)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5243 ;; (setq bak (concat root ";" (int-to-string ver))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5244 ;; (and (file-exists-p bak) (setq found t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5245 ;; (setq ver (1- ver))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5246 ;; found)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5247 ;; (if switches |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5248 ;; (diff (expand-file-name bak) (expand-file-name file) switches) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5249 ;; (diff (expand-file-name bak) (expand-file-name file))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5250 ;; (error "No previous version found for %s" file)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5251 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5252 ;;(or (assq 'vms ange-ftp-dired-backup-diff-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5253 ;; (setq ange-ftp-dired-backup-diff-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5254 ;; (cons '(vms . ange-ftp-dired-vms-backup-diff) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5255 ;; ange-ftp-dired-backup-diff-alist))) |
1106 | 5256 |
5257 | |
5258 ;;;; ------------------------------------------------------------ | |
5259 ;;;; MTS support | |
5260 ;;;; ------------------------------------------------------------ | |
5261 | |
5262 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5263 ;; 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
|
5264 ;; MTS to UNIX-ish. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5265 (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
|
5266 (save-match-data |
1106 | 5267 (if reverse |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5268 (if (string-match "^\\([^:]+:\\)?\\(.*\\)$" name) |
1106 | 5269 (let (acct file) |
5270 (if (match-beginning 1) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5271 (setq acct (substring name 0 (match-end 1)))) |
1106 | 5272 (if (match-beginning 2) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5273 (setq file (substring name |
1106 | 5274 (match-beginning 2) (match-end 2)))) |
5275 (concat (and acct (concat "/" acct "/")) | |
5276 file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5277 (error "name %s didn't match" name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5278 (if (string-match "^/\\([^:]+:\\)/\\(.*\\)$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5279 (concat (substring name 1 (match-end 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5280 (substring name (match-beginning 2) (match-end 2))) |
1106 | 5281 ;; Let's hope that mts will recognize it anyway. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5282 name)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5283 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5284 (or (assq 'mts ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5285 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5286 (cons '(mts . ange-ftp-fix-name-for-mts) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5287 ange-ftp-fix-name-func-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5288 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5289 ;; 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
|
5290 ;; Remember that there are no directories in MTS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5291 (defun ange-ftp-fix-dir-name-for-mts (dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5292 (if (string-equal dir-name "/") |
1106 | 5293 (error "Cannot get listing for fictitious \"/\" directory.") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5294 (let ((dir-name (ange-ftp-fix-name-for-mts dir-name))) |
1106 | 5295 (cond |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5296 ((string-equal dir-name "") |
1106 | 5297 "?") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5298 ((string-match ":$" dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5299 (concat dir-name "?")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5300 (dir-name))))) ; It's just a single file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5301 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5302 (or (assq 'mts ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5303 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5304 (cons '(mts . ange-ftp-fix-dir-name-for-mts) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5305 ange-ftp-fix-dir-name-func-alist))) |
1106 | 5306 |
5307 (or (memq 'mts ange-ftp-dumb-host-types) | |
5308 (setq ange-ftp-dumb-host-types | |
5309 (cons 'mts ange-ftp-dumb-host-types))) | |
5310 | |
5311 (defvar ange-ftp-mts-host-regexp nil) | |
5312 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5313 ;; Return non-nil if HOST is running MTS. |
1106 | 5314 (defun ange-ftp-mts-host (host) |
5315 (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
|
5316 (save-match-data |
1106 | 5317 (string-match ange-ftp-mts-host-regexp host)))) |
5318 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5319 ;; Parse the current buffer which is assumed to be in mts ftp dir format. |
1106 | 5320 (defun ange-ftp-parse-mts-listing () |
5321 (let ((tbl (ange-ftp-make-hashtable))) | |
5322 (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
5323 (save-match-data |
1106 | 5324 (while (re-search-forward ange-ftp-date-regexp nil t) |
5325 (end-of-line) | |
5326 (skip-chars-backward " ") | |
5327 (let ((end (point))) | |
5328 (skip-chars-backward "-A-Z0-9_.!") | |
5329 (ange-ftp-put-hash-entry (buffer-substring (point) end) nil tbl)) | |
5330 (forward-line 1))) | |
5331 ;; Don't need to bother with .. | |
5332 (ange-ftp-put-hash-entry "." t tbl) | |
5333 tbl)) | |
5334 | |
5335 (or (assq 'mts ange-ftp-parse-list-func-alist) | |
5336 (setq ange-ftp-parse-list-func-alist | |
5337 (cons '(mts . ange-ftp-parse-mts-listing) | |
5338 ange-ftp-parse-list-func-alist))) | |
5339 | |
5340 (defun ange-ftp-add-mts-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5341 "Mark HOST as the name of a machine running MTS." |
1106 | 5342 (interactive |
5343 (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
|
5344 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5345 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 5346 (if (not (ange-ftp-mts-host host)) |
5347 (setq ange-ftp-mts-host-regexp | |
5348 (concat "^" (regexp-quote host) "$" | |
5349 (and ange-ftp-mts-host-regexp "\\|") | |
5350 ange-ftp-mts-host-regexp) | |
5351 ange-ftp-host-cache nil))) | |
5352 | |
5353 ;;; Tree dired support: | |
5354 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5355 ;;;; 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
|
5356 ;;;; 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
|
5357 ;;;; 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
|
5358 ;;;; following more flexible. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5359 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5360 ;;(defun ange-ftp-dired-mts-move-to-filename (&optional raise-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5361 ;; "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
|
5362 ;;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
|
5363 ;; ;; This is the MTS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5364 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5365 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5366 ;; (if (re-search-forward |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5367 ;; ange-ftp-date-regexp eol t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5368 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5369 ;; (skip-chars-forward " ") ; Eat blanks after date |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5370 ;; (skip-chars-forward "0-9:" eol) ; Eat time or year |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5371 ;; (skip-chars-forward " " eol) ; one space before filename |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5372 ;; ;; 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
|
5373 ;; ;; ACCT: to the beginning of the filename. Skip over this. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5374 ;; (and (looking-at "[A-Z0-9_.]+:") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5375 ;; (goto-char (match-end 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5376 ;; (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5377 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5378 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5379 ;; nil))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5380 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5381 ;;(or (assq 'mts ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5382 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5383 ;; (cons '(mts . ange-ftp-dired-mts-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5384 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5385 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5386 ;;(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
|
5387 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5388 ;; ;; 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
|
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 MTS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5391 ;; (let (opoint hidden case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5392 ;; (setq opoint (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5393 ;; eol (save-excursion (end-of-line) (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5394 ;; hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5395 ;; (save-excursion (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5396 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5397 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5398 ;; (skip-chars-forward "-A-Z0-9._!" eol)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5399 ;; (or no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5400 ;; (not (eq opoint (point))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5401 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5402 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5403 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5404 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5405 ;; "No file on this line"))) |
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 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5408 ;; (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5409 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5410 ;;(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
|
5411 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5412 ;; (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
|
5413 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 5414 |
5415 ;;;; ------------------------------------------------------------ | |
5416 ;;;; CMS support | |
5417 ;;;; ------------------------------------------------------------ | |
5418 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5419 ;; 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
|
5420 ;; things with cd's. We actually send too many cd's, but it's dangerous |
1106 | 5421 ;; to try to remember the current minidisk, because if the connection |
5422 ;; is closed and needs to be reopened, we will find ourselves back in | |
5423 ;; the default minidisk. This is fairly likely since CMS ftp servers | |
5424 ;; usually close the connection after 5 minutes of inactivity. | |
5425 | |
5426 ;; Have I got the filename character set right? | |
5427 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5428 (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
|
5429 (save-match-data |
1106 | 5430 (if reverse |
5431 ;; Since we only convert output from a pwd in this direction, | |
5432 ;; we'll assume that it's a minidisk, and make it into a | |
5433 ;; directory file name. Note that the expand-dir-hashtable | |
5434 ;; stores directories without the trailing /. Is this | |
5435 ;; consistent? | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5436 (concat "/" name) |
1106 | 5437 (if (string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5438 name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5439 (let ((minidisk (substring name 1 (match-end 1)))) |
1106 | 5440 (if (match-beginning 2) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5441 (let ((file (substring name (match-beginning 2) |
1106 | 5442 (match-end 2))) |
5443 (cmd (concat "cd " minidisk)) | |
5444 | |
5445 ;; Note that host and user are bound in the call | |
5446 ;; to ange-ftp-send-cmd | |
5447 (proc (ange-ftp-get-process ange-ftp-this-host | |
5448 ange-ftp-this-user))) | |
5449 | |
5450 ;; Must use ange-ftp-raw-send-cmd here to avoid | |
5451 ;; an infinite loop. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5452 (if (car (ange-ftp-raw-send-cmd proc cmd ange-ftp-this-msg)) |
1106 | 5453 file |
5454 ;; failed... try ONCE more. | |
5455 (setq proc (ange-ftp-get-process ange-ftp-this-host | |
5456 ange-ftp-this-user)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5457 (let ((result (ange-ftp-raw-send-cmd proc cmd |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5458 ange-ftp-this-msg))) |
1106 | 5459 (if (car result) |
5460 file | |
5461 ;; failed. give up. | |
5462 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user | |
5463 (format "cd to minidisk %s failed: %s" | |
5464 minidisk (cdr result))))))) | |
5465 ;; return the minidisk | |
5466 minidisk)) | |
5467 (error "Invalid CMS filename"))))) | |
5468 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5469 (or (assq 'cms ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5470 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5471 (cons '(cms . ange-ftp-fix-name-for-cms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5472 ange-ftp-fix-name-func-alist))) |
1106 | 5473 |
5474 (or (memq 'cms ange-ftp-dumb-host-types) | |
5475 (setq ange-ftp-dumb-host-types | |
5476 (cons 'cms ange-ftp-dumb-host-types))) | |
5477 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5478 ;; 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
|
5479 (defun ange-ftp-fix-dir-name-for-cms (dir-name) |
1106 | 5480 (cond |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5481 ((string-equal "/" dir-name) |
1106 | 5482 (error "Cannot get listing for fictitious \"/\" directory.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5483 ((string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5484 (let* ((minidisk (substring dir-name (match-beginning 1) (match-end 1))) |
1106 | 5485 ;; 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
|
5486 (proc (ange-ftp-get-process ange-ftp-this-host ange-ftp-this-user)) |
1106 | 5487 (cmd (concat "cd " minidisk)) |
5488 (file (if (match-beginning 2) | |
5489 ;; it's a single file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5490 (substring dir-name (match-beginning 2) |
1106 | 5491 (match-end 2)) |
5492 ;; use the wild-card | |
5493 "*"))) | |
5494 (if (car (ange-ftp-raw-send-cmd proc cmd)) | |
5495 file | |
5496 ;; try again... | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5497 (setq proc (ange-ftp-get-process ange-ftp-this-host |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5498 ange-ftp-this-user)) |
1106 | 5499 (let ((result (ange-ftp-raw-send-cmd proc cmd))) |
5500 (if (car result) | |
5501 file | |
5502 ;; give up | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5503 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user |
14887
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
5504 (format "cd to minidisk %s failed: %s" |
1106 | 5505 minidisk (cdr result)))))))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5506 (t (error "Invalid CMS file name")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5507 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5508 (or (assq 'cms ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5509 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5510 (cons '(cms . ange-ftp-fix-dir-name-for-cms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5511 ange-ftp-fix-dir-name-func-alist))) |
1106 | 5512 |
5513 (defvar ange-ftp-cms-host-regexp nil | |
5514 "Regular expression to match hosts running the CMS operating system.") | |
5515 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5516 ;; Return non-nil if HOST is running CMS. |
1106 | 5517 (defun ange-ftp-cms-host (host) |
5518 (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
|
5519 (save-match-data |
1106 | 5520 (string-match ange-ftp-cms-host-regexp host)))) |
5521 | |
5522 (defun ange-ftp-add-cms-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5523 "Mark HOST as the name of a CMS host." |
1106 | 5524 (interactive |
5525 (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
|
5526 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5527 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 5528 (if (not (ange-ftp-cms-host host)) |
5529 (setq ange-ftp-cms-host-regexp | |
5530 (concat "^" (regexp-quote host) "$" | |
5531 (and ange-ftp-cms-host-regexp "\\|") | |
5532 ange-ftp-cms-host-regexp) | |
5533 ange-ftp-host-cache nil))) | |
5534 | |
5535 (defun ange-ftp-parse-cms-listing () | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5536 ;; Parse the current buffer which is assumed to be a CMS directory listing. |
1106 | 5537 ;; If we succeed in getting a listing, then we will assume that the minidisk |
5538 ;; exists. file is bound by the call to ange-ftp-ls. This doesn't work | |
5539 ;; because ange-ftp doesn't know that the root hashtable has only part of | |
5540 ;; the info. It will assume that if a minidisk isn't in it, then it doesn't | |
5541 ;; exist. It would be nice if completion worked for minidisks, as we | |
5542 ;; discover them. | |
5543 ; (let* ((dir-file (directory-file-name file)) | |
5544 ; (root (file-name-directory dir-file)) | |
5545 ; (minidisk (ange-ftp-get-file-part dir-file)) | |
5546 ; (root-tbl (ange-ftp-get-hash-entry root ange-ftp-files-hashtable))) | |
5547 ; (if root-tbl | |
5548 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5549 ; (setq root-tbl (ange-ftp-make-hashtable)) | |
5550 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5551 ; (ange-ftp-put-hash-entry "." t root-tbl) | |
5552 ; (ange-ftp-set-files root root-tbl))) | |
5553 ;; Now do the usual parsing | |
5554 (let ((tbl (ange-ftp-make-hashtable))) | |
5555 (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
5556 (save-match-data |
1106 | 5557 (while |
5558 (re-search-forward | |
5559 "^\\([-A-Z0-9$_]+\\) +\\([-A-Z0-9$_]+\\) +[VF] +[0-9]+ " nil t) | |
5560 (ange-ftp-put-hash-entry | |
5561 (concat (buffer-substring (match-beginning 1) | |
5562 (match-end 1)) | |
5563 "." | |
5564 (buffer-substring (match-beginning 2) | |
5565 (match-end 2))) | |
5566 nil tbl) | |
5567 (forward-line 1)) | |
5568 (ange-ftp-put-hash-entry "." t tbl)) | |
5569 tbl)) | |
5570 | |
5571 (or (assq 'cms ange-ftp-parse-list-func-alist) | |
5572 (setq ange-ftp-parse-list-func-alist | |
5573 (cons '(cms . ange-ftp-parse-cms-listing) | |
5574 ange-ftp-parse-list-func-alist))) | |
5575 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5576 ;;;;; Tree dired support: |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5577 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5578 ;;(defconst ange-ftp-dired-cms-re-exe |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5579 ;; "^. [-A-Z0-9$_]+ +EXEC " |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5580 ;; "Regular expression to use to search for CMS executables.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5581 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5582 ;;(or (assq 'cms ange-ftp-dired-re-exe-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5583 ;; (setq ange-ftp-dired-re-exe-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5584 ;; (cons (cons 'cms ange-ftp-dired-cms-re-exe) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5585 ;; ange-ftp-dired-re-exe-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5586 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5587 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5588 ;;(defun ange-ftp-dired-cms-insert-headerline (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5589 ;; ;; 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
|
5590 ;; ;; aesthetics. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5591 ;; (insert "\n") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5592 ;; (forward-char -1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5593 ;; (ange-ftp-real-dired-insert-headerline dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5594 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5595 ;;(or (assq 'cms ange-ftp-dired-insert-headerline-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5596 ;; (setq ange-ftp-dired-insert-headerline-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5597 ;; (cons '(cms . ange-ftp-dired-cms-insert-headerline) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5598 ;; ange-ftp-dired-insert-headerline-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5599 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5600 ;;(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
|
5601 ;; "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
|
5602 ;; ;; This is the CMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5603 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5604 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5605 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5606 ;; (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
|
5607 ;; (goto-char (1+ (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5608 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5609 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5610 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5611 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5612 ;;(or (assq 'cms ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5613 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5614 ;; (cons '(cms . ange-ftp-dired-cms-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5615 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5616 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5617 ;;(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
|
5618 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5619 ;; ;; 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
|
5620 ;; ;; case-fold-search must be nil, at least for VMS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5621 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5622 ;; ;; This is the CMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5623 ;; (let ((opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5624 ;; case-fold-search hidden) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5625 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5626 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5627 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5628 ;; (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5629 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5630 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5631 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5632 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5633 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5634 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5635 ;; (skip-chars-forward "-A-Z0-9$_" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5636 ;; (skip-chars-forward " " eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5637 ;; (skip-chars-forward "-A-Z0-9$_" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5638 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5639 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5640 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5641 ;; (error "No file on this line")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5642 ;; (point))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5643 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5644 ;;(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
|
5645 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5646 ;; (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
|
5647 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 5648 |
5649 (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
|
5650 (if (string-match "-Z$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5651 (list nil (substring name 0 -2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5652 (list t (concat name "-Z")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5653 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5654 (or (assq 'cms ange-ftp-make-compressed-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5655 (setq ange-ftp-make-compressed-filename-alist |
1106 | 5656 (cons '(cms . ange-ftp-cms-make-compressed-filename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5657 ange-ftp-make-compressed-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5658 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5659 ;;(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
|
5660 ;; (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
|
5661 ;; (and name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5662 ;; (if (string-match "^\\([^ ]+\\) +\\([^ ]+\\)$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5663 ;; (concat (substring name 0 (match-end 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5664 ;; "." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5665 ;; (substring name (match-beginning 2) (match-end 2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5666 ;; name)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5667 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5668 ;;(or (assq 'cms ange-ftp-dired-get-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5669 ;; (setq ange-ftp-dired-get-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5670 ;; (cons '(cms . ange-ftp-dired-cms-get-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5671 ;; ange-ftp-dired-get-filename-alist))) |
1106 | 5672 |
5673 ;;;; ------------------------------------------------------------ | |
5674 ;;;; Finally provide package. | |
5675 ;;;; ------------------------------------------------------------ | |
5676 | |
5677 (provide 'ange-ftp) | |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
5678 |
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
5679 ;;; ange-ftp.el ends here |