Mercurial > emacs
annotate lisp/ange-ftp.el @ 14637:89952d6af6c2
(derived-mode-merge-syntax-tables): Use inheritance.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Wed, 21 Feb 1996 21:33:12 +0000 |
parents | c7dfe102acc3 |
children | 20f4c4a078b2 |
rev | line source |
---|---|
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
1 ;;; ange-ftp.el --- transparent FTP support for GNU Emacs |
1106 | 2 |
14169 | 3 ;; Copyright (C) 1989,90,91,92,93,94,95 Free Software Foundation, Inc. |
4 | |
2258 | 5 ;; Author: Andy Norman (ange@hplb.hpl.hp.com) |
6 ;; Keywords: comm | |
14169 | 7 |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
12 ;; the Free Software Foundation; either version 2, or (at your option) | |
13 ;; any later version. | |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
1106 | 24 |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
25 ;;; Commentary: |
14169 | 26 |
27 ;; This package attempts to make accessing files and directories using FTP | |
28 ;; from within GNU Emacs as simple and transparent as possible. A subset of | |
29 ;; the common file-handling routines are extended to interact with FTP. | |
30 | |
31 ;; Usage: | |
32 ;; | |
33 ;; Some of the common GNU Emacs file-handling operations have been made | |
34 ;; FTP-smart. If one of these routines is given a filename that matches | |
35 ;; '/user@host:name' then it will spawn an FTP process connecting to machine | |
36 ;; 'host' as account 'user' and perform its operation on the file 'name'. | |
37 ;; | |
38 ;; For example: if find-file is given a filename of: | |
39 ;; | |
40 ;; /ange@anorman:/tmp/notes | |
41 ;; | |
42 ;; then ange-ftp spawns an FTP process, connect to the host 'anorman' as | |
43 ;; user 'ange', get the file '/tmp/notes' and pop up a buffer containing the | |
44 ;; contents of that file as if it were on the local filesystem. If ange-ftp | |
45 ;; needs a password to connect then it reads one in the echo area. | |
46 | |
47 ;; Extended filename syntax: | |
48 ;; | |
49 ;; The default extended filename syntax is '/user@host:name', where the | |
50 ;; 'user@' part may be omitted. This syntax can be customised to a certain | |
51 ;; extent by changing ange-ftp-name-format. There are limitations. | |
52 ;; | |
53 ;; If the user part is omitted then ange-ftp generates a default user | |
54 ;; instead whose value depends on the variable ange-ftp-default-user. | |
55 | |
56 ;; Passwords: | |
57 ;; | |
58 ;; A password is required for each host/user pair. Ange-ftp reads passwords | |
59 ;; as needed. You can also specify a password with ange-ftp-set-passwd, or | |
60 ;; in a *valid* ~/.netrc file. | |
61 | |
62 ;; Passwords for user "anonymous": | |
63 ;; | |
64 ;; Passwords for the user "anonymous" (or "ftp") are handled | |
65 ;; specially. The variable `ange-ftp-generate-anonymous-password' | |
66 ;; controls what happens: if the value of this variable is a string, | |
67 ;; then this is used as the password; if non-nil (the default), then | |
68 ;; the value of `user-mail-address' is used; if nil then the user | |
69 ;; is prompted for a password as normal. | |
70 | |
71 ;; "Dumb" UNIX hosts: | |
72 ;; | |
73 ;; The FTP servers on some UNIX machines have problems if the 'ls' command is | |
74 ;; used. | |
75 ;; | |
76 ;; The routine ange-ftp-add-dumb-unix-host can be called to tell ange-ftp to | |
77 ;; limit itself to the DIR command and not 'ls' for a given UNIX host. Note | |
78 ;; that this change will take effect for the current GNU Emacs session only. | |
79 ;; See below for a discussion of non-UNIX hosts. If a large number of | |
80 ;; machines with similar hostnames have this problem then it is easier to set | |
81 ;; the value of ange-ftp-dumb-unix-host-regexp in your .emacs file. ange-ftp | |
82 ;; is unable to automatically recognize dumb unix hosts. | |
83 | |
84 ;; File name completion: | |
85 ;; | |
86 ;; Full file-name completion is supported on UNIX, VMS, CMS, and MTS hosts. | |
87 ;; To do filename completion, ange-ftp needs a listing from the remote host. | |
88 ;; Therefore, for very slow connections, it might not save any time. | |
89 | |
90 ;; FTP processes: | |
91 ;; | |
92 ;; When ange-ftp starts up an FTP process, it leaves it running for speed | |
93 ;; purposes. Some FTP servers will close the connection after a period of | |
94 ;; time, but ange-ftp should be able to quietly reconnect the next time that | |
95 ;; the process is needed. | |
96 ;; | |
97 ;; Killing the "*ftp user@host*" buffer also kills the ftp process. | |
98 ;; This should not cause ange-ftp any grief. | |
99 | |
100 ;; Binary file transfers: | |
101 ;; | |
102 ;; By default ange-ftp transfers files in ASCII mode. If a file being | |
103 ;; transferred matches the value of ange-ftp-binary-file-name-regexp then | |
104 ;; binary mode is used for that transfer. | |
105 | |
106 ;; Account passwords: | |
107 ;; | |
108 ;; Some FTP servers require an additional password which is sent by the | |
109 ;; ACCOUNT command. ange-ftp partially supports this by allowing the user to | |
110 ;; specify an account password by either calling ange-ftp-set-account, or by | |
111 ;; specifying an account token in the .netrc file. If the account password | |
112 ;; is set by either of these methods then ange-ftp will issue an ACCOUNT | |
113 ;; command upon starting the FTP process. | |
114 | |
115 ;; Preloading: | |
116 ;; | |
117 ;; ange-ftp can be preloaded, but must be put in the site-init.el file and | |
118 ;; not the site-load.el file in order for the documentation strings for the | |
119 ;; functions being overloaded to be available. | |
120 | |
121 ;; Status reports: | |
122 ;; | |
123 ;; Most ange-ftp commands that talk to the FTP process output a status | |
124 ;; message on what they are doing. In addition, ange-ftp can take advantage | |
125 ;; of the FTP client's HASH command to display the status of transferring | |
126 ;; files and listing directories. See the documentation for the variables | |
127 ;; ange-ftp-{ascii,binary}-hash-mark-size, ange-ftp-send-hash and | |
128 ;; ange-ftp-process-verbose for more details. | |
129 | |
130 ;; Gateways: | |
131 ;; | |
132 ;; Sometimes it is necessary for the FTP process to be run on a different | |
133 ;; machine than the machine running GNU Emacs. This can happen when the | |
134 ;; local machine has restrictions on what hosts it can access. | |
135 ;; | |
136 ;; ange-ftp has support for running the ftp process on a different (gateway) | |
137 ;; machine. The way it works is as follows: | |
138 ;; | |
139 ;; 1) Set the variable 'ange-ftp-gateway-host' to the name of a machine | |
140 ;; that doesn't have the access restrictions. | |
141 ;; | |
142 ;; 2) Set the variable 'ange-ftp-local-host-regexp' to a regular expression | |
143 ;; that matches hosts that can be contacted from running a local ftp | |
144 ;; process, but fails to match hosts that can't be accessed locally. For | |
145 ;; example: | |
146 ;; | |
147 ;; "\\.hp\\.com$\\|^[^.]*$" | |
148 ;; | |
149 ;; will match all hosts that are in the .hp.com domain, or don't have an | |
150 ;; explicit domain in their name, but will fail to match hosts with | |
151 ;; explicit domains or that are specified by their ip address. | |
152 ;; | |
153 ;; 3) Using NFS and symlinks, make sure that there is a shared directory with | |
154 ;; the *same* name between the local machine and the gateway machine. | |
155 ;; This directory is necessary for temporary files created by ange-ftp. | |
156 ;; | |
157 ;; 4) Set the variable 'ange-ftp-gateway-tmp-name-template' to the name of | |
158 ;; this directory plus an identifying filename prefix. For example: | |
159 ;; | |
160 ;; "/nfs/hplose/ange/ange-ftp" | |
161 ;; | |
162 ;; where /nfs/hplose/ange is a directory that is shared between the | |
163 ;; gateway machine and the local machine. | |
164 ;; | |
165 ;; The simplest way of getting a ftp process running on the gateway machine | |
166 ;; is if you can spawn a remote shell using either 'rsh' or 'remsh'. If you | |
167 ;; can't do this for some reason such as security then points 7 onwards will | |
168 ;; discuss an alternative approach. | |
169 ;; | |
170 ;; 5) Set the variable ange-ftp-gateway-program to the name of the remote | |
171 ;; shell process such as 'remsh' or 'rsh' if the default isn't correct. | |
172 ;; | |
173 ;; 6) Set the variable ange-ftp-gateway-program-interactive to nil if it | |
174 ;; isn't already. This tells ange-ftp that you are using a remote shell | |
175 ;; rather than logging in using telnet or rlogin. | |
176 ;; | |
177 ;; That should be all you need to allow ange-ftp to spawn a ftp process on | |
178 ;; the gateway machine. If you have to use telnet or rlogin to get to the | |
179 ;; gateway machine then follow the instructions below. | |
180 ;; | |
181 ;; 7) Set the variable ange-ftp-gateway-program to the name of the program | |
182 ;; that lets you log onto the gateway machine. This may be something like | |
183 ;; telnet or rlogin. | |
184 ;; | |
185 ;; 8) Set the variable ange-ftp-gateway-prompt-pattern to a regular | |
186 ;; expression that matches the prompt you get when you login to the | |
187 ;; gateway machine. Be very specific here; this regexp must not match | |
188 ;; *anything* in your login banner except this prompt. | |
189 ;; shell-prompt-pattern is far too general as it appears to match some | |
190 ;; login banners from Sun machines. For example: | |
191 ;; | |
192 ;; "^$*$ *" | |
193 ;; | |
194 ;; 9) Set the variable ange-ftp-gateway-program-interactive to 't' to let | |
195 ;; ange-ftp know that it has to "hand-hold" the login to the gateway | |
196 ;; machine. | |
197 ;; | |
198 ;; 10) Set the variable ange-ftp-gateway-setup-term-command to a UNIX command | |
199 ;; that will put the pty connected to the gateway machine into a | |
200 ;; no-echoing mode, and will strip off carriage-returns from output from | |
201 ;; the gateway machine. For example: | |
202 ;; | |
203 ;; "stty -onlcr -echo" | |
204 ;; | |
205 ;; will work on HP-UX machines, whereas: | |
206 ;; | |
207 ;; "stty -echo nl" | |
208 ;; | |
209 ;; appears to work for some Sun machines. | |
210 ;; | |
211 ;; That's all there is to it. | |
212 | |
213 ;; Smart gateways: | |
214 ;; | |
215 ;; If you have a "smart" ftp program that allows you to issue commands like | |
216 ;; "USER foo@bar" which do nice proxy things, then look at the variables | |
217 ;; ange-ftp-smart-gateway and ange-ftp-smart-gateway-port. | |
218 ;; | |
219 ;; Otherwise, if there is an alternate ftp program that implements proxy in | |
220 ;; a transparent way (i.e. w/o specifying the proxy host), that will | |
221 ;; connect you directly to the desired destination host: | |
222 ;; Set ange-ftp-gateway-ftp-program-name to that program's name. | |
223 ;; Set ange-ftp-local-host-regexp to a value as stated earlier on. | |
224 ;; Leave ange-ftp-gateway-host set to nil. | |
225 ;; Set ange-ftp-smart-gateway to t. | |
226 | |
227 ;; Tips for using ange-ftp: | |
228 ;; | |
229 ;; 1. For dired to work on a host which marks symlinks with a trailing @ in | |
230 ;; an ls -alF listing, you need to (setq dired-ls-F-marks-symlinks t). | |
231 ;; Most UNIX systems do not do this, but ULTRIX does. If you think that | |
232 ;; there is a chance you might connect to an ULTRIX machine (such as | |
233 ;; prep.ai.mit.edu), then set this variable accordingly. This will have | |
234 ;; the side effect that dired will have problems with symlinks whose names | |
235 ;; end in an @. If you get yourself into this situation then editing | |
236 ;; dired's ls-switches to remove "F", will temporarily fix things. | |
237 ;; | |
238 ;; 2. If you know that you are connecting to a certain non-UNIX machine | |
239 ;; frequently, and ange-ftp seems to be unable to guess its host-type, | |
240 ;; then setting the appropriate host-type regexp | |
241 ;; (ange-ftp-vms-host-regexp, ange-ftp-mts-host-regexp, or | |
242 ;; ange-ftp-cms-host-regexp) accordingly should help. Also, please report | |
243 ;; ange-ftp's inability to recognize the host-type as a bug. | |
244 ;; | |
245 ;; 3. For slow connections, you might get "listing unreadable" error | |
246 ;; messages, or get an empty buffer for a file that you know has something | |
247 ;; in it. The solution is to increase the value of ange-ftp-retry-time. | |
248 ;; Its default value is 5 which is plenty for reasonable connections. | |
249 ;; However, for some transatlantic connections I set this to 20. | |
250 ;; | |
251 ;; 4. Beware of compressing files on non-UNIX hosts. Ange-ftp will do it by | |
252 ;; copying the file to the local machine, compressing it there, and then | |
253 ;; sending it back. Binary file transfers between machines of different | |
254 ;; architectures can be a risky business. Test things out first on some | |
255 ;; test files. See "Bugs" below. Also, note that ange-ftp copies files by | |
256 ;; moving them through the local machine. Again, be careful when doing | |
257 ;; this with binary files on non-Unix machines. | |
258 ;; | |
259 ;; 5. Beware that dired over ftp will use your setting of dired-no-confirm | |
260 ;; (list of dired commands for which confirmation is not asked). You | |
261 ;; might want to reconsider your setting of this variable, because you | |
262 ;; might want confirmation for more commands on remote direds than on | |
263 ;; local direds. For example, I strongly recommend that you not include | |
264 ;; compress and uncompress in this list. If there is enough demand it | |
265 ;; might be a good idea to have an alist ange-ftp-dired-no-confirm of | |
266 ;; pairs ( TYPE . LIST ), where TYPE is an operating system type and LIST | |
267 ;; is a list of commands for which confirmation would be suppressed. Then | |
268 ;; remote dired listings would take their (buffer-local) value of | |
269 ;; dired-no-confirm from this alist. Who votes for this? | |
270 | |
271 ;; --------------------------------------------------------------------- | |
272 ;; Non-UNIX support: | |
273 ;; --------------------------------------------------------------------- | |
274 | |
275 ;; VMS support: | |
276 ;; | |
277 ;; Ange-ftp has full support for VMS hosts. It | |
278 ;; should be able to automatically recognize any VMS machine. However, if it | |
279 ;; fails to do this, you can use the command ange-ftp-add-vms-host. As well, | |
280 ;; you can set the variable ange-ftp-vms-host-regexp in your .emacs file. We | |
281 ;; would be grateful if you would report any failures to automatically | |
282 ;; recognize a VMS host as a bug. | |
283 ;; | |
284 ;; Filename Syntax: | |
285 ;; | |
286 ;; For ease of *implementation*, the user enters the VMS filename syntax in a | |
287 ;; UNIX-y way. For example: | |
288 ;; PUB$:[ANONYMOUS.SDSCPUB.NEXT]README.TXT;1 | |
289 ;; would be entered as: | |
290 ;; /PUB$$:/ANONYMOUS/SDSCPUB/NEXT/README.TXT;1 | |
291 ;; i.e. to log in as anonymous on ymir.claremont.edu and grab the file: | |
292 ;; [.CSV.POLICY]RULES.MEM | |
293 ;; you would type: | |
294 ;; C-x C-f /anonymous@ymir.claremont.edu:CSV/POLICY/RULES.MEM | |
295 ;; | |
296 ;; A legal VMS filename is of the form: FILE.TYPE;## | |
297 ;; where FILE can be up to 39 characters | |
298 ;; TYPE can be up to 39 characters | |
299 ;; ## is a version number (an integer between 1 and 32,767) | |
300 ;; Valid characters in FILE and TYPE are A-Z 0-9 _ - $ | |
301 ;; $ cannot begin a filename, and - cannot be used as the first or last | |
302 ;; character. | |
303 ;; | |
304 ;; Tips: | |
305 ;; 1. Although VMS is not case sensitive, EMACS running under UNIX is. | |
306 ;; Therefore, to access a VMS file, you must enter the filename with upper | |
307 ;; case letters. | |
308 ;; 2. To access the latest version of file under VMS, you use the filename | |
309 ;; without the ";" and version number. You should always edit the latest | |
310 ;; version of a file. If you want to edit an earlier version, copy it to a | |
311 ;; new file first. This has nothing to do with ange-ftp, but is simply | |
312 ;; good VMS operating practice. Therefore, to edit FILE.TXT;3 (say 3 is | |
313 ;; latest version), do C-x C-f /ymir.claremont.edu:FILE.TXT. If you | |
314 ;; inadvertently do C-x C-f /ymir.claremont.edu:FILE.TXT;3, you will find | |
315 ;; that VMS will not allow you to save the file because it will refuse to | |
316 ;; overwrite FILE.TXT;3, but instead will want to create FILE.TXT;4, and | |
317 ;; attach the buffer to this file. To get out of this situation, M-x | |
318 ;; write-file /ymir.claremont.edu:FILE.TXT will attach the buffer to | |
319 ;; latest version of the file. For this reason, in dired "f" | |
320 ;; (dired-find-file), always loads the file sans version, whereas "v", | |
321 ;; (dired-view-file), always loads the explicit version number. The | |
322 ;; reasoning being that it reasonable to view old versions of a file, but | |
323 ;; not to edit them. | |
324 ;; 3. EMACS has a feature in which it does environment variable substitution | |
325 ;; in filenames. Therefore, to enter a $ in a filename, you must quote it | |
326 ;; by typing $$. | |
327 | |
328 ;; MTS support: | |
329 ;; | |
330 ;; Ange-ftp has full support for hosts running | |
331 ;; the Michigan terminal system. It should be able to automatically | |
332 ;; recognize any MTS machine. However, if it fails to do this, you can use | |
333 ;; the command ange-ftp-add-mts-host. As well, you can set the variable | |
334 ;; ange-ftp-mts-host-regexp in your .emacs file. We would be grateful if you | |
335 ;; would report any failures to automatically recognize a MTS host as a bug. | |
336 ;; | |
337 ;; Filename syntax: | |
338 ;; | |
339 ;; MTS filenames are entered in a UNIX-y way. For example, if your account | |
340 ;; was YYYY, the file FILE in the account XXXX: on mtsg.ubc.ca would be | |
341 ;; entered as | |
342 ;; /YYYY@mtsg.ubc.ca:/XXXX:/FILE | |
343 ;; In other words, MTS accounts are treated as UNIX directories. Of course, | |
344 ;; to access a file in another account, you must have access permission for | |
345 ;; it. If FILE were in your own account, then you could enter it in a | |
346 ;; relative name fashion as | |
347 ;; /YYYY@mtsg.ubc.ca:FILE | |
348 ;; MTS filenames can be up to 12 characters. Like UNIX, the structure of the | |
349 ;; filename does not contain a TYPE (i.e. it can have as many "."'s as you | |
350 ;; like.) MTS filenames are always in upper case, and hence be sure to enter | |
351 ;; them as such! MTS is not case sensitive, but an EMACS running under UNIX | |
352 ;; is. | |
353 | |
354 ;; CMS support: | |
355 ;; | |
356 ;; Ange-ftp has full support for hosts running | |
357 ;; CMS. It should be able to automatically recognize any CMS machine. | |
358 ;; However, if it fails to do this, you can use the command | |
359 ;; ange-ftp-add-cms-host. As well, you can set the variable | |
360 ;; ange-ftp-cms-host-regexp in your .emacs file. We would be grateful if you | |
361 ;; would report any failures to automatically recognize a CMS host as a bug. | |
362 ;; | |
363 ;; Filename syntax: | |
364 ;; | |
365 ;; CMS filenames are entered in a UNIX-y way. In otherwords, minidisks are | |
366 ;; treated as UNIX directories. For example to access the file READ.ME in | |
367 ;; minidisk *.311 on cuvmb.cc.columbia.edu, you would enter | |
368 ;; /anonymous@cuvmb.cc.columbia.edu:/*.311/READ.ME | |
369 ;; If *.301 is the default minidisk for this account, you could access | |
370 ;; FOO.BAR on this minidisk as | |
371 ;; /anonymous@cuvmb.cc.columbia.edu:FOO.BAR | |
372 ;; CMS filenames are of the form FILE.TYPE, where both FILE and TYPE can be | |
373 ;; up to 8 characters. Again, beware that CMS filenames are always upper | |
374 ;; case, and hence must be entered as such. | |
375 ;; | |
376 ;; Tips: | |
377 ;; 1. CMS machines, with the exception of anonymous accounts, nearly always | |
378 ;; need an account password. To have ange-ftp send an account password, | |
379 ;; you can either include it in your .netrc file, or use | |
380 ;; ange-ftp-set-account. | |
381 ;; 2. Ange-ftp cannot send "write passwords" for a minidisk. Hopefully, we | |
382 ;; can fix this. | |
383 ;; | |
384 ;; ------------------------------------------------------------------ | |
385 ;; Bugs: | |
386 ;; ------------------------------------------------------------------ | |
387 ;; | |
388 ;; 1. Umask problems: | |
389 ;; Be warned that files created by using ange-ftp will take account of the | |
390 ;; umask of the ftp daemon process rather than the umask of the creating | |
391 ;; user. This is particularly important when logging in as the root user. | |
392 ;; The way that I tighten up the ftp daemon's umask under HP-UX is to make | |
393 ;; sure that the umask is changed to 027 before I spawn /etc/inetd. I | |
394 ;; suspect that there is something similar on other systems. | |
395 ;; | |
396 ;; 2. Some combinations of FTP clients and servers break and get out of sync | |
397 ;; when asked to list a non-existent directory. Some of the ai.mit.edu | |
398 ;; machines cause this problem for some FTP clients. Using | |
399 ;; ange-ftp-kill-ftp-process can restart the ftp process, which | |
400 ;; should get things back in sync. | |
401 ;; | |
402 ;; 3. Ange-ftp does not check to make sure that when creating a new file, | |
403 ;; you provide a valid filename for the remote operating system. | |
404 ;; If you do not, then the remote FTP server will most likely | |
405 ;; translate your filename in some way. This may cause ange-ftp to | |
406 ;; get confused about what exactly is the name of the file. The | |
407 ;; most common causes of this are using lower case filenames on systems | |
408 ;; which support only upper case, and using filenames which are too | |
409 ;; long. | |
410 ;; | |
411 ;; 4. Null (blank) passwords confuse both ange-ftp and some FTP daemons. | |
412 ;; | |
413 ;; 5. Ange-ftp likes to use pty's to talk to its FTP processes. If GNU Emacs | |
414 ;; for some reason creates a FTP process that only talks via pipes then | |
415 ;; ange-ftp won't be getting the information it requires at the time that | |
416 ;; it wants it since pipes flush at different times to pty's. One | |
417 ;; disgusting way around this problem is to talk to the FTP process via | |
418 ;; rlogin which does the 'right' things with pty's. | |
419 ;; | |
420 ;; 6. For CMS support, we send too many cd's. Since cd's are cheap, I haven't | |
421 ;; worried about this too much. Eventually, we should have some caching | |
422 ;; of the current minidisk. | |
423 ;; | |
424 ;; 7. Some CMS machines do not assign a default minidisk when you ftp them as | |
425 ;; anonymous. It is then necessary to guess a valid minidisk name, and cd | |
426 ;; to it. This is (understandably) beyond ange-ftp. | |
427 ;; | |
428 ;; 8. Remote to remote copying of files on non-Unix machines can be risky. | |
429 ;; Depending on the variable ange-ftp-binary-file-name-regexp, ange-ftp | |
430 ;; will use binary mode for the copy. Between systems of different | |
431 ;; architecture, this still may not be enough to guarantee the integrity | |
432 ;; of binary files. Binary file transfers from VMS machines are | |
433 ;; particularly problematical. Should ange-ftp-binary-file-name-regexp be | |
434 ;; an alist of OS type, regexp pairs? | |
435 ;; | |
436 ;; 9. The code to do compression of files over ftp is not as careful as it | |
437 ;; should be. It deletes the old remote version of the file, before | |
438 ;; actually checking if the local to remote transfer of the compressed | |
439 ;; file succeeds. Of course to delete the original version of the file | |
440 ;; after transferring the compressed version back is also dangerous, | |
441 ;; because some OS's have severe restrictions on the length of filenames, | |
442 ;; and when the compressed version is copied back the "-Z" or ".Z" may be | |
443 ;; truncated. Then, ange-ftp would delete the only remaining version of | |
444 ;; the file. Maybe ange-ftp should make backups when it compresses files | |
445 ;; (of course, the backup "~" could also be truncated off, sigh...). | |
446 ;; Suggestions? | |
447 ;; | |
448 ;; 10. If a dir listing is attempted for an empty directory on (at least | |
449 ;; some) VMS hosts, an ftp error is given. This is really an ftp bug, and | |
450 ;; I don't know how to get ange-ftp work to around it. | |
451 ;; | |
452 ;; 11. Bombs on filenames that start with a space. Deals well with filenames | |
453 ;; containing spaces, but beware that the remote ftpd may not like them | |
454 ;; much. | |
455 ;; | |
456 ;; 12. The dired support for non-Unix-like systems does not currently work. | |
457 ;; It needs to be reimplemented by modifying the parse-...-listing | |
458 ;; functions to convert the directory listing to ls -l format. | |
459 ;; | |
460 ;; 13. The famous @ bug. As mentioned above in TIPS, ULTRIX marks symlinks | |
461 ;; with a trailing @ in a ls -alF listing. In order to account for this | |
462 ;; ange-ftp looks to chop trailing @'s off of symlink names when it is | |
463 ;; parsing a listing with the F switch. This will cause ange-ftp to | |
464 ;; incorrectly get the name of a symlink on a non-ULTRIX host if its name | |
465 ;; ends in an @. ange-ftp will correct itself if you take F out of the | |
466 ;; dired ls switches (C-u s will allow you to edit the switches). The | |
467 ;; dired buffer will be automatically reverted, which will allow ange-ftp | |
468 ;; to fix its files hashtable. A cookie to anyone who can think of a | |
469 ;; fast, sure-fire way to recognize ULTRIX over ftp. | |
470 | |
471 ;; If you find any bugs or problems with this package, PLEASE either e-mail | |
472 ;; the above author, or send a message to the ange-ftp-lovers mailing list | |
473 ;; below. Ideas and constructive comments are especially welcome. | |
474 | |
475 ;; ange-ftp-lovers: | |
476 ;; | |
477 ;; ange-ftp has its own mailing list modestly called ange-ftp-lovers. All | |
478 ;; users of ange-ftp are welcome to subscribe (see below) and to discuss | |
479 ;; aspects of ange-ftp. New versions of ange-ftp are posted periodically to | |
480 ;; the mailing list. | |
481 ;; | |
482 ;; To [un]subscribe to ange-ftp-lovers, or to report mailer problems with the | |
483 ;; list, please mail one of the following addresses: | |
484 ;; | |
485 ;; ange-ftp-lovers-request@anorman.hpl.hp.com | |
486 ;; or | |
487 ;; ange-ftp-lovers-request%anorman.hpl.hp.com@hplb.hpl.hp.com | |
488 ;; | |
489 ;; Please don't forget the -request part. | |
490 ;; | |
491 ;; For mail to be posted directly to ange-ftp-lovers, send to one of the | |
492 ;; following addresses: | |
493 ;; | |
494 ;; ange-ftp-lovers@anorman.hpl.hp.com | |
495 ;; or | |
496 ;; ange-ftp-lovers%anorman.hpl.hp.com@hplb.hpl.hp.com | |
497 ;; | |
498 ;; Alternatively, there is a mailing list that only gets announcements of new | |
499 ;; ange-ftp releases. This is called ange-ftp-lovers-announce, and can be | |
500 ;; subscribed to by e-mailing to the -request address as above. Please make | |
501 ;; it clear in the request which mailing list you wish to join. | |
502 | |
503 ;; The latest version of ange-ftp can usually be obtained via anonymous ftp | |
504 ;; from: | |
505 ;; alpha.gnu.ai.mit.edu:ange-ftp/ange-ftp.tar.Z | |
506 ;; or: | |
507 ;; ugle.unit.no:/pub/gnu/emacs-lisp/ange-ftp.tar.Z | |
508 ;; or: | |
509 ;; archive.cis.ohio-state.edu:pub/gnu/emacs/elisp-archive/packages/ange-ftp.tar.Z | |
510 | |
511 ;; The archives for ange-ftp-lovers can be found via anonymous ftp under: | |
512 ;; | |
513 ;; ftp.reed.edu:pub/mailing-lists/ange-ftp/ | |
1106 | 514 |
14169 | 515 ;; ----------------------------------------------------------- |
516 ;; Technical information on this package: | |
517 ;; ----------------------------------------------------------- | |
518 | |
519 ;; ange-ftp works by putting a handler on file-name-handler-alist | |
520 ;; which is called by many primitives, and a few non-primitives, | |
521 ;; whenever they see a file name of the appropriate sort. | |
522 | |
523 ;; Checklist for adding non-UNIX support for TYPE | |
524 ;; | |
525 ;; The following functions may need TYPE versions: | |
526 ;; (not all functions will be needed for every OS) | |
527 ;; | |
528 ;; ange-ftp-fix-name-for-TYPE | |
529 ;; ange-ftp-fix-dir-name-for-TYPE | |
530 ;; ange-ftp-TYPE-host | |
531 ;; ange-ftp-TYPE-add-host | |
532 ;; ange-ftp-parse-TYPE-listing | |
533 ;; ange-ftp-TYPE-delete-file-entry | |
534 ;; ange-ftp-TYPE-add-file-entry | |
535 ;; ange-ftp-TYPE-file-name-as-directory | |
536 ;; ange-ftp-TYPE-make-compressed-filename | |
537 ;; ange-ftp-TYPE-file-name-sans-versions | |
538 ;; | |
539 ;; Variables: | |
540 ;; | |
541 ;; ange-ftp-TYPE-host-regexp | |
542 ;; May need to add TYPE to ange-ftp-dumb-host-types | |
543 ;; | |
544 ;; Check the following functions for OS dependent coding: | |
545 ;; | |
546 ;; ange-ftp-host-type | |
547 ;; ange-ftp-guess-host-type | |
548 ;; ange-ftp-allow-child-lookup | |
549 | |
550 ;; Host type conventions: | |
551 ;; | |
552 ;; The function ange-ftp-host-type and the variable ange-ftp-dired-host-type | |
553 ;; (mostly) follow the following conventions for remote host types. At | |
554 ;; least, I think that future code should try to follow these conventions, | |
555 ;; and the current code should eventually be made compliant. | |
556 ;; | |
557 ;; nil = local host type, whatever that is (probably unix). | |
558 ;; Think nil as in "not a remote host". This value is used by | |
559 ;; ange-ftp-dired-host-type for local buffers. | |
560 ;; | |
561 ;; t = a remote host of unknown type. Think t is in true, it's remote. | |
562 ;; Currently, 'unix is used as the default remote host type. | |
563 ;; Maybe we should use t. | |
564 ;; | |
565 ;; 'type = a remote host of TYPE type. | |
566 ;; | |
567 ;; 'type:list = a remote host of TYPE type, using a specialized ftp listing | |
568 ;; program called list. This is currently only used for Unix | |
569 ;; dl (descriptive listings), when ange-ftp-dired-host-type | |
570 ;; is set to 'unix:dl. | |
571 | |
572 ;; Bug report codes: | |
573 ;; | |
574 ;; Because of their naive faith in this code, there are certain situations | |
575 ;; which the writers of this program believe could never happen. However, | |
576 ;; being realists they have put calls to `error' in the program at these | |
577 ;; points. These errors provide a code, which is an integer, greater than 1. | |
578 ;; To aid debugging. the error codes, and the functions in which they reside | |
579 ;; are listed below. | |
580 ;; | |
581 ;; 1: See ange-ftp-ls | |
582 ;; | |
1106 | 583 |
14169 | 584 ;; ----------------------------------------------------------- |
585 ;; Hall of fame: | |
586 ;; ----------------------------------------------------------- | |
587 ;; | |
588 ;; Thanks to Roland McGrath for improving the filename syntax handling, | |
589 ;; for suggesting many enhancements and for numerous cleanups to the code. | |
590 ;; | |
591 ;; Thanks to Jamie Zawinski for bugfixes and for ideas such as gateways. | |
592 ;; | |
593 ;; Thanks to Ken Laprade for improved .netrc parsing, password reading, and | |
594 ;; dired / shell auto-loading. | |
595 ;; | |
596 ;; Thanks to Sebastian Kremer for dired support and for many ideas and | |
597 ;; bugfixes. | |
598 ;; | |
599 ;; Thanks to Joe Wells for bugfixes, the original non-UNIX system support, | |
600 ;; VOS support, and hostname completion. | |
601 ;; | |
602 ;; Thanks to Nakagawa Takayuki for many good ideas, filename-completion, help | |
603 ;; with file-name expansion, efficiency worries, stylistic concerns and many | |
604 ;; bugfixes. | |
605 ;; | |
606 ;; Thanks to Sandy Rutherford who re-wrote most of ange-ftp to support VMS, | |
607 ;; MTS, CMS and UNIX-dls. Sandy also added dired-support for non-UNIX OS and | |
608 ;; auto-recognition of the host type. | |
609 ;; | |
610 ;; Thanks to Dave Smith who wrote the info file for ange-ftp. | |
611 ;; | |
612 ;; Finally, thanks to Keith Waclena, Mark D. Baushke, Terence Kelleher, Ping | |
613 ;; Zhou, Edward Vielmetti, Jack Repenning, Mike Balenger, Todd Kaufmann, | |
614 ;; Kjetil Svarstad, Tom Wurgler, Linus Tolke, Niko Makila, Carl Edman, Bill | |
615 ;; Trost, Dave Brennan, Dan Jacobson, Andy Scott, Steve Anderson, Sanjay | |
616 ;; Mathur, the folks on the ange-ftp-lovers mailing list and many others | |
617 ;; whose names I've forgotten who have helped to debug and fix problems with | |
618 ;; ange-ftp.el. | |
1106 | 619 |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
620 ;;; Code: |
14169 | 621 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
622 (require 'comint) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
623 |
1106 | 624 ;;;; ------------------------------------------------------------ |
625 ;;;; User customization variables. | |
626 ;;;; ------------------------------------------------------------ | |
627 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
628 (defvar ange-ftp-name-format |
14138
9856174aa877
(ange-ftp-name-format): Don't match "/:" or "/.:".
Karl Heuer <kwzh@gnu.org>
parents:
14040
diff
changeset
|
629 '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*[^@/:.]\\):\\(.*\\)" . (3 2 4)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
630 "*Format of a fully expanded remote file name. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
631 This is a list of the form \(REGEXP HOST USER NAME\), |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
632 where REGEXP is a regular expression matching |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
633 the full remote name, and HOST, USER, and NAME are the numbers of |
1106 | 634 parenthesized expressions in REGEXP for the components (in that order).") |
635 | |
636 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of | |
637 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs. | |
638 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out. | |
639 | |
640 (defvar ange-ftp-multi-msgs | |
3620
219ff1cb76f4
(ange-ftp-multi-msgs): Add 331-.
Richard M. Stallman <rms@gnu.org>
parents:
3611
diff
changeset
|
641 "^220-\\|^230-\\|^226\\|^25.-\\|^221-\\|^200-\\|^331-\\|^4[25]1-\\|^530-" |
7042 | 642 "*Regular expression matching the start of a multiline ftp reply.") |
1106 | 643 |
644 (defvar ange-ftp-good-msgs | |
645 "^220 \\|^230 \\|^226 \\|^25. \\|^221 \\|^200 \\|^[Hh]ash mark" | |
7042 | 646 "*Regular expression matching ftp \"success\" messages.") |
1106 | 647 |
648 ;; CMS and the odd VMS machine say 200 Port rather than 200 PORT. | |
649 ;; Also CMS machines use a multiline 550- reply to say that you | |
650 ;; don't have write permission. ange-ftp gets into multi-line skip | |
651 ;; mode and hangs. Have it ignore 550- instead. It will then barf | |
652 ;; when it gets the 550 line, as it should. | |
653 | |
654 (defvar ange-ftp-skip-msgs | |
655 (concat "^200 \\(PORT\\|Port\\) \\|^331 \\|^150 \\|^350 \\|^[0-9]+ bytes \\|" | |
656 "^Connected \\|^$\\|^Remote system\\|^Using\\|^ \\|Password:\\|" | |
13089
c18fa2e296f9
(ange-ftp-dumb-unix-host): Avoid error if HOST is nil.
Richard M. Stallman <rms@gnu.org>
parents:
13005
diff
changeset
|
657 "^Data connection \\|" |
1106 | 658 "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye") |
7042 | 659 "*Regular expression matching ftp messages that can be ignored.") |
1106 | 660 |
661 (defvar ange-ftp-fatal-msgs | |
662 (concat "^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|" | |
663 "^No control connection\\|unknown host\\|^lost connection") | |
7042 | 664 "*Regular expression matching ftp messages that indicate serious errors. |
665 These mean that the FTP process should (or already has) been killed.") | |
1106 | 666 |
667 (defvar ange-ftp-gateway-fatal-msgs | |
668 "No route to host\\|Connection closed\\|No such host\\|Login incorrect" | |
7042 | 669 "*Regular expression matching login failure messages from rlogin/telnet.") |
1106 | 670 |
671 (defvar ange-ftp-xfer-size-msgs | |
672 "^150 .* connection for .* (\\([0-9]+\\) bytes)" | |
673 "*Regular expression used to determine the number of bytes in a FTP transfer.") | |
674 | |
675 (defvar ange-ftp-tmp-name-template "/tmp/ange-ftp" | |
676 "*Template used to create temporary files.") | |
677 | |
678 (defvar ange-ftp-gateway-tmp-name-template "/tmp/ange-ftp" | |
679 "*Template used to create temporary files when ftp-ing through a gateway. | |
680 Files starting with this prefix need to be accessible from BOTH the local | |
681 machine and the gateway machine, and need to have the SAME name on both | |
682 machines, that is, /tmp is probably NOT what you want, since that is rarely | |
683 cross-mounted.") | |
684 | |
685 (defvar ange-ftp-netrc-filename "~/.netrc" | |
686 "*File in .netrc format to search for passwords.") | |
687 | |
688 (defvar ange-ftp-disable-netrc-security-check nil | |
689 "*If non-nil avoid checking permissions on the .netrc file.") | |
690 | |
691 (defvar ange-ftp-default-user nil | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
692 "*User name to use when none is specified in a file name. |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
693 If non-nil but not a string, you are prompted for the name. |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
694 If nil, the value of `ange-ftp-netrc-default-user' is used. |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
695 If that is nil too, then your login name is used. |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
696 |
14572
c64371c0dbb9
(ange-ftp-default-user): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14466
diff
changeset
|
697 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
|
698 and password information for that host are cached and re-used by |
c64371c0dbb9
(ange-ftp-default-user): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14466
diff
changeset
|
699 ange-ftp. Use `ange-ftp-set-user' to change the cached values, |
c64371c0dbb9
(ange-ftp-default-user): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14466
diff
changeset
|
700 since setting `ange-ftp-default-user' directly does not affect |
c64371c0dbb9
(ange-ftp-default-user): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14466
diff
changeset
|
701 the cached information.") |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
702 |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
703 (defvar ange-ftp-netrc-default-user nil |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
704 "Alternate default user name to use when none is specified. |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
705 This variable is set from the `default' command in your `.netrc' file, |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
706 if there is one.") |
1106 | 707 |
708 (defvar ange-ftp-default-password nil | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
709 "*Password to use when the user name equals `ange-ftp-default-user'.") |
1106 | 710 |
711 (defvar ange-ftp-default-account nil | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
712 "*Account to use when the user name equals `ange-ftp-default-user'.") |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
713 |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
714 (defvar ange-ftp-netrc-default-password nil |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
715 "*Password to use when the user name equals `ange-ftp-netrc-default-user'.") |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
716 |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
717 (defvar ange-ftp-netrc-default-account nil |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
718 "*Account to use when the user name equals `ange-ftp-netrc-default-user'.") |
1106 | 719 |
1174 | 720 (defvar ange-ftp-generate-anonymous-password t |
9627
449fc86a0f4f
(ange-ftp-get-passwd): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
9070
diff
changeset
|
721 "*If t, use value of `user-mail-address' as password for anonymous ftp. |
449fc86a0f4f
(ange-ftp-get-passwd): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
9070
diff
changeset
|
722 If a string, then use that string as the password. |
449fc86a0f4f
(ange-ftp-get-passwd): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
9070
diff
changeset
|
723 If nil, prompt the user for a password.") |
1106 | 724 |
725 (defvar ange-ftp-dumb-unix-host-regexp nil | |
7042 | 726 "*If non-nil, regexp matching hosts on which `dir' command lists directory.") |
1106 | 727 |
728 (defvar ange-ftp-binary-file-name-regexp | |
2560
50d7841854b3
(ange-ftp-binary-file-name-regexp): Match .z and .z-part-?? files.
Roland McGrath <roland@gnu.org>
parents:
2258
diff
changeset
|
729 (concat "\\.[zZ]$\\|\\.lzh$\\|\\.arc$\\|\\.zip$\\|\\.zoo$\\|\\.tar$\\|" |
1106 | 730 "\\.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
|
731 "\\.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
|
732 "\\.taz$\\|\\.tgz$") |
1106 | 733 "*If a file matches this regexp then it is transferred in binary mode.") |
734 | |
735 (defvar ange-ftp-gateway-host nil | |
736 "*Name of host to use as gateway machine when local FTP isn't possible.") | |
737 | |
738 (defvar ange-ftp-local-host-regexp ".*" | |
7042 | 739 "*Regexp selecting hosts which can be reached directly with ftp. |
740 For other hosts the FTP process is started on \`ange-ftp-gateway-host\' | |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
741 instead, and/or reached via \`ange-ftp-gateway-ftp-program-name\'.") |
1106 | 742 |
743 (defvar ange-ftp-gateway-program-interactive nil | |
7042 | 744 "*If non-nil then the gateway program should give a shell prompt. |
745 Both telnet and rlogin do something like this.") | |
1106 | 746 |
10451
bc83756f19ad
(ange-ftp-gateway-program, ange-ftp-shell-command): Use new global
Karl Heuer <kwzh@gnu.org>
parents:
10407
diff
changeset
|
747 (defvar ange-ftp-gateway-program remote-shell-program |
7042 | 748 "*Name of program to spawn a shell on the gateway machine. |
10451
bc83756f19ad
(ange-ftp-gateway-program, ange-ftp-shell-command): Use new global
Karl Heuer <kwzh@gnu.org>
parents:
10407
diff
changeset
|
749 Valid candidates are rsh (remsh on some systems), telnet and rlogin. See |
7042 | 750 also the gateway variable above.") |
1106 | 751 |
5265
7305f7204c67
(ange-ftp-hash-mark-msgs): Make match more general.
Richard M. Stallman <rms@gnu.org>
parents:
5171
diff
changeset
|
752 (defvar ange-ftp-gateway-prompt-pattern "^[^#$%>;\n]*[#$%>;] *" |
7042 | 753 "*Regexp matching prompt after complete login sequence on gateway machine. |
754 A match for this means the shell is now awaiting input. Make this regexp as | |
1106 | 755 strict as possible; it shouldn't match *anything* at all except the user's |
756 initial prompt. The above string will fail under most SUN-3's since it | |
757 matches the login banner.") | |
758 | |
759 (defvar ange-ftp-gateway-setup-term-command | |
760 (if (eq system-type 'hpux) | |
761 "stty -onlcr -echo\n" | |
762 "stty -echo nl\n") | |
7042 | 763 "*Set up terminal after logging in to the gateway machine. |
764 This command should stop the terminal from echoing each command, and | |
765 arrange to strip out trailing ^M characters.") | |
1106 | 766 |
767 (defvar ange-ftp-smart-gateway nil | |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
768 "*Non-nil means the ftp gateway and/or the gateway ftp program is smart. |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
769 Don't bother telnetting, etc., already connected to desired host transparently, |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
770 or just issue a user@host command in case \`ange-ftp-gateway-host\' is non-nil.") |
1106 | 771 |
772 (defvar ange-ftp-smart-gateway-port "21" | |
773 "*Port on gateway machine to use when smart gateway is in operation.") | |
774 | |
775 (defvar ange-ftp-send-hash t | |
776 "*If non-nil, send the HASH command to the FTP client.") | |
777 | |
778 (defvar ange-ftp-binary-hash-mark-size nil | |
779 "*Default size, in bytes, between hash-marks when transferring a binary file. | |
780 If NIL, this variable will be locally overridden if the FTP client outputs a | |
781 suitable response to the HASH command. If non-NIL then this value takes | |
782 precedence over the local value.") | |
783 | |
784 (defvar ange-ftp-ascii-hash-mark-size 1024 | |
785 "*Default size, in bytes, between hash-marks when transferring an ASCII file. | |
786 This variable is buffer-local and will be locally overridden if the FTP client | |
787 outputs a suitable response to the HASH command.") | |
788 | |
789 (defvar ange-ftp-process-verbose t | |
790 "*If non-NIL then be chatty about interaction with the FTP process.") | |
791 | |
792 (defvar ange-ftp-ftp-program-name "ftp" | |
793 "*Name of FTP program to run.") | |
794 | |
795 (defvar ange-ftp-gateway-ftp-program-name "ftp" | |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
796 "*Name of FTP program to run when accessing non-local hosts. |
1106 | 797 Some AT&T folks claim to use something called `pftp' here.") |
798 | |
799 (defvar ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v") | |
800 "*A list of arguments passed to the FTP program when started.") | |
801 | |
802 (defvar ange-ftp-nslookup-program nil | |
803 "*If non-NIL then a string naming nslookup program." ) | |
804 | |
805 (defvar ange-ftp-make-backup-files () | |
3416
5bd76dd4c6bd
(ange-ftp-make-backup-files): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3394
diff
changeset
|
806 "*Non-nil means make backup files for \"magic\" remote files.") |
1106 | 807 |
808 (defvar ange-ftp-retry-time 5 | |
7042 | 809 "*Number of seconds to wait before retry if file or listing doesn't arrive. |
810 This might need to be increased for very slow connections.") | |
1106 | 811 |
812 (defvar ange-ftp-auto-save 0 | |
813 "If 1, allows ange-ftp files to be auto-saved. | |
814 If 0, suppresses auto-saving of ange-ftp files. | |
815 Don't use any other value.") | |
816 | |
817 ;;;; ------------------------------------------------------------ | |
818 ;;;; Hash table support. | |
819 ;;;; ------------------------------------------------------------ | |
820 | |
821 (require 'backquote) | |
822 | |
823 (defun ange-ftp-make-hashtable (&optional size) | |
824 "Make an obarray suitable for use as a hashtable. | |
825 SIZE, if supplied, should be a prime number." | |
826 (make-vector (or size 31) 0)) | |
827 | |
828 (defun ange-ftp-map-hashtable (fun tbl) | |
829 "Call FUNCTION on each key and value in HASHTABLE." | |
830 (mapatoms | |
831 (function | |
832 (lambda (sym) | |
833 (funcall fun (get sym 'key) (get sym 'val)))) | |
834 tbl)) | |
835 | |
836 (defmacro ange-ftp-make-hash-key (key) | |
837 "Convert KEY into a suitable key for a hashtable." | |
838 (` (if (stringp (, key)) | |
839 (, key) | |
840 (prin1-to-string (, key))))) | |
841 | |
842 (defun ange-ftp-get-hash-entry (key tbl) | |
843 "Return the value associated with KEY in HASHTABLE." | |
844 (let ((sym (intern-soft (ange-ftp-make-hash-key key) tbl))) | |
845 (and sym (get sym 'val)))) | |
846 | |
847 (defun ange-ftp-put-hash-entry (key val tbl) | |
848 "Record an association between KEY and VALUE in HASHTABLE." | |
849 (let ((sym (intern (ange-ftp-make-hash-key key) tbl))) | |
850 (put sym 'val val) | |
851 (put sym 'key key))) | |
852 | |
853 (defun ange-ftp-del-hash-entry (key tbl) | |
854 "Copy all symbols except KEY in HASHTABLE and return modified hashtable." | |
855 (let* ((len (length tbl)) | |
856 (new-tbl (ange-ftp-make-hashtable len)) | |
857 (i (1- len))) | |
858 (ange-ftp-map-hashtable | |
859 (function | |
860 (lambda (k v) | |
861 (or (equal k key) | |
862 (ange-ftp-put-hash-entry k v new-tbl)))) | |
863 tbl) | |
864 (while (>= i 0) | |
865 (aset tbl i (aref new-tbl i)) | |
866 (setq i (1- i))) | |
867 tbl)) | |
868 | |
869 (defun ange-ftp-hash-entry-exists-p (key tbl) | |
870 "Return whether there is an association for KEY in TABLE." | |
871 (intern-soft (ange-ftp-make-hash-key key) tbl)) | |
872 | |
873 (defun ange-ftp-hash-table-keys (tbl) | |
1233 | 874 "Return a sorted list of all the active keys in TABLE, as strings." |
1106 | 875 (sort (all-completions "" tbl) |
876 (function string-lessp))) | |
877 | |
878 ;;;; ------------------------------------------------------------ | |
879 ;;;; Internal variables. | |
880 ;;;; ------------------------------------------------------------ | |
881 | |
882 (defvar ange-ftp-data-buffer-name " *ftp data*" | |
883 "Buffer name to hold directory listing data received from ftp process.") | |
884 | |
885 (defvar ange-ftp-netrc-modtime nil | |
886 "Last modified time of the netrc file from file-attributes.") | |
887 | |
888 (defvar ange-ftp-user-hashtable (ange-ftp-make-hashtable) | |
889 "Hash table holding associations between HOST, USER pairs.") | |
890 | |
891 (defvar ange-ftp-passwd-hashtable (ange-ftp-make-hashtable) | |
892 "Mapping between a HOST, USER pair and a PASSWORD for them.") | |
893 | |
894 (defvar ange-ftp-account-hashtable (ange-ftp-make-hashtable) | |
895 "Mapping between a HOST, USER pair and a ACCOUNT password for them.") | |
896 | |
897 (defvar ange-ftp-files-hashtable (ange-ftp-make-hashtable 97) | |
898 "Hash table for storing directories and their respective files.") | |
899 | |
900 (defvar ange-ftp-ls-cache-lsargs nil | |
901 "Last set of args used by ange-ftp-ls.") | |
902 | |
903 (defvar ange-ftp-ls-cache-file nil | |
904 "Last file passed to ange-ftp-ls.") | |
905 | |
906 (defvar ange-ftp-ls-cache-res nil | |
907 "Last result returned from ange-ftp-ls.") | |
908 | |
909 (defconst ange-ftp-expand-dir-hashtable (ange-ftp-make-hashtable)) | |
910 | |
911 (defconst ange-ftp-expand-dir-regexp "^5.0 \\([^: ]+\\):") | |
912 | |
913 ;; These are local variables in each FTP process buffer. | |
914 (defvar ange-ftp-hash-mark-unit nil) | |
915 (defvar ange-ftp-hash-mark-count nil) | |
916 (defvar ange-ftp-xfer-size nil) | |
917 (defvar ange-ftp-process-string nil) | |
918 (defvar ange-ftp-process-result-line nil) | |
919 (defvar ange-ftp-process-busy nil) | |
920 (defvar ange-ftp-process-result nil) | |
921 (defvar ange-ftp-process-multi-skip nil) | |
922 (defvar ange-ftp-process-msg nil) | |
923 (defvar ange-ftp-process-continue nil) | |
924 (defvar ange-ftp-last-percent nil) | |
925 | |
926 ;; These variables are bound by one function and examined by another. | |
927 ;; Leave them void globally for error checking. | |
928 (defvar ange-ftp-this-file) | |
929 (defvar ange-ftp-this-dir) | |
930 (defvar ange-ftp-this-user) | |
931 (defvar ange-ftp-this-host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
932 (defvar ange-ftp-this-msg) |
1106 | 933 (defvar ange-ftp-completion-ignored-pattern) |
934 (defvar ange-ftp-trample-marker) | |
935 | |
936 ;; New error symbols. | |
937 (put 'ftp-error 'error-conditions '(ftp-error file-error error)) | |
938 ;; (put 'ftp-error 'error-message "FTP error") | |
939 | |
940 ;;; ------------------------------------------------------------ | |
941 ;;; Enhanced message support. | |
942 ;;; ------------------------------------------------------------ | |
943 | |
944 (defun ange-ftp-message (fmt &rest args) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
945 "Display message in echo area, but indicate if truncated. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
946 Args are as in `message': a format string, plus arguments to be formatted." |
1106 | 947 (let ((msg (apply (function format) fmt args)) |
948 (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
|
949 (if noninteractive |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
950 msg |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
951 (if (>= (length msg) max) |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
952 ;; 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
|
953 (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
|
954 (message "%s" msg)))) |
1106 | 955 |
956 (defun ange-ftp-abbreviate-filename (file &optional new) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
957 "Abbreviate the file name FILE relative to the default-directory. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
958 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
|
959 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
|
960 (save-match-data |
1106 | 961 (if (and default-directory |
962 (string-match (concat "^" | |
963 (regexp-quote default-directory) | |
964 ".") file)) | |
965 (setq file (substring file (1- (match-end 0))))) | |
966 (if (and new | |
967 (string-equal (file-name-nondirectory file) | |
968 (file-name-nondirectory new))) | |
969 (setq file (file-name-directory file))) | |
970 (or file "./"))) | |
971 | |
972 ;;;; ------------------------------------------------------------ | |
973 ;;;; User / Host mapping support. | |
974 ;;;; ------------------------------------------------------------ | |
975 | |
976 (defun ange-ftp-set-user (host user) | |
977 "For a given HOST, set or change the default USER." | |
978 (interactive "sHost: \nsUser: ") | |
979 (ange-ftp-put-hash-entry host user ange-ftp-user-hashtable)) | |
980 | |
981 (defun ange-ftp-get-user (host) | |
982 "Given a HOST, return the default USER." | |
983 (ange-ftp-parse-netrc) | |
984 (let ((user (ange-ftp-get-hash-entry host ange-ftp-user-hashtable))) | |
985 (or user | |
986 (prog1 | |
987 (setq user | |
988 (cond ((stringp ange-ftp-default-user) | |
989 ;; We have a default name. Use it. | |
990 ange-ftp-default-user) | |
991 (ange-ftp-default-user | |
992 ;; Ask the user. | |
993 (let ((enable-recursive-minibuffers t)) | |
994 (read-string (format "User for %s: " host) | |
995 (user-login-name)))) | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
996 (ange-ftp-netrc-default-user) |
1106 | 997 ;; Default to the user's login name. |
998 (t | |
999 (user-login-name)))) | |
1000 (ange-ftp-set-user host user))))) | |
1001 | |
1002 ;;;; ------------------------------------------------------------ | |
1003 ;;;; Password support. | |
1004 ;;;; ------------------------------------------------------------ | |
1005 | |
1006 (defun ange-ftp-read-passwd (prompt &optional default) | |
1007 "Read a password, echoing `.' for each character typed. | |
1008 End with RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line. | |
1009 Optional DEFAULT is password to start with." | |
1010 (let ((pass (if default default "")) | |
1011 (c 0) | |
1012 (echo-keystrokes 0) | |
1013 (cursor-in-echo-area t)) | |
1014 (while (progn (message "%s%s" | |
1015 prompt | |
1016 (make-string (length pass) ?.)) | |
1017 (setq c (read-char)) | |
1018 (and (/= c ?\r) (/= c ?\n) (/= c ?\e))) | |
1019 (if (= c ?\C-u) | |
1020 (setq pass "") | |
1021 (if (and (/= c ?\b) (/= c ?\177)) | |
1022 (setq pass (concat pass (char-to-string c))) | |
1023 (if (> (length pass) 0) | |
1024 (setq pass (substring pass 0 -1)))))) | |
1025 (message "") | |
1603
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1026 (ange-ftp-repaint-minibuffer) |
1106 | 1027 pass)) |
1028 | |
1029 (defmacro ange-ftp-generate-passwd-key (host user) | |
1030 (` (concat (, host) "/" (, user)))) | |
1031 | |
1032 (defmacro ange-ftp-lookup-passwd (host user) | |
1033 (` (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key (, host) (, user)) | |
1034 ange-ftp-passwd-hashtable))) | |
1035 | |
1036 (defun ange-ftp-set-passwd (host user passwd) | |
1037 "For a given HOST and USER, set or change the associated PASSWORD." | |
1038 (interactive (list (read-string "Host: ") | |
1039 (read-string "User: ") | |
1040 (ange-ftp-read-passwd "Password: "))) | |
1041 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) | |
1042 passwd | |
1043 ange-ftp-passwd-hashtable)) | |
1044 | |
1045 (defun ange-ftp-get-host-with-passwd (user) | |
1046 "Given a USER, return a host we know the password for." | |
1047 (ange-ftp-parse-netrc) | |
1048 (catch 'found-one | |
1049 (ange-ftp-map-hashtable | |
1050 (function (lambda (host val) | |
1051 (if (ange-ftp-lookup-passwd host user) | |
1052 (throw 'found-one host)))) | |
1053 ange-ftp-user-hashtable) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1054 (save-match-data |
1106 | 1055 (ange-ftp-map-hashtable |
1056 (function | |
1057 (lambda (key value) | |
1058 (if (string-match "^[^/]*\\(/\\).*$" key) | |
1059 (let ((host (substring key 0 (match-beginning 1)))) | |
1060 (if (and (string-equal user (substring key (match-end 1))) | |
1061 value) | |
1062 (throw 'found-one host)))))) | |
1063 ange-ftp-passwd-hashtable)) | |
1064 nil)) | |
1065 | |
1066 (defun ange-ftp-get-passwd (host user) | |
1067 "Return the password for specified HOST and USER, asking user if necessary." | |
1068 (ange-ftp-parse-netrc) | |
1069 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
1070 ;; look up password in the hash table first; user might have overridden the |
1106 | 1071 ;; defaults. |
1072 (cond ((ange-ftp-lookup-passwd host user)) | |
1073 | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1074 ;; See if default user and password set. |
1106 | 1075 ((and (stringp ange-ftp-default-user) |
1076 ange-ftp-default-password | |
1077 (string-equal user ange-ftp-default-user)) | |
1078 ange-ftp-default-password) | |
1079 | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1080 ;; 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
|
1081 ((and (stringp ange-ftp-netrc-default-user) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1082 ange-ftp-netrc-default-password |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1083 (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
|
1084 ange-ftp-netrc-default-password) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1085 |
1106 | 1086 ;; anonymous ftp password is handled specially since there is an |
1087 ;; unwritten rule about how that is used on the Internet. | |
1088 ((and (or (string-equal user "anonymous") | |
1089 (string-equal user "ftp")) | |
1090 ange-ftp-generate-anonymous-password) | |
1091 (if (stringp ange-ftp-generate-anonymous-password) | |
1092 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
|
1093 user-mail-address)) |
1106 | 1094 |
1095 ;; see if same user has logged in to other hosts; if so then prompt | |
1096 ;; with the password that was used there. | |
1097 (t | |
1098 (let* ((other (ange-ftp-get-host-with-passwd user)) | |
1099 (passwd (if other | |
1100 | |
1101 ;; found another machine with the same user. | |
1102 ;; Try that account. | |
1103 (ange-ftp-read-passwd | |
1104 (format "passwd for %s@%s (same as %s@%s): " | |
1105 user host user other) | |
1106 (ange-ftp-lookup-passwd other user)) | |
1107 | |
1108 ;; I give up. Ask the user for the password. | |
1109 (ange-ftp-read-passwd | |
1110 (format "Password for %s@%s: " user host))))) | |
1111 (ange-ftp-set-passwd host user passwd) | |
1112 passwd)))) | |
1113 | |
1114 ;;;; ------------------------------------------------------------ | |
1115 ;;;; Account support | |
1116 ;;;; ------------------------------------------------------------ | |
1117 | |
1118 ;; Account passwords must be either specified in the .netrc file, or set | |
1119 ;; manually by calling ange-ftp-set-account. For the moment, ange-ftp doesn't | |
1120 ;; check to see whether the FTP process is actually prompting for an account | |
1121 ;; password. | |
1122 | |
1123 (defun ange-ftp-set-account (host user account) | |
1124 "For a given HOST and USER, set or change the associated ACCOUNT password." | |
1125 (interactive (list (read-string "Host: ") | |
1126 (read-string "User: ") | |
1127 (ange-ftp-read-passwd "Account password: "))) | |
1128 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) | |
1129 account | |
1130 ange-ftp-account-hashtable)) | |
1131 | |
1132 (defun ange-ftp-get-account (host user) | |
1133 "Given a HOST and USER, return the FTP account." | |
1134 (ange-ftp-parse-netrc) | |
1135 (or (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key host user) | |
1136 ange-ftp-account-hashtable) | |
1137 (and (stringp ange-ftp-default-user) | |
1138 (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
|
1139 ange-ftp-default-account) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1140 (and (stringp ange-ftp-netrc-default-user) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1141 (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
|
1142 ange-ftp-netrc-default-account))) |
1106 | 1143 |
1144 ;;;; ------------------------------------------------------------ | |
1145 ;;;; ~/.netrc support | |
1146 ;;;; ------------------------------------------------------------ | |
1147 | |
1148 (defun ange-ftp-chase-symlinks (file) | |
1233 | 1149 "Return the filename that FILE references, following all symbolic links." |
1106 | 1150 (let (temp) |
1151 (while (setq temp (ange-ftp-real-file-symlink-p file)) | |
1152 (setq file | |
1153 (if (file-name-absolute-p temp) | |
1154 temp | |
1155 (concat (file-name-directory file) temp))))) | |
1156 file) | |
1157 | |
7042 | 1158 ;; Move along current line looking for the value of the TOKEN. |
1159 ;; Valid separators between TOKEN and its value are commas and | |
1160 ;; whitespace. Second arg LIMIT is a limit for the search. | |
1161 | |
1106 | 1162 (defun ange-ftp-parse-netrc-token (token limit) |
1163 (if (search-forward token limit t) | |
1164 (let (beg) | |
1165 (skip-chars-forward ", \t\r\n" limit) | |
1166 (if (eq (following-char) ?\") ;quoted token value | |
1167 (progn (forward-char 1) | |
1168 (setq beg (point)) | |
1169 (skip-chars-forward "^\"" limit) | |
1170 (forward-char 1) | |
1171 (buffer-substring beg (1- (point)))) | |
1172 (setq beg (point)) | |
1173 (skip-chars-forward "^, \t\r\n" limit) | |
1174 (buffer-substring beg (point)))))) | |
1175 | |
7042 | 1176 ;; Extract the values for the tokens `machine', `login', |
1177 ;; `password' and `account' in the current buffer. If successful, | |
1178 ;; record the information found. | |
1179 | |
1106 | 1180 (defun ange-ftp-parse-netrc-group () |
1181 (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
|
1182 (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
|
1183 (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
|
1184 ;; 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
|
1185 (progn |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1186 (skip-chars-forward "^ \t\n") |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1187 (skip-chars-forward " \t\n") |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1188 (skip-chars-forward "^ \t\n")) |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1189 ;; Skip `default'. |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1190 (skip-chars-forward "^ \t\n")) |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1191 ;; 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
|
1192 ;; 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
|
1193 (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
|
1194 (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
|
1195 (point-max)))) |
1106 | 1196 machine login password account) |
1197 (setq machine (ange-ftp-parse-netrc-token "machine" end) | |
1198 login (ange-ftp-parse-netrc-token "login" end) | |
1199 password (ange-ftp-parse-netrc-token "password" end) | |
1200 account (ange-ftp-parse-netrc-token "account" end)) | |
1201 (if (and machine login) | |
1202 ;; found a `machine` token. | |
1203 (progn | |
1204 (ange-ftp-set-user machine login) | |
1205 (ange-ftp-set-passwd machine login password) | |
1206 (and account | |
1207 (ange-ftp-set-account machine login account))) | |
1208 (goto-char start) | |
1209 (if (search-forward "default" end t) | |
1210 ;; found a `default' token | |
1211 (progn | |
1212 (setq login (ange-ftp-parse-netrc-token "login" end) | |
1213 password (ange-ftp-parse-netrc-token "password" end) | |
1214 account (ange-ftp-parse-netrc-token "account" end)) | |
1215 (and login | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1216 (setq ange-ftp-netrc-default-user login)) |
1106 | 1217 (and password |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1218 (setq ange-ftp-netrc-default-password password)) |
1106 | 1219 (and account |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1220 (setq ange-ftp-netrc-default-account account))))) |
1106 | 1221 (goto-char end))) |
1222 | |
7042 | 1223 ;; Read in ~/.netrc, if one exists. If ~/.netrc file exists and has |
1224 ;; the correct permissions then extract the \`machine\', \`login\', | |
1225 ;; \`password\' and \`account\' information from within. | |
1226 | |
1106 | 1227 (defun ange-ftp-parse-netrc () |
1228 ;; We set this before actually doing it to avoid the possibility | |
1229 ;; of an infinite loop if ange-ftp-netrc-filename is an FTP file. | |
1230 (interactive) | |
11315
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1231 (let (file attr) |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1232 (let ((default-directory "/")) |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1233 (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
|
1234 (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
|
1235 (setq attr (ange-ftp-real-file-attributes file))) |
1106 | 1236 (if (and attr ; file exists. |
1237 (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
|
1238 (save-match-data |
1106 | 1239 (if (or ange-ftp-disable-netrc-security-check |
1240 (and (eq (nth 2 attr) (user-uid)) ; Same uids. | |
1241 (string-match ".r..------" (nth 8 attr)))) | |
1242 (save-excursion | |
1243 ;; we are cheating a bit here. I'm trying to do the equivalent | |
1244 ;; of find-file on the .netrc file, but then nuke it afterwards. | |
1245 ;; with the bit of logic below we should be able to have | |
1246 ;; encrypted .netrc files. | |
1247 (set-buffer (generate-new-buffer "*ftp-.netrc*")) | |
1248 (ange-ftp-real-insert-file-contents file) | |
1249 (setq buffer-file-name file) | |
1250 (setq default-directory (file-name-directory file)) | |
1251 (normal-mode t) | |
1252 (mapcar 'funcall find-file-hooks) | |
1253 (setq buffer-file-name nil) | |
1254 (goto-char (point-min)) | |
8397
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1255 (skip-chars-forward " \t\n") |
1106 | 1256 (while (not (eobp)) |
1257 (ange-ftp-parse-netrc-group)) | |
1258 (kill-buffer (current-buffer))) | |
1259 (ange-ftp-message "%s either not owned by you or badly protected." | |
1260 ange-ftp-netrc-filename) | |
1261 (sit-for 1)) | |
1262 (setq ange-ftp-netrc-modtime (nth 5 attr)))))) | |
1263 | |
7042 | 1264 ;; Return a list of prefixes of the form 'user@host:' to be used when |
1265 ;; completion is done in the root directory. | |
1266 | |
1106 | 1267 (defun ange-ftp-generate-root-prefixes () |
1268 (ange-ftp-parse-netrc) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1269 (save-match-data |
1106 | 1270 (let (res) |
1271 (ange-ftp-map-hashtable | |
1272 (function | |
1273 (lambda (key value) | |
1274 (if (string-match "^[^/]*\\(/\\).*$" key) | |
1275 (let ((host (substring key 0 (match-beginning 1))) | |
1276 (user (substring key (match-end 1)))) | |
1277 (setq res (cons (list (concat user "@" host ":")) | |
1278 res)))))) | |
1279 ange-ftp-passwd-hashtable) | |
1280 (ange-ftp-map-hashtable | |
1281 (function (lambda (host user) | |
1282 (setq res (cons (list (concat host ":")) | |
1283 res)))) | |
1284 ange-ftp-user-hashtable) | |
1285 (or res (list nil))))) | |
1286 | |
1287 ;;;; ------------------------------------------------------------ | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1288 ;;;; Remote file name syntax support. |
1106 | 1289 ;;;; ------------------------------------------------------------ |
1290 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1291 (defmacro ange-ftp-ftp-name-component (n ns name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1292 "Extract the Nth ftp file name component from NS." |
1106 | 1293 (` (let ((elt (nth (, n) (, ns)))) |
1294 (if (match-beginning elt) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1295 (substring (, name) (match-beginning elt) (match-end elt)))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1296 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1297 (defvar ange-ftp-ftp-name-arg "") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1298 (defvar ange-ftp-ftp-name-res nil) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1299 |
7042 | 1300 ;; Parse NAME according to `ange-ftp-name-format' (which see). |
1301 ;; 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
|
1302 (defun ange-ftp-ftp-name (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1303 (if (string-equal name ange-ftp-ftp-name-arg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1304 ange-ftp-ftp-name-res |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1305 (setq ange-ftp-ftp-name-arg name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1306 ange-ftp-ftp-name-res |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1307 (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
|
1308 (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
|
1309 (let* ((ns (cdr ange-ftp-name-format)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1310 (host (ange-ftp-ftp-name-component 0 ns name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1311 (user (ange-ftp-ftp-name-component 1 ns name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1312 (name (ange-ftp-ftp-name-component 2 ns name))) |
1106 | 1313 (if (zerop (length user)) |
1314 (setq user (ange-ftp-get-user host))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1315 (list host user name)) |
1106 | 1316 nil))))) |
1317 | |
7042 | 1318 ;; Take a FULLNAME that matches according to ange-ftp-name-format and |
1319 ;; replace the name component with NAME. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1320 (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
|
1321 (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
|
1322 (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
|
1323 (let* ((ns (cdr ange-ftp-name-format)) |
1106 | 1324 (elt (nth 2 ns))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1325 (concat (substring fullname 0 (match-beginning elt)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1326 name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1327 (substring fullname (match-end elt))))))) |
1106 | 1328 |
1329 ;;;; ------------------------------------------------------------ | |
1330 ;;;; Miscellaneous utils. | |
1331 ;;;; ------------------------------------------------------------ | |
1332 | |
1333 ;; (setq ange-ftp-tmp-keymap (make-sparse-keymap)) | |
1334 ;; (define-key ange-ftp-tmp-keymap "\C-m" 'exit-minibuffer) | |
1335 | |
1603
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1336 (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
|
1337 "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
|
1338 (message nil)) |
1106 | 1339 |
7042 | 1340 ;; Return the name of the buffer that collects output from the ftp process |
1341 ;; connected to the given HOST and USER pair. | |
1106 | 1342 (defun ange-ftp-ftp-process-buffer (host user) |
1343 (concat "*ftp " user "@" host "*")) | |
1344 | |
7042 | 1345 ;; Display the last chunk of output from the ftp process for the given HOST |
1346 ;; USER pair, and signal an error including MSG in the text. | |
1106 | 1347 (defun ange-ftp-error (host user msg) |
1348 (let ((cur (selected-window)) | |
1349 (pop-up-windows t)) | |
1350 (pop-to-buffer | |
1351 (get-buffer-create | |
1352 (ange-ftp-ftp-process-buffer host user))) | |
1353 (goto-char (point-max)) | |
1354 (select-window cur)) | |
1355 (signal 'ftp-error (list (format "FTP Error: %s" msg)))) | |
1356 | |
1357 (defun ange-ftp-set-buffer-mode () | |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
1358 "Set correct modes for the current buffer if visiting a remote file." |
1106 | 1359 (if (and (stringp buffer-file-name) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1360 (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
|
1361 (auto-save-mode ange-ftp-auto-save))) |
1106 | 1362 |
1363 (defun ange-ftp-kill-ftp-process (buffer) | |
1242
82774f4b69dd
(ange-ftp-kill-ftp-process): Delete spurious ".
Richard M. Stallman <rms@gnu.org>
parents:
1233
diff
changeset
|
1364 "Kill the FTP process associated with BUFFER. |
1233 | 1365 If the BUFFER's visited filename or default-directory is an ftp filename |
1106 | 1366 then kill the related ftp process." |
1367 (interactive "bKill FTP process associated with buffer: ") | |
1368 (if (null buffer) | |
1369 (setq buffer (current-buffer))) | |
1370 (let ((file (or (buffer-file-name) default-directory))) | |
1371 (if file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1372 (let ((parsed (ange-ftp-ftp-name (expand-file-name file)))) |
1106 | 1373 (if parsed |
1374 (let ((host (nth 0 parsed)) | |
1375 (user (nth 1 parsed))) | |
1376 (kill-buffer (ange-ftp-ftp-process-buffer host user)))))))) | |
1377 | |
1378 (defun ange-ftp-quote-string (string) | |
1379 "Quote any characters in STRING that may confuse the ftp process." | |
1380 (apply (function concat) | |
1381 (mapcar (function | |
1382 (lambda (char) | |
1383 (if (or (<= char ? ) | |
1384 (> char ?\~) | |
1385 (= char ?\") | |
1386 (= char ?\\)) | |
1387 (vector ?\\ char) | |
1388 (vector char)))) | |
1389 string))) | |
1390 | |
1391 (defun ange-ftp-barf-if-not-directory (directory) | |
1392 (or (file-directory-p directory) | |
1393 (signal 'file-error | |
1394 (list "Opening directory" | |
1395 (if (file-exists-p directory) | |
1396 "not a directory" | |
1397 "no such file or directory") | |
1398 directory)))) | |
1399 | |
1400 ;;;; ------------------------------------------------------------ | |
1401 ;;;; FTP process filter support. | |
1402 ;;;; ------------------------------------------------------------ | |
1403 | |
1404 (defun ange-ftp-process-handle-line (line proc) | |
7042 | 1405 "Look at the given LINE from the ftp process PROC. |
1406 Try to categorize it into one of four categories: | |
1407 good, skip, fatal, or unknown." | |
1106 | 1408 (cond ((string-match ange-ftp-xfer-size-msgs line) |
1409 (setq ange-ftp-xfer-size | |
1410 (ash (string-to-int (substring line | |
1411 (match-beginning 1) | |
1412 (match-end 1))) | |
1413 -10))) | |
1414 ((string-match ange-ftp-skip-msgs line) | |
1415 t) | |
1416 ((string-match ange-ftp-good-msgs line) | |
1417 (setq ange-ftp-process-busy nil | |
1418 ange-ftp-process-result t | |
1419 ange-ftp-process-result-line line)) | |
9664 | 1420 ;; Check this before checking for errors. |
1421 ;; Otherwise the last line of these three seems to be an error: | |
1422 ;; 230-see a significant impact from the move. For those of you who can't | |
1423 ;; 230-use DNS to resolve hostnames and get an error message like | |
1424 ;; 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
|
1425 ((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
|
1426 (setq ange-ftp-process-multi-skip t)) |
1106 | 1427 ((string-match ange-ftp-fatal-msgs line) |
1428 (delete-process proc) | |
1429 (setq ange-ftp-process-busy nil | |
1430 ange-ftp-process-result-line line)) | |
1431 (ange-ftp-process-multi-skip | |
1432 t) | |
1433 (t | |
1434 (setq ange-ftp-process-busy nil | |
1435 ange-ftp-process-result-line line)))) | |
1436 | |
1437 (defun ange-ftp-set-xfer-size (host user bytes) | |
1438 "Set the size of the next FTP transfer in bytes." | |
1439 (let ((proc (ange-ftp-get-process host user))) | |
1440 (if proc | |
1441 (let ((buf (process-buffer proc))) | |
1442 (if buf | |
1443 (save-excursion | |
1444 (set-buffer buf) | |
1445 (setq ange-ftp-xfer-size (ash bytes -10)))))))) | |
1446 | |
1447 (defun ange-ftp-process-handle-hash (str) | |
1448 "Remove hash marks from STRING and display count so far." | |
1449 (setq str (concat (substring str 0 (match-beginning 0)) | |
1450 (substring str (match-end 0))) | |
1451 ange-ftp-hash-mark-count (+ (- (match-end 0) | |
1452 (match-beginning 0)) | |
1453 ange-ftp-hash-mark-count)) | |
13594
b7cb31d324cf
(ange-ftp-process-handle-hash): If
Richard M. Stallman <rms@gnu.org>
parents:
13311
diff
changeset
|
1454 (and ange-ftp-hash-mark-unit |
b7cb31d324cf
(ange-ftp-process-handle-hash): If
Richard M. Stallman <rms@gnu.org>
parents:
13311
diff
changeset
|
1455 ange-ftp-process-msg |
1106 | 1456 ange-ftp-process-verbose |
1457 (not (eq (selected-window) (minibuffer-window))) | |
1458 (not (boundp 'search-message)) ;screws up isearch otherwise | |
1459 (not cursor-in-echo-area) ;screws up y-or-n-p otherwise | |
1460 (let ((kbytes (ash (* ange-ftp-hash-mark-unit | |
1461 ange-ftp-hash-mark-count) | |
1462 -6))) | |
1463 (if (zerop ange-ftp-xfer-size) | |
1464 (ange-ftp-message "%s...%dk" ange-ftp-process-msg kbytes) | |
1465 (let ((percent (/ (* 100 kbytes) ange-ftp-xfer-size))) | |
1466 ;; cut out the redisplay of identical %-age messages. | |
1467 (if (not (eq percent ange-ftp-last-percent)) | |
1468 (progn | |
1469 (setq ange-ftp-last-percent percent) | |
1470 (ange-ftp-message "%s...%d%%" ange-ftp-process-msg percent))))))) | |
1471 str) | |
1472 | |
7042 | 1473 ;; Call the function specified by CONT. CONT can be either a function |
1474 ;; or a list of a function and some args. The first two parameters | |
1475 ;; passed to the function will be RESULT and LINE. The remaining args | |
1476 ;; will be taken from CONT if a list was passed. | |
1477 | |
1106 | 1478 (defun ange-ftp-call-cont (cont result line) |
1479 (if cont | |
1480 (if (and (listp cont) | |
1481 (not (eq (car cont) 'lambda))) | |
1482 (apply (car cont) result line (cdr cont)) | |
1483 (funcall cont result line)))) | |
1484 | |
7042 | 1485 ;; Build up a complete line of output from the ftp PROCESS and pass it |
1486 ;; on to ange-ftp-process-handle-line to deal with. | |
1487 | |
1106 | 1488 (defun ange-ftp-process-filter (proc str) |
1489 (let ((buffer (process-buffer proc)) | |
1490 (old-buffer (current-buffer))) | |
1491 | |
1492 ;; see if the buffer is still around... it could have been deleted. | |
1493 (if (buffer-name buffer) | |
1494 (unwind-protect | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1495 (progn |
1106 | 1496 (set-buffer (process-buffer proc)) |
1497 | |
1498 ;; handle hash mark printing | |
13594
b7cb31d324cf
(ange-ftp-process-handle-hash): If
Richard M. Stallman <rms@gnu.org>
parents:
13311
diff
changeset
|
1499 (and ange-ftp-process-busy |
1106 | 1500 (string-match "^#+$" str) |
1501 (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
|
1502 (comint-output-filter proc str) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1503 ;; 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
|
1504 (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
|
1505 (process-mark proc))) |
1106 | 1506 (if ange-ftp-process-busy |
1507 (progn | |
1508 (setq ange-ftp-process-string (concat ange-ftp-process-string | |
1509 str)) | |
1510 | |
1511 ;; if we gave an empty password to the USER command earlier | |
1512 ;; then we should send a null password now. | |
1513 (if (string-match "Password: *$" ange-ftp-process-string) | |
1514 (send-string proc "\n")))) | |
1515 (while (and ange-ftp-process-busy | |
1516 (string-match "\n" ange-ftp-process-string)) | |
1517 (let ((line (substring ange-ftp-process-string | |
1518 0 | |
1519 (match-beginning 0)))) | |
1520 (setq ange-ftp-process-string (substring ange-ftp-process-string | |
1521 (match-end 0))) | |
1522 (while (string-match "^ftp> *" line) | |
1523 (setq line (substring line (match-end 0)))) | |
1524 (ange-ftp-process-handle-line line proc))) | |
1525 | |
1526 ;; has the ftp client finished? if so then do some clean-up | |
1527 ;; actions. | |
1528 (if (not ange-ftp-process-busy) | |
1529 (progn | |
1530 ;; reset the xfer size | |
1531 (setq ange-ftp-xfer-size 0) | |
1532 | |
1533 ;; issue the "done" message since we've finished. | |
1534 (if (and ange-ftp-process-msg | |
1535 ange-ftp-process-verbose | |
1536 ange-ftp-process-result) | |
1537 (progn | |
1538 (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
|
1539 (ange-ftp-repaint-minibuffer) |
1106 | 1540 (setq ange-ftp-process-msg nil))) |
1541 | |
1542 ;; is there a continuation we should be calling? if so, | |
1543 ;; we'd better call it, making sure we only call it once. | |
1544 (if ange-ftp-process-continue | |
1545 (let ((cont ange-ftp-process-continue)) | |
1546 (setq ange-ftp-process-continue nil) | |
1547 (ange-ftp-call-cont cont | |
1548 ange-ftp-process-result | |
1549 ange-ftp-process-result-line)))))) | |
1550 (set-buffer old-buffer))))) | |
1551 | |
1552 (defun ange-ftp-process-sentinel (proc str) | |
1553 "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
|
1554 (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
|
1555 (if (string-match "\\*ftp \\([^@]+\\)@\\([^*]+\\)\\*" name) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1556 (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
|
1557 (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
|
1558 (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
|
1559 (setq ange-ftp-ls-cache-file nil)) |
1106 | 1560 |
1561 ;;;; ------------------------------------------------------------ | |
1562 ;;;; Gateway support. | |
1563 ;;;; ------------------------------------------------------------ | |
1564 | |
1565 (defun ange-ftp-use-gateway-p (host) | |
1566 "Returns whether to access this host via a normal (non-smart) gateway." | |
1567 ;; yes, I know that I could simplify the following expression, but it is | |
1568 ;; clearer (to me at least) this way. | |
1569 (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
|
1570 (save-match-data |
1106 | 1571 (not (string-match ange-ftp-local-host-regexp host))))) |
1572 | |
1573 (defun ange-ftp-use-smart-gateway-p (host) | |
1574 "Returns whether to access this host via a smart gateway." | |
1575 (and ange-ftp-smart-gateway | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1576 (save-match-data |
1106 | 1577 (not (string-match ange-ftp-local-host-regexp host))))) |
1578 | |
1579 | |
1580 ;;; ------------------------------------------------------------ | |
1581 ;;; Temporary file location and deletion... | |
1582 ;;; ------------------------------------------------------------ | |
1583 | |
1584 (defvar ange-ftp-tmp-name-files ()) | |
1585 (defvar ange-ftp-tmp-name-hashtable (ange-ftp-make-hashtable 10)) | |
1586 (defvar ange-ftp-pid nil) | |
1587 | |
1588 (defun ange-ftp-get-pid () | |
1589 "Half-hearted attempt to get the current process's id." | |
1590 (setq ange-ftp-pid (substring (make-temp-name "") 1))) | |
1591 | |
1592 (defun ange-ftp-make-tmp-name (host) | |
1593 "This routine will return the name of a new file." | |
1594 (let* ((template (if (ange-ftp-use-gateway-p host) | |
1595 ange-ftp-gateway-tmp-name-template | |
1596 ange-ftp-tmp-name-template)) | |
1597 (pid (or ange-ftp-pid (ange-ftp-get-pid))) | |
1598 (start ?a) | |
1599 file entry) | |
1600 (while | |
1601 (progn | |
1602 (setq file (format "%s%c%s" template start pid)) | |
1603 (setq entry (intern file ange-ftp-tmp-name-hashtable)) | |
1604 (or (memq entry ange-ftp-tmp-name-files) | |
1605 (ange-ftp-real-file-exists-p file))) | |
1606 (if (> (setq start (1+ start)) ?z) | |
1607 (progn | |
1608 (setq template (concat template "X")) | |
1609 (setq start ?a)))) | |
1610 (setq ange-ftp-tmp-name-files | |
1611 (cons entry ange-ftp-tmp-name-files)) | |
1612 file)) | |
1613 | |
1614 (defun ange-ftp-del-tmp-name (temp) | |
1615 (setq ange-ftp-tmp-name-files | |
1616 (delq (intern temp ange-ftp-tmp-name-hashtable) | |
1617 ange-ftp-tmp-name-files)) | |
1618 (condition-case () | |
1619 (ange-ftp-real-delete-file temp) | |
1620 (error nil))) | |
1621 | |
1622 ;;;; ------------------------------------------------------------ | |
1623 ;;;; Interactive gateway program support. | |
1624 ;;;; ------------------------------------------------------------ | |
1625 | |
1626 (defvar ange-ftp-gwp-running t) | |
1627 (defvar ange-ftp-gwp-status nil) | |
1628 | |
1629 (defun ange-ftp-gwp-sentinel (proc str) | |
1630 (setq ange-ftp-gwp-running nil)) | |
1631 | |
1632 (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
|
1633 (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
|
1634 (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
|
1635 (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
|
1636 ;; 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
|
1637 (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
|
1638 (cond ((string-match "login: *$" str) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1639 (send-string proc |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1640 (concat |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1641 (let ((ange-ftp-default-user t)) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1642 (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
|
1643 "\n"))) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1644 ((string-match "Password: *$" str) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1645 (send-string proc |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1646 (concat |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1647 (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
|
1648 (ange-ftp-get-user |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1649 ange-ftp-gateway-host)) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1650 "\n"))) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1651 ((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
|
1652 (delete-process proc) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1653 (setq ange-ftp-gwp-running nil)) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1654 ((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
|
1655 (setq ange-ftp-gwp-running nil |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1656 ange-ftp-gwp-status t)))) |
1106 | 1657 |
1658 (defun ange-ftp-gwp-start (host user name args) | |
1659 "Login to the gateway machine and fire up an ftp process." | |
1660 (let* ((gw-user (ange-ftp-get-user ange-ftp-gateway-host)) | |
7042 | 1661 ;; It would be nice to make process-connection-type nil, |
1662 ;; but that doesn't work: ftp never responds. | |
1663 ;; Can anyone find a fix for that? | |
1664 (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
|
1665 (start-process name name |
7042 | 1666 ange-ftp-gateway-program |
1667 ange-ftp-gateway-host))) | |
1106 | 1668 (ftp (mapconcat (function identity) args " "))) |
1669 (process-kill-without-query proc) | |
1670 (set-process-sentinel proc (function ange-ftp-gwp-sentinel)) | |
1671 (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
|
1672 (save-excursion |
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1673 (set-buffer (process-buffer proc)) |
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1674 (internal-ange-ftp-mode) |
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1675 (set-marker (process-mark proc) (point))) |
1106 | 1676 (setq ange-ftp-gwp-running t |
1677 ange-ftp-gwp-status nil) | |
1678 (ange-ftp-message "Connecting to gateway %s..." ange-ftp-gateway-host) | |
1679 (while ange-ftp-gwp-running ;perform login sequence | |
1680 (accept-process-output proc)) | |
1681 (if (not ange-ftp-gwp-status) | |
1682 (ange-ftp-error host user "unable to login to gateway")) | |
1683 (ange-ftp-message "Connecting to gateway %s...done" ange-ftp-gateway-host) | |
1684 (setq ange-ftp-gwp-running t | |
1685 ange-ftp-gwp-status nil) | |
1686 (process-send-string proc ange-ftp-gateway-setup-term-command) | |
1687 (while ange-ftp-gwp-running ;zap ^M's and double echoing. | |
1688 (accept-process-output proc)) | |
1689 (if (not ange-ftp-gwp-status) | |
1690 (ange-ftp-error host user "unable to set terminal modes on gateway")) | |
1691 (setq ange-ftp-gwp-running t | |
1692 ange-ftp-gwp-status nil) | |
1693 (process-send-string proc (concat "exec " ftp "\n")) ;spawn ftp process | |
1694 proc)) | |
1695 | |
1696 ;;;; ------------------------------------------------------------ | |
1697 ;;;; Support for sending commands to the ftp process. | |
1698 ;;;; ------------------------------------------------------------ | |
1699 | |
1700 (defun ange-ftp-raw-send-cmd (proc cmd &optional msg cont nowait) | |
1701 "Low-level routine to send the given ftp CMD to the ftp PROCESS. | |
1702 MSG is an optional message to output before and after the command. | |
1703 If CONT is non-NIL then it is either a function or a list of function and | |
1704 some arguments. The function will be called when the ftp command has completed. | |
1705 If CONT is NIL then this routine will return \( RESULT . LINE \) where RESULT | |
1706 is whether the command was successful, and LINE is the line from the FTP | |
1707 process that caused the command to complete. | |
1708 If NOWAIT is given then the routine will return immediately the command has | |
1709 been queued with no result. CONT will still be called, however." | |
1710 (if (memq (process-status proc) '(run open)) | |
1711 (save-excursion | |
1712 (set-buffer (process-buffer proc)) | |
1713 (while ange-ftp-process-busy | |
3000
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1714 ;; This is a kludge to let user quit in case ftp gets hung. |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1715 ;; It matters because this function can be called from the filter. |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1716 ;; It is bad to allow quitting in a filter, but getting hung |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1717 ;; is worse. By binding quit-flag to nil, we might avoid |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1718 ;; most of the probability of getting screwed because the user |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1719 ;; wants to quit some command. |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1720 (let ((quit-flag nil) |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1721 (inhibit-quit nil)) |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1722 (accept-process-output))) |
1106 | 1723 (setq ange-ftp-process-string "" |
1724 ange-ftp-process-result-line "" | |
1725 ange-ftp-process-busy t | |
1726 ange-ftp-process-result nil | |
1727 ange-ftp-process-multi-skip nil | |
1728 ange-ftp-process-msg msg | |
1729 ange-ftp-process-continue cont | |
1730 ange-ftp-hash-mark-count 0 | |
1731 ange-ftp-last-percent -1 | |
1732 cmd (concat cmd "\n")) | |
1733 (and msg ange-ftp-process-verbose (ange-ftp-message "%s..." msg)) | |
1734 (goto-char (point-max)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1735 (move-marker comint-last-input-start (point)) |
1106 | 1736 ;; 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
|
1737 (save-match-data |
1106 | 1738 (if (string-match "^user \"[^\"]*\"" cmd) |
1739 (insert (substring cmd 0 (match-end 0)) " Turtle Power!\n") | |
1740 (insert cmd))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1741 (move-marker comint-last-input-end (point)) |
1106 | 1742 (send-string proc cmd) |
1743 (set-marker (process-mark proc) (point)) | |
1744 (if nowait | |
1745 nil | |
1746 ;; hang around for command to complete | |
1747 (while ange-ftp-process-busy | |
3000
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1748 ;; This is a kludge to let user quit in case ftp gets hung. |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1749 ;; It matters because this function can be called from the filter. |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1750 (let ((quit-flag nil) |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1751 (inhibit-quit nil)) |
0fdd43a27e15
(ange-ftp-raw-send-cmd): Allow quitting during accept-process-output.
Richard M. Stallman <rms@gnu.org>
parents:
2560
diff
changeset
|
1752 (accept-process-output proc))) |
1106 | 1753 (if cont |
1754 nil ;cont has already been called | |
1755 (cons ange-ftp-process-result ange-ftp-process-result-line)))))) | |
1756 | |
1757 (defun ange-ftp-nslookup-host (host) | |
1758 "Attempt to resolve the given HOSTNAME using nslookup if possible." | |
1759 (interactive "sHost: ") | |
1760 (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
|
1761 (let ((default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1762 (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
|
1763 default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1764 exec-directory)) |
7042 | 1765 ;; It would be nice to make process-connection-type nil, |
1766 ;; but that doesn't work: ftp never responds. | |
1767 ;; Can anyone find a fix for that? | |
1768 (proc (let ((process-connection-type t)) | |
1769 (start-process " *nslookup*" " *nslookup*" | |
1770 ange-ftp-nslookup-program host))) | |
1106 | 1771 (res host)) |
1772 (process-kill-without-query proc) | |
1773 (save-excursion | |
1774 (set-buffer (process-buffer proc)) | |
1775 (while (memq (process-status proc) '(run open)) | |
1776 (accept-process-output proc)) | |
1777 (goto-char (point-min)) | |
1778 (if (re-search-forward "Name:.*\nAddress: *\\(.*\\)$" nil t) | |
1779 (setq res (buffer-substring (match-beginning 1) | |
1780 (match-end 1)))) | |
1781 (kill-buffer (current-buffer))) | |
1782 res) | |
1783 host)) | |
1784 | |
1785 (defun ange-ftp-start-process (host user name) | |
1786 "Spawn a new ftp process ready to connect to machine HOST and give it NAME. | |
1787 If HOST is only ftp-able through a gateway machine then spawn a shell | |
1788 on the gateway machine to do the ftp instead." | |
1789 (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
|
1790 (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
|
1791 (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
|
1792 (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
|
1793 use-smart-ftp) |
1106 | 1794 ange-ftp-gateway-ftp-program-name |
1795 ange-ftp-ftp-program-name)) | |
1796 (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
|
1797 ;; 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
|
1798 ;; 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
|
1799 ;; 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
|
1800 ;; default-directory. |
26587880d2b4
(ange-ftp-start-process): Bind file-name-handler-alist to nil
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1801 (file-name-handler-alist) |
6192
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1802 (default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1803 (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
|
1804 default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1805 exec-directory)) |
1106 | 1806 proc) |
7042 | 1807 ;; It would be nice to make process-connection-type nil, |
1808 ;; but that doesn't work: ftp never responds. | |
1809 ;; 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
|
1810 (let ((process-connection-type t) |
7ccb22bca972
(ange-ftp-load): Added missing form to `cdr' down
Karl Heuer <kwzh@gnu.org>
parents:
13594
diff
changeset
|
1811 (process-environment process-environment)) |
7ccb22bca972
(ange-ftp-load): Added missing form to `cdr' down
Karl Heuer <kwzh@gnu.org>
parents:
13594
diff
changeset
|
1812 ;; 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
|
1813 (setenv "TERM" "dumb") |
7042 | 1814 (if use-gateway |
1815 (if ange-ftp-gateway-program-interactive | |
1816 (setq proc (ange-ftp-gwp-start host user name args)) | |
1817 (setq proc (apply 'start-process name name | |
1818 (append (list ange-ftp-gateway-program | |
1819 ange-ftp-gateway-host) | |
1820 args)))) | |
1821 (setq proc (apply 'start-process name name args)))) | |
1106 | 1822 (process-kill-without-query proc) |
1823 (save-excursion | |
1824 (set-buffer (process-buffer proc)) | |
3502
c2b4a5b9c8d5
(internal-ange-ftp-mode): Renamed from ange-ftp-mode. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
3441
diff
changeset
|
1825 (internal-ange-ftp-mode)) |
1106 | 1826 (set-process-sentinel proc (function ange-ftp-process-sentinel)) |
1827 (set-process-filter proc (function ange-ftp-process-filter)) | |
1828 (accept-process-output proc) ;wait for ftp startup message | |
1829 proc)) | |
1830 | |
3502
c2b4a5b9c8d5
(internal-ange-ftp-mode): Renamed from ange-ftp-mode. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
3441
diff
changeset
|
1831 (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
|
1832 "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
|
1833 |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1834 \\{comint-mode-map}" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1835 (interactive) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1836 (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
|
1837 (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
|
1838 (setq mode-name "Internal Ange-ftp") |
1106 | 1839 (let ((proc (get-buffer-process (current-buffer)))) |
1840 (goto-char (point-max)) | |
1841 (set-marker (process-mark proc) (point)) | |
1842 (make-local-variable 'ange-ftp-process-string) | |
1843 (setq ange-ftp-process-string "") | |
1844 (make-local-variable 'ange-ftp-process-busy) | |
1845 (make-local-variable 'ange-ftp-process-result) | |
1846 (make-local-variable 'ange-ftp-process-msg) | |
1847 (make-local-variable 'ange-ftp-process-multi-skip) | |
1848 (make-local-variable 'ange-ftp-process-result-line) | |
1849 (make-local-variable 'ange-ftp-process-continue) | |
1850 (make-local-variable 'ange-ftp-hash-mark-count) | |
1851 (make-local-variable 'ange-ftp-binary-hash-mark-size) | |
1852 (make-local-variable 'ange-ftp-ascii-hash-mark-size) | |
1853 (make-local-variable 'ange-ftp-hash-mark-unit) | |
1854 (make-local-variable 'ange-ftp-xfer-size) | |
1855 (make-local-variable 'ange-ftp-last-percent) | |
1856 (setq ange-ftp-hash-mark-count 0) | |
1857 (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
|
1858 (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
|
1859 |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1860 (setq comint-prompt-regexp "^ftp> ") |
13278
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
1861 (make-local-variable 'comint-password-prompt-regexp) |
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
1862 ;; This is a regexp that can't match anything. |
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
1863 ;; ange-ftp has its own ways of handling passwords. |
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
1864 (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
|
1865 (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
|
1866 (setq paragraph-start comint-prompt-regexp))) |
1106 | 1867 |
1868 (defun ange-ftp-smart-login (host user pass account proc) | |
1869 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
1870 PROC is the FTP-client's process. This routine uses the smart-gateway | |
1871 host specified in ``ange-ftp-gateway-host''." | |
1872 (let ((result (ange-ftp-raw-send-cmd | |
1873 proc | |
1874 (format "open %s %s" | |
1875 (ange-ftp-nslookup-host ange-ftp-gateway-host) | |
1876 ange-ftp-smart-gateway-port) | |
1877 (format "Opening FTP connection to %s via %s" | |
1878 host | |
1879 ange-ftp-gateway-host)))) | |
1880 (or (car result) | |
1881 (ange-ftp-error host user | |
1882 (concat "OPEN request failed: " | |
1883 (cdr result)))) | |
1884 (setq result (ange-ftp-raw-send-cmd | |
1885 proc (format "user \"%s\"@%s %s %s" | |
1886 user | |
1887 (ange-ftp-nslookup-host host) | |
1888 pass | |
1889 account) | |
1890 (format "Logging in as user %s@%s" | |
1891 user host))) | |
1892 (or (car result) | |
1893 (progn | |
1894 (ange-ftp-set-passwd host user nil) ; reset password | |
1895 (ange-ftp-set-account host user nil) ; reset account | |
1896 (ange-ftp-error host user | |
1897 (concat "USER request failed: " | |
1898 (cdr result))))))) | |
1899 | |
1900 (defun ange-ftp-normal-login (host user pass account proc) | |
1901 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
1902 PROC is the process to the FTP-client." | |
12441
597f9723ddf6
(ange-ftp-normal-login): if ange-ftp-smart-gateway
Richard M. Stallman <rms@gnu.org>
parents:
11315
diff
changeset
|
1903 (let* ((nshost (ange-ftp-nslookup-host host)) |
597f9723ddf6
(ange-ftp-normal-login): if ange-ftp-smart-gateway
Richard M. Stallman <rms@gnu.org>
parents:
11315
diff
changeset
|
1904 (result (ange-ftp-raw-send-cmd |
1106 | 1905 proc |
12441
597f9723ddf6
(ange-ftp-normal-login): if ange-ftp-smart-gateway
Richard M. Stallman <rms@gnu.org>
parents:
11315
diff
changeset
|
1906 (format "open %s" nshost) |
1106 | 1907 (format "Opening FTP connection to %s" host)))) |
1908 (or (car result) | |
1909 (ange-ftp-error host user | |
1910 (concat "OPEN request failed: " | |
1911 (cdr result)))) | |
1912 (setq result (ange-ftp-raw-send-cmd | |
1913 proc | |
12441
597f9723ddf6
(ange-ftp-normal-login): if ange-ftp-smart-gateway
Richard M. Stallman <rms@gnu.org>
parents:
11315
diff
changeset
|
1914 (if (ange-ftp-use-smart-gateway-p host) |
597f9723ddf6
(ange-ftp-normal-login): if ange-ftp-smart-gateway
Richard M. Stallman <rms@gnu.org>
parents:
11315
diff
changeset
|
1915 (format "user \"%s\"@%s %s %s" user nshost pass account) |
597f9723ddf6
(ange-ftp-normal-login): if ange-ftp-smart-gateway
Richard M. Stallman <rms@gnu.org>
parents:
11315
diff
changeset
|
1916 (format "user \"%s\" %s %s" user pass account)) |
1106 | 1917 (format "Logging in as user %s@%s" user host))) |
1918 (or (car result) | |
1919 (progn | |
1920 (ange-ftp-set-passwd host user nil) ;reset password. | |
1921 (ange-ftp-set-account host user nil) ;reset account. | |
1922 (ange-ftp-error host user | |
1923 (concat "USER request failed: " | |
1924 (cdr result))))))) | |
1925 | |
5480
f193f880c524
(ange-ftp-hash-mark-msgs): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5350
diff
changeset
|
1926 ;; ange@hplb.hpl.hp.com says this should not be changed. |
1106 | 1927 (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
|
1928 "[hH]ash mark [^0-9]*\\([0-9]+\\)" |
1106 | 1929 "*Regexp matching the FTP client's output upon doing a HASH command.") |
1930 | |
1931 (defun ange-ftp-guess-hash-mark-size (proc) | |
1932 (if ange-ftp-send-hash | |
1933 (save-excursion | |
1934 (set-buffer (process-buffer proc)) | |
1935 (let* ((status (ange-ftp-raw-send-cmd proc "hash")) | |
1936 (result (car status)) | |
1937 (line (cdr status))) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1938 (save-match-data |
1106 | 1939 (if (string-match ange-ftp-hash-mark-msgs line) |
1940 (let ((size (string-to-int | |
1941 (substring line | |
1942 (match-beginning 1) | |
1943 (match-end 1))))) | |
1944 (setq ange-ftp-ascii-hash-mark-size size | |
1945 ange-ftp-hash-mark-unit (ash size -4)) | |
1946 | |
1947 ;; if a default value for this is set, use that value. | |
1948 (or ange-ftp-binary-hash-mark-size | |
1949 (setq ange-ftp-binary-hash-mark-size size))))))))) | |
1950 | |
1951 (defun ange-ftp-get-process (host user) | |
7042 | 1952 "Return an FTP subprocess connected to HOST and logged in as USER. |
1953 Create a new process if needed." | |
1106 | 1954 (let* ((name (ange-ftp-ftp-process-buffer host user)) |
1955 (proc (get-process name))) | |
1956 (if (and proc (memq (process-status proc) '(run open))) | |
1957 proc | |
1958 (let ((pass (ange-ftp-quote-string | |
1959 (ange-ftp-get-passwd host user))) | |
1960 (account (ange-ftp-quote-string | |
1961 (ange-ftp-get-account host user)))) | |
1962 ;; grab a suitable process. | |
1963 (setq proc (ange-ftp-start-process host user name)) | |
1964 | |
1965 ;; 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
|
1966 (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
|
1967 ange-ftp-gateway-host) |
1106 | 1968 (ange-ftp-smart-login host user pass account proc) |
1969 (ange-ftp-normal-login host user pass account proc)) | |
1970 | |
1971 ;; Tell client to send back hash-marks as progress. It isn't usually | |
1972 ;; fatal if this command fails. | |
1973 (ange-ftp-guess-hash-mark-size proc) | |
1974 | |
1975 ;; Guess at the host type. | |
1976 (ange-ftp-guess-host-type host user) | |
1977 | |
1978 ;; Run any user-specified hooks. Note that proc, host and user are | |
1979 ;; dynamically bound at this point. | |
1980 (run-hooks 'ange-ftp-process-startup-hook)) | |
1981 proc))) | |
1982 | |
1983 ;; Variables for caching host and host-type | |
1984 (defvar ange-ftp-host-cache nil) | |
1985 (defvar ange-ftp-host-type-cache nil) | |
1986 | |
1987 ;; If ange-ftp-host-type is called with the optional user | |
1988 ;; argument, it will attempt to guess the host type by connecting | |
1989 ;; as user, if necessary. For efficiency, I have tried to give this | |
1990 ;; optional second argument only when necessary. Have I missed any calls | |
1991 ;; to ange-ftp-host-type where it should have been supplied? | |
1992 | |
1993 (defun ange-ftp-host-type (host &optional user) | |
1994 "Return a symbol which represents the type of the HOST given. | |
1995 If the optional argument USER is given, attempts to guess the | |
1996 host-type by logging in as USER." | |
1997 (if (eq host ange-ftp-host-cache) | |
1998 ange-ftp-host-type-cache | |
1999 ;; Trigger an ftp connection, in case we need to guess at the host type. | |
2000 (if (and user (ange-ftp-get-process host user) (eq host ange-ftp-host-cache)) | |
2001 ange-ftp-host-type-cache | |
2002 (setq ange-ftp-host-cache host | |
2003 ange-ftp-host-type-cache | |
2004 (cond ((ange-ftp-dumb-unix-host host) | |
2005 'dumb-unix) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2006 ;; ((and (fboundp 'ange-ftp-vos-host) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2007 ;; (ange-ftp-vos-host host)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2008 ;; 'vos) |
1106 | 2009 ((and (fboundp 'ange-ftp-vms-host) |
2010 (ange-ftp-vms-host host)) | |
2011 'vms) | |
2012 ((and (fboundp 'ange-ftp-mts-host) | |
2013 (ange-ftp-mts-host host)) | |
2014 'mts) | |
2015 ((and (fboundp 'ange-ftp-cms-host) | |
2016 (ange-ftp-cms-host host)) | |
2017 'cms) | |
2018 (t | |
2019 'unix)))))) | |
2020 | |
2021 ;; It would be nice to abstract the functions ange-ftp-TYPE-host and | |
2022 ;; ange-ftp-add-TYPE-host. The trick is to abstract these functions | |
2023 ;; without sacrificing speed. Also, having separate variables | |
2024 ;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to | |
2025 ;; set an alist to indicate that a host is of a given type. Even with | |
2026 ;; automatic host type recognition, setting a regexp is still a good idea | |
2027 ;; (for efficiency) if you log into a particular non-UNIX host frequently. | |
2028 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2029 (defvar ange-ftp-fix-name-func-alist nil |
7042 | 2030 "Alist saying how to convert file name to the host's syntax. |
2031 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
|
2032 which can change a UNIX file name into a name more suitable for a host of type |
1106 | 2033 TYPE.") |
2034 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2035 (defvar ange-ftp-fix-dir-name-func-alist nil |
7042 | 2036 "Alist saying how to convert directory name to the host's syntax. |
2037 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
|
2038 which can change UNIX directory name into a directory name more suitable |
1106 | 2039 for a host of type TYPE.") |
2040 | |
2041 ;; *** Perhaps the sense of this variable should be inverted, since there | |
2042 ;; *** is only 1 host type that can take ls-style listing options. | |
2043 (defvar ange-ftp-dumb-host-types '(dumb-unix) | |
2044 "List of host types that can't take UNIX ls-style listing options.") | |
2045 | |
2046 (defun ange-ftp-send-cmd (host user cmd &optional msg cont nowait) | |
2047 "Find an ftp process connected to HOST logged in as USER and send it CMD. | |
2048 MSG is an optional status message to be output before and after issuing the | |
2049 command. | |
2050 See the documentation for ange-ftp-raw-send-cmd for a description of CONT | |
2051 and NOWAIT." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2052 ;; Handle conversion to remote file name syntax and remote ls option |
1106 | 2053 ;; capability. |
2054 (let ((cmd0 (car cmd)) | |
2055 (cmd1 (nth 1 cmd)) | |
4498
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2056 (ange-ftp-this-user user) |
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2057 (ange-ftp-this-host host) |
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2058 (ange-ftp-this-msg msg) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2059 cmd2 cmd3 host-type fix-name-func) |
1106 | 2060 |
2061 (cond | |
2062 | |
2063 ;; pwd case (We don't care what host-type.) | |
2064 ((null cmd1)) | |
2065 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2066 ;; cmd == 'dir "remote-name" "local-name" "ls-switches" |
1106 | 2067 ((progn |
2068 (setq cmd2 (nth 2 cmd) | |
2069 host-type (ange-ftp-host-type host user)) | |
2070 ;; This will trigger an FTP login, if one doesn't exist | |
2071 (eq cmd0 'dir)) | |
2072 (setq cmd1 (funcall | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2073 (or (cdr (assq host-type ange-ftp-fix-dir-name-func-alist)) |
1106 | 2074 'identity) |
2075 cmd1) | |
2076 cmd3 (nth 3 cmd)) | |
2077 ;; Need to deal with the HP-UX ftp bug. This should also allow | |
2078 ;; us to resolve symlinks to directories on SysV machines. (Sebastian will | |
2079 ;; be happy.) | |
2080 (and (eq host-type 'unix) | |
2081 (string-match "/$" cmd1) | |
2082 (not (string-match "R" cmd3)) | |
2083 (setq cmd1 (concat cmd1 "."))) | |
2084 ;; If the remote ls can take switches, put them in | |
2085 (or (memq host-type ange-ftp-dumb-host-types) | |
2086 (setq cmd0 'ls | |
2087 cmd1 (format "\"%s %s\"" cmd3 cmd1)))) | |
2088 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2089 ;; 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
|
2090 ((progn |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2091 (setq fix-name-func (or (cdr (assq host-type |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2092 ange-ftp-fix-name-func-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2093 'identity)) |
1106 | 2094 (memq cmd0 '(get delete mkdir rmdir cd))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2095 (setq cmd1 (funcall fix-name-func cmd1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2096 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2097 ;; Second argument is the remote name |
1106 | 2098 ((memq cmd0 '(append put chmod)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2099 (setq cmd2 (funcall fix-name-func cmd2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2100 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2101 ;; Both arguments are remote names |
1106 | 2102 ((eq cmd0 'rename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2103 (setq cmd1 (funcall fix-name-func cmd1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2104 cmd2 (funcall fix-name-func cmd2)))) |
1106 | 2105 |
2106 ;; Turn the command into one long string | |
2107 (setq cmd0 (symbol-name cmd0)) | |
2108 (setq cmd (concat cmd0 | |
2109 (and cmd1 (concat " " cmd1)) | |
2110 (and cmd2 (concat " " cmd2)))) | |
2111 | |
2112 ;; Actually send the resulting command. | |
2113 (let (afsc-result | |
2114 afsc-line) | |
2115 (ange-ftp-raw-send-cmd | |
2116 (ange-ftp-get-process host user) | |
2117 cmd | |
2118 msg | |
2119 (list | |
2120 (function (lambda (result line host user | |
2121 cmd msg cont nowait) | |
2122 (or cont | |
2123 (setq afsc-result result | |
2124 afsc-line line)) | |
2125 (if result | |
2126 (ange-ftp-call-cont cont result line) | |
2127 (ange-ftp-raw-send-cmd | |
2128 (ange-ftp-get-process host user) | |
2129 cmd | |
2130 msg | |
2131 (list | |
2132 (function (lambda (result line cont) | |
2133 (or cont | |
2134 (setq afsc-result result | |
2135 afsc-line line)) | |
2136 (ange-ftp-call-cont cont result line))) | |
2137 cont) | |
2138 nowait)))) | |
2139 host user cmd msg cont nowait) | |
2140 nowait) | |
2141 | |
2142 (if nowait | |
2143 nil | |
2144 (if cont | |
2145 nil | |
2146 (cons afsc-result afsc-line)))))) | |
2147 | |
2148 ;; It might be nice to message users about the host type identified, | |
2149 ;; but there is so much other messaging going on, it would not be | |
2150 ;; seen. No point in slowing things down just so users can read | |
2151 ;; a host type message. | |
2152 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2153 (defconst ange-ftp-cms-name-template |
1106 | 2154 (concat |
2155 "^[-A-Z0-9$*][-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?" | |
2156 "[-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
|
2157 (defconst ange-ftp-vms-name-template |
1106 | 2158 "^[-A-Z0-9_$]+:\\[[-A-Z0-9_$]+\\(\\.[-A-Z0-9_$]+\\)*\\]$") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2159 (defconst ange-ftp-mts-name-template |
1106 | 2160 "^[A-Z0-9._][A-Z0-9._][A-Z0-9._][A-Z0-9._]:$") |
2161 | |
2162 (defun ange-ftp-guess-host-type (host user) | |
7042 | 2163 "Guess at the the host type of HOST. |
2164 Works by doing a pwd and examining the directory syntax." | |
1106 | 2165 (let ((host-type (ange-ftp-host-type host)) |
2166 (key (concat host "/" user "/~"))) | |
2167 (if (eq host-type 'unix) | |
2168 ;; 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
|
2169 (save-match-data |
1106 | 2170 (let* ((result (ange-ftp-get-pwd host user)) |
2171 (dir (car result)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2172 fix-name-func) |
1106 | 2173 (cond ((null dir) |
2174 (message "Warning! Unable to get home directory") | |
2175 (sit-for 1) | |
2176 (if (string-match | |
2177 "^450 No current working directory defined$" | |
2178 (cdr result)) | |
2179 | |
2180 ;; We'll assume that if pwd bombs with this | |
2181 ;; error message, then it's CMS. | |
2182 (progn | |
2183 (ange-ftp-add-cms-host host) | |
2184 (setq ange-ftp-host-cache host | |
2185 ange-ftp-host-type-cache 'cms)))) | |
2186 | |
2187 ;; try for VMS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2188 ((string-match ange-ftp-vms-name-template dir) |
1106 | 2189 (ange-ftp-add-vms-host host) |
2190 ;; The add-host functions clear the host type cache. | |
2191 ;; Therefore, need to set the cache afterwards. | |
2192 (setq ange-ftp-host-cache host | |
2193 ange-ftp-host-type-cache 'vms)) | |
2194 | |
2195 ;; try for MTS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2196 ((string-match ange-ftp-mts-name-template dir) |
1106 | 2197 (ange-ftp-add-mts-host host) |
2198 (setq ange-ftp-host-cache host | |
2199 ange-ftp-host-type-cache 'mts)) | |
2200 | |
2201 ;; try for CMS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2202 ((string-match ange-ftp-cms-name-template dir) |
1106 | 2203 (ange-ftp-add-cms-host host) |
2204 (setq ange-ftp-host-cache host | |
2205 ange-ftp-host-type-cache 'cms)) | |
2206 | |
2207 ;; assume UN*X | |
2208 (t | |
2209 (setq ange-ftp-host-cache host | |
2210 ange-ftp-host-type-cache 'unix))) | |
2211 | |
2212 ;; Now that we have done a pwd, might as well put it in | |
2213 ;; the expand-dir hashtable. | |
2214 (let ((ange-ftp-this-user user) | |
2215 (ange-ftp-this-host host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2216 (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
|
2217 ange-ftp-fix-name-func-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2218 (if fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2219 (setq dir (funcall fix-name-func dir 'reverse)))) |
1106 | 2220 (ange-ftp-put-hash-entry key dir |
2221 ange-ftp-expand-dir-hashtable)))) | |
2222 | |
2223 ;; In the special case of CMS make sure that know the | |
2224 ;; expansion of the home minidisk now, because we will | |
2225 ;; be doing a lot of cd's. | |
2226 (if (and (eq host-type 'cms) | |
2227 (not (ange-ftp-hash-entry-exists-p | |
2228 key ange-ftp-expand-dir-hashtable))) | |
2229 (let ((dir (car (ange-ftp-get-pwd host user)))) | |
2230 (if dir | |
2231 (ange-ftp-put-hash-entry key (concat "/" dir) | |
2232 ange-ftp-expand-dir-hashtable) | |
2233 (message "Warning! Unable to get home directory") | |
2234 (sit-for 1)))))) | |
2235 | |
2236 | |
2237 ;;;; ------------------------------------------------------------ | |
2238 ;;;; Remote file and directory listing support. | |
2239 ;;;; ------------------------------------------------------------ | |
2240 | |
7042 | 2241 ;; Returns whether HOST's FTP server doesn't like \'ls\' or \'dir\' commands |
2242 ;; to take switch arguments. | |
1106 | 2243 (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
|
2244 (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
|
2245 (save-match-data |
1106 | 2246 (string-match ange-ftp-dumb-unix-host-regexp host)))) |
2247 | |
2248 (defun ange-ftp-add-dumb-unix-host (host) | |
2249 "Interactively adds a given HOST to ange-ftp-dumb-unix-host-regexp." | |
2250 (interactive | |
2251 (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
|
2252 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2253 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 2254 (if (not (ange-ftp-dumb-unix-host host)) |
2255 (setq ange-ftp-dumb-unix-host-regexp | |
2256 (concat "^" (regexp-quote host) "$" | |
2257 (and ange-ftp-dumb-unix-host-regexp "\\|") | |
2258 ange-ftp-dumb-unix-host-regexp) | |
2259 ange-ftp-host-cache nil))) | |
2260 | |
2261 (defvar ange-ftp-parse-list-func-alist nil | |
7042 | 2262 "Alist saying how to parse directory listings for certain OS types. |
2263 Association list of \( TYPE \. FUNC \) pairs. The FUNC is a routine | |
1106 | 2264 which can parse the output from a DIR listing for a host of type TYPE.") |
2265 | |
2266 ;; With no-error nil, this function returns: | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2267 ;; an error if file is not an ange-ftp-name |
1106 | 2268 ;; (This should never happen.) |
2269 ;; an error if either the listing is unreadable or there is an ftp error. | |
2270 ;; the listing (a string), if everything works. | |
2271 ;; | |
2272 ;; With no-error t, it returns: | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2273 ;; an error if not an ange-ftp-name |
14040 | 2274 ;; error if listing is unreadable (most likely caused by a slow connection) |
1106 | 2275 ;; nil if ftp error (this is because although asking to list a nonexistent |
2276 ;; directory on a remote unix machine usually (except | |
2277 ;; maybe for dumb hosts) returns an ls error, but no | |
2278 ;; ftp error, if the same is done on a VMS machine, | |
2279 ;; an ftp error is returned. Need to trap the error | |
2280 ;; so we can go on and try to list the parent.) | |
2281 ;; the listing, if everything works. | |
2282 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2283 ;; 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
|
2284 ;; 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
|
2285 ;; of FILE within the directory specified by `default-directory'. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2286 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2287 (defun ange-ftp-ls (file lsargs parse &optional no-error wildcard) |
1106 | 2288 "Return the output of an `DIR' or `ls' command done over ftp. |
2289 FILE is the full name of the remote file, LSARGS is any args to pass to the | |
2290 `ls' command, and PARSE specifies that the output should be parsed and stored | |
2291 away in the internal cache." | |
2292 ;; If parse is t, we assume that file is a directory. i.e. we only parse | |
2293 ;; full directory listings. | |
2294 (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
|
2295 (parsed (ange-ftp-ftp-name ange-ftp-this-file))) |
1106 | 2296 (if parsed |
2297 (let* ((host (nth 0 parsed)) | |
2298 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2299 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2300 (key (directory-file-name ange-ftp-this-file)) |
2301 (host-type (ange-ftp-host-type host user)) | |
2302 (dumb (memq host-type ange-ftp-dumb-host-types)) | |
2303 result | |
2304 temp | |
2305 lscmd parse-func) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2306 (if (string-equal name "") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2307 (setq name |
1106 | 2308 (ange-ftp-real-file-name-as-directory |
2309 (ange-ftp-expand-dir host user "~")))) | |
2310 (if (and ange-ftp-ls-cache-file | |
2311 (string-equal key ange-ftp-ls-cache-file) | |
2312 ;; Don't care about lsargs for dumb hosts. | |
2313 (or dumb (string-equal lsargs ange-ftp-ls-cache-lsargs))) | |
2314 ange-ftp-ls-cache-res | |
2315 (setq temp (ange-ftp-make-tmp-name host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2316 (if wildcard |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2317 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2318 (ange-ftp-cd host user (file-name-directory name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2319 (setq lscmd (list 'dir file temp lsargs))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2320 (setq lscmd (list 'dir name temp lsargs))) |
1106 | 2321 (unwind-protect |
2322 (if (car (setq result (ange-ftp-send-cmd | |
2323 host | |
2324 user | |
2325 lscmd | |
2326 (format "Listing %s" | |
2327 (ange-ftp-abbreviate-filename | |
2328 ange-ftp-this-file))))) | |
2329 (save-excursion | |
2330 (set-buffer (get-buffer-create | |
2331 ange-ftp-data-buffer-name)) | |
2332 (erase-buffer) | |
2333 (if (ange-ftp-real-file-readable-p temp) | |
2334 (ange-ftp-real-insert-file-contents temp) | |
2335 (sleep-for ange-ftp-retry-time) | |
2336 ;wait for file to possibly appear | |
2337 (if (ange-ftp-real-file-readable-p temp) | |
2338 ;; Try again. | |
2339 (ange-ftp-real-insert-file-contents temp) | |
2340 (ange-ftp-error host user | |
2341 (format | |
2342 "list data file %s not readable" | |
2343 temp)))) | |
2344 (if parse | |
2345 (ange-ftp-set-files | |
2346 ange-ftp-this-file | |
2347 (if (setq | |
2348 parse-func | |
2349 (cdr (assq host-type | |
2350 ange-ftp-parse-list-func-alist))) | |
2351 (funcall parse-func) | |
2352 (ange-ftp-parse-dired-listing lsargs)))) | |
2353 (setq ange-ftp-ls-cache-file key | |
2354 ange-ftp-ls-cache-lsargs lsargs | |
2355 ; For dumb hosts-types this is | |
2356 ; meaningless but harmless. | |
2357 ange-ftp-ls-cache-res (buffer-string)) | |
2358 ;; (kill-buffer (current-buffer)) | |
2359 ange-ftp-ls-cache-res) | |
2360 (if no-error | |
2361 nil | |
2362 (ange-ftp-error host user | |
2363 (concat "DIR failed: " (cdr result))))) | |
2364 (ange-ftp-del-tmp-name temp)))) | |
2365 (error "Should never happen. Please report. Bug ref. no.: 1")))) | |
2366 | |
2367 ;;;; ------------------------------------------------------------ | |
2368 ;;;; Directory information caching support. | |
2369 ;;;; ------------------------------------------------------------ | |
2370 | |
2371 (defconst ange-ftp-date-regexp | |
2372 (concat | |
2373 " \\(Jan\\|Feb\\|Mar\\|Apr\\|May\\|Jun\\|Jul\\|Aug\\|Sep\\|Oct" | |
2374 "\\|Nov\\|Dec\\) +[0-3]?[0-9] ")) | |
2375 | |
2376 (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
|
2377 "Alist saying how to add file entries on certain OS types. |
7042 | 2378 Association list of pairs \( TYPE \. FUNC \), where FUNC |
1106 | 2379 is a function to be used to add a file entry for the OS TYPE. The |
2380 main reason for this alist is to deal with file versions in VMS.") | |
2381 | |
2382 (defvar ange-ftp-delete-file-entry-alist nil | |
7042 | 2383 "Alist saying how to delete files on certain OS types. |
2384 Association list of pairs \( TYPE \. FUNC \), where FUNC | |
1106 | 2385 is a function to be used to delete a file entry for the OS TYPE. |
7042 | 2386 The main reason for this alist is to deal with file versions in VMS.") |
1106 | 2387 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2388 (defun ange-ftp-add-file-entry (name &optional dir-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2389 "Add a file entry for file NAME, if its directory info exists." |
1106 | 2390 (funcall (or (cdr (assq (ange-ftp-host-type |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2391 (car (ange-ftp-ftp-name name))) |
1106 | 2392 ange-ftp-add-file-entry-alist)) |
2393 'ange-ftp-internal-add-file-entry) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2394 name dir-p) |
1106 | 2395 (setq ange-ftp-ls-cache-file nil)) |
2396 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2397 (defun ange-ftp-delete-file-entry (name &optional dir-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2398 "Delete the file entry for file NAME, if its directory info exists." |
1106 | 2399 (funcall (or (cdr (assq (ange-ftp-host-type |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2400 (car (ange-ftp-ftp-name name))) |
1106 | 2401 ange-ftp-delete-file-entry-alist)) |
2402 'ange-ftp-internal-delete-file-entry) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2403 name dir-p) |
1106 | 2404 (setq ange-ftp-ls-cache-file nil)) |
2405 | |
2406 (defmacro ange-ftp-parse-filename () | |
2407 ;;Extract the filename from the current line of a dired-like listing. | |
2408 (` (let ((eol (progn (end-of-line) (point)))) | |
2409 (beginning-of-line) | |
2410 (if (re-search-forward ange-ftp-date-regexp eol t) | |
2411 (progn | |
2412 (skip-chars-forward " ") | |
2413 (skip-chars-forward "^ " eol) | |
2414 (skip-chars-forward " " eol) | |
2415 ;; We bomb on filenames starting with a space. | |
2416 (buffer-substring (point) eol)))))) | |
2417 | |
2418 ;; This deals with the F switch. Should also do something about | |
2419 ;; unquoting names obtained with the SysV b switch and the GNU Q | |
2420 ;; switch. See Sebastian's dired-get-filename. | |
2421 | |
2422 (defmacro ange-ftp-ls-parser () | |
2423 ;; Note that switches is dynamically bound. | |
2424 ;; Meant to be called by ange-ftp-parse-dired-listing | |
2425 (` (let ((tbl (ange-ftp-make-hashtable)) | |
2426 (used-F (and (stringp switches) | |
2427 (string-match "F" switches))) | |
2428 file-type symlink directory file) | |
2429 (while (setq file (ange-ftp-parse-filename)) | |
2430 (beginning-of-line) | |
2431 (skip-chars-forward "\t 0-9") | |
2432 (setq file-type (following-char) | |
2433 directory (eq file-type ?d)) | |
2434 (if (eq file-type ?l) | |
2435 (if (string-match " -> " file) | |
2436 (setq symlink (substring file (match-end 0)) | |
2437 file (substring file 0 (match-beginning 0))) | |
2438 ;; Shouldn't happen | |
2439 (setq symlink "")) | |
2440 (setq symlink nil)) | |
2441 ;; Only do a costly regexp search if the F switch was used. | |
2442 (if (and used-F | |
2443 (not (string-equal file "")) | |
2444 (looking-at | |
2445 ".[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)")) | |
2446 (let ((socket (eq file-type ?s)) | |
2447 (executable | |
2448 (and (not symlink) ; x bits don't mean a thing for symlinks | |
2449 (string-match "[xst]" | |
2450 (concat | |
2451 (buffer-substring | |
2452 (match-beginning 1) | |
2453 (match-end 1)) | |
2454 (buffer-substring | |
2455 (match-beginning 2) | |
2456 (match-end 2)) | |
2457 (buffer-substring | |
2458 (match-beginning 3) | |
2459 (match-end 3))))))) | |
2460 ;; Some ls's with the F switch mark symlinks with an @ (ULTRIX) | |
2461 ;; and others don't. (sigh...) Beware, that some Unix's don't | |
2462 ;; seem to believe in the F-switch | |
2463 (if (or (and symlink (string-match "@$" file)) | |
2464 (and directory (string-match "/$" file)) | |
2465 (and executable (string-match "*$" file)) | |
2466 (and socket (string-match "=$" file))) | |
2467 (setq file (substring file 0 -1))))) | |
2468 (ange-ftp-put-hash-entry file (or symlink directory) tbl) | |
2469 (forward-line 1)) | |
2470 (ange-ftp-put-hash-entry "." t tbl) | |
2471 (ange-ftp-put-hash-entry ".." t tbl) | |
2472 tbl))) | |
2473 | |
2474 ;;; The dl stuff for descriptive listings | |
2475 | |
2476 (defvar ange-ftp-dl-dir-regexp nil | |
7042 | 2477 "Regexp matching directories which are listed in dl format. |
2478 This regexp should not be anchored with a trailing `$', because it should | |
2479 match subdirectories as well.") | |
1106 | 2480 |
2481 (defun ange-ftp-add-dl-dir (dir) | |
1233 | 2482 "Interactively adds a DIR to ange-ftp-dl-dir-regexp." |
1106 | 2483 (interactive |
2484 (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
|
2485 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2486 (and name (ange-ftp-ftp-name name) |
1106 | 2487 (file-name-directory name)))))) |
2488 (if (not (and ange-ftp-dl-dir-regexp | |
2489 (string-match ange-ftp-dl-dir-regexp dir))) | |
2490 (setq ange-ftp-dl-dir-regexp | |
2491 (concat "^" (regexp-quote dir) | |
2492 (and ange-ftp-dl-dir-regexp "\\|") | |
2493 ange-ftp-dl-dir-regexp)))) | |
2494 | |
2495 (defmacro ange-ftp-dl-parser () | |
2496 ;; Parse the current buffer, which is assumed to be a descriptive | |
2497 ;; listing, and return a hashtable. | |
2498 (` (let ((tbl (ange-ftp-make-hashtable))) | |
2499 (while (not (eobp)) | |
2500 (ange-ftp-put-hash-entry | |
2501 (buffer-substring (point) | |
2502 (progn | |
2503 (skip-chars-forward "^ /\n") | |
2504 (point))) | |
2505 (eq (following-char) ?/) | |
2506 tbl) | |
2507 (forward-line 1)) | |
2508 (ange-ftp-put-hash-entry "." t tbl) | |
2509 (ange-ftp-put-hash-entry ".." t tbl) | |
2510 tbl))) | |
2511 | |
7042 | 2512 ;; Parse the current buffer which is assumed to be in a dired-like listing |
2513 ;; format, and return a hashtable as the result. If the listing is not really | |
2514 ;; a listing, then return nil. | |
2515 | |
1106 | 2516 (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
|
2517 (save-match-data |
1106 | 2518 (cond |
2519 ((looking-at "^total [0-9]+$") | |
2520 (forward-line 1) | |
5067
4854aff5c5b3
(ange-ftp-parse-dired-listing): Skip extra blank line
Richard M. Stallman <rms@gnu.org>
parents:
4912
diff
changeset
|
2521 ;; 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
|
2522 (if (eolp) (forward-line 1)) |
1106 | 2523 (ange-ftp-ls-parser)) |
2524 ((looking-at "[^\n]+\\( not found\\|: Not a directory\\)\n\\'") | |
2525 ;; It's an ls error message. | |
2526 nil) | |
2527 ((eobp) ; i.e. (zerop (buffer-size)) | |
2528 ;; This could be one of: | |
2529 ;; (1) An Ultrix ls error message | |
2530 ;; (2) A listing with the A switch of an empty directory | |
2531 ;; on a machine which doesn't give a total line. | |
2532 ;; (3) The twilight zone. | |
2533 ;; We'll assume (1) for now. | |
2534 nil) | |
2535 ((re-search-forward ange-ftp-date-regexp nil t) | |
2536 (beginning-of-line) | |
2537 (ange-ftp-ls-parser)) | |
2538 ((re-search-forward "^[^ \n\t]+ +\\([0-9]+\\|-\\|=\\) " nil t) | |
2539 ;; It's a dl listing (I hope). | |
2540 ;; file is bound by the call to ange-ftp-ls | |
2541 (ange-ftp-add-dl-dir ange-ftp-this-file) | |
2542 (beginning-of-line) | |
2543 (ange-ftp-dl-parser)) | |
2544 (t nil)))) | |
2545 | |
2546 (defun ange-ftp-set-files (directory files) | |
2547 "For a given DIRECTORY, set or change the associated FILES hashtable." | |
2548 (and files (ange-ftp-put-hash-entry (file-name-as-directory directory) | |
2549 files ange-ftp-files-hashtable))) | |
2550 | |
2551 (defun ange-ftp-get-files (directory &optional no-error) | |
2552 "Given a given DIRECTORY, return a hashtable of file entries. | |
2553 This will give an error or return nil, depending on the value of | |
2554 NO-ERROR, if a listing for DIRECTORY cannot be obtained." | |
2555 (setq directory (file-name-as-directory directory)) ;normalize | |
2556 (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
|
2557 (save-match-data |
1106 | 2558 (and (ange-ftp-ls directory |
2559 ;; This is an efficiency hack. We try to | |
2560 ;; anticipate what sort of listing dired | |
2561 ;; might want, and cache just such a listing. | |
2562 (if (and (boundp 'dired-actual-switches) | |
2563 (stringp dired-actual-switches) | |
2564 ;; We allow the A switch, which lists | |
2565 ;; all files except "." and "..". | |
2566 ;; This is OK because we manually | |
2567 ;; insert these entries | |
2568 ;; in the hash table. | |
2569 (string-match | |
2570 "[aA]" dired-actual-switches) | |
2571 (string-match | |
2572 "l" dired-actual-switches) | |
2573 (not (string-match | |
2574 "R" dired-actual-switches))) | |
2575 dired-actual-switches | |
2576 (if (and (boundp 'dired-listing-switches) | |
2577 (stringp dired-listing-switches) | |
2578 (string-match | |
2579 "[aA]" dired-listing-switches) | |
2580 (string-match | |
2581 "l" dired-listing-switches) | |
2582 (not (string-match | |
2583 "R" dired-listing-switches))) | |
2584 dired-listing-switches | |
2585 "-al")) | |
2586 t no-error) | |
2587 (ange-ftp-get-hash-entry | |
2588 directory ange-ftp-files-hashtable))))) | |
2589 | |
7042 | 2590 ;; Given NAME, return the file part that can be used for looking up the |
2591 ;; file's entry in a hashtable. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2592 (defmacro ange-ftp-get-file-part (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2593 (` (let ((file (file-name-nondirectory (, name)))) |
1106 | 2594 (if (string-equal file "") |
2595 "." | |
2596 file)))) | |
2597 | |
7042 | 2598 ;; Return whether ange-ftp-file-entry-p and ange-ftp-get-file-entry are |
2599 ;; allowed to determine if NAME is a sub-directory by listing it directly, | |
2600 ;; rather than listing its parent directory. This is used for efficiency so | |
2601 ;; that a wasted listing is not done: | |
2602 ;; 1. When looking for a .dired file in dired-x.el. | |
2603 ;; 2. The syntax of FILE and DIR make it impossible that FILE could be a valid | |
2604 ;; subdirectory. This is of course an OS dependent judgement. | |
2605 | |
1106 | 2606 (defmacro ange-ftp-allow-child-lookup (dir file) |
2607 (` (not | |
2608 (let* ((efile (, file)) ; expand once. | |
2609 (edir (, dir)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2610 (parsed (ange-ftp-ftp-name edir)) |
1106 | 2611 (host-type (ange-ftp-host-type |
2612 (car parsed)))) | |
2613 (or | |
1456
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2614 ;;; This variable seems not to exist in Emacs 19 -- rms. |
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2615 ;;; ;; Deal with dired |
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2616 ;;; (and (boundp 'dired-local-variables-file) |
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2617 ;;; (stringp dired-local-variables-file) |
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2618 ;;; (string-equal dired-local-variables-file efile)) |
1106 | 2619 ;; No dots in dir names in vms. |
2620 (and (eq host-type 'vms) | |
2621 (string-match "\\." efile)) | |
2622 ;; No subdirs in mts of cms. | |
2623 (and (memq host-type '(mts cms)) | |
2624 (not (string-equal "/" (nth 2 parsed))))))))) | |
2625 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2626 (defun ange-ftp-file-entry-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2627 "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
|
2628 (let* ((name (directory-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2629 (dir (file-name-directory name)) |
1106 | 2630 (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
|
2631 (file (ange-ftp-get-file-part name))) |
1106 | 2632 (if ent |
2633 (ange-ftp-hash-entry-exists-p file ent) | |
2634 (or (and (ange-ftp-allow-child-lookup dir file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2635 (setq ent (ange-ftp-get-files name t)) |
1106 | 2636 ;; Try a child lookup. i.e. try to list file as a |
2637 ;; subdirectory of dir. This is a good idea because | |
2638 ;; we may not have read permission for file's parent. Also, | |
2639 ;; people tend to work down directory trees anyway. We use | |
2640 ;; no-error ;; because if file does not exist as a subdir., | |
2641 ;; then dumb hosts will give an ftp error. Smart unix hosts | |
2642 ;; will simply send back the ls | |
2643 ;; error message. | |
2644 (ange-ftp-get-hash-entry "." ent)) | |
2645 ;; Child lookup failed. Try the parent. If this bombs, | |
2646 ;; we are at wits end -- signal an error. | |
2647 ;; Problem: If this signals an error, the error message | |
2648 ;; may not have a lot to do with what went wrong. | |
2649 (ange-ftp-hash-entry-exists-p file | |
2650 (ange-ftp-get-files dir)))))) | |
2651 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2652 (defun ange-ftp-get-file-entry (name) |
1233 | 2653 "Given NAME, return the given file entry. |
2654 The entry will be either t for a directory, nil for a normal file, | |
2655 or a string for a symlink. If the file isn't in the hashtable, | |
2656 this also returns nil." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2657 (let* ((name (directory-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2658 (dir (file-name-directory name)) |
1106 | 2659 (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
|
2660 (file (ange-ftp-get-file-part name))) |
1106 | 2661 (if ent |
2662 (ange-ftp-get-hash-entry file ent) | |
2663 (or (and (ange-ftp-allow-child-lookup dir file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2664 (setq ent (ange-ftp-get-files name t)) |
1106 | 2665 (ange-ftp-get-hash-entry "." ent)) |
2666 ;; i.e. it's a directory by child lookup | |
2667 (ange-ftp-get-hash-entry file | |
2668 (ange-ftp-get-files dir)))))) | |
2669 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2670 (defun ange-ftp-internal-delete-file-entry (name &optional dir-p) |
1106 | 2671 (if dir-p |
2672 (progn | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2673 (setq name (file-name-as-directory name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2674 (ange-ftp-del-hash-entry name ange-ftp-files-hashtable) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2675 (setq name (directory-file-name name)))) |
1106 | 2676 ;; Note that file-name-as-directory followed by directory-file-name |
2677 ;; serves to canonicalize directory file names to their unix form. | |
2678 ;; i.e. in VMS, FOO.DIR -> FOO/ -> FOO | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2679 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) |
1106 | 2680 ange-ftp-files-hashtable))) |
2681 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2682 (ange-ftp-del-hash-entry (ange-ftp-get-file-part name) |
1106 | 2683 files)))) |
2684 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2685 (defun ange-ftp-internal-add-file-entry (name &optional dir-p) |
1106 | 2686 (and dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2687 (setq name (directory-file-name name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2688 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) |
1106 | 2689 ange-ftp-files-hashtable))) |
2690 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2691 (ange-ftp-put-hash-entry (ange-ftp-get-file-part name) |
1106 | 2692 dir-p |
2693 files)))) | |
2694 | |
2695 (defun ange-ftp-wipe-file-entries (host user) | |
7042 | 2696 "Get rid of entry for HOST, USER pair from file entry information hashtable." |
1106 | 2697 (let ((new-tbl (ange-ftp-make-hashtable (length ange-ftp-files-hashtable)))) |
2698 (ange-ftp-map-hashtable | |
2699 (function | |
2700 (lambda (key val) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2701 (let ((parsed (ange-ftp-ftp-name key))) |
1106 | 2702 (if parsed |
2703 (let ((h (nth 0 parsed)) | |
2704 (u (nth 1 parsed))) | |
2705 (or (and (equal host h) (equal user u)) | |
2706 (ange-ftp-put-hash-entry key val new-tbl))))))) | |
2707 ange-ftp-files-hashtable) | |
2708 (setq ange-ftp-files-hashtable new-tbl))) | |
2709 | |
2710 ;;;; ------------------------------------------------------------ | |
2711 ;;;; File transfer mode support. | |
2712 ;;;; ------------------------------------------------------------ | |
2713 | |
2714 (defun ange-ftp-set-binary-mode (host user) | |
2715 "Tell the ftp process for the given HOST & USER to switch to binary mode." | |
2716 (let ((result (ange-ftp-send-cmd host user '(type "binary")))) | |
2717 (if (not (car result)) | |
2718 (ange-ftp-error host user (concat "BINARY failed: " (cdr result))) | |
2719 (save-excursion | |
2720 (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
|
2721 (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
|
2722 (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
|
2723 (ash ange-ftp-binary-hash-mark-size -4))))))) |
1106 | 2724 |
2725 (defun ange-ftp-set-ascii-mode (host user) | |
2726 "Tell the ftp process for the given HOST & USER to switch to ascii mode." | |
2727 (let ((result (ange-ftp-send-cmd host user '(type "ascii")))) | |
2728 (if (not (car result)) | |
2729 (ange-ftp-error host user (concat "ASCII failed: " (cdr result))) | |
2730 (save-excursion | |
2731 (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
|
2732 (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
|
2733 (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
|
2734 (ash ange-ftp-ascii-hash-mark-size -4))))))) |
1106 | 2735 |
2736 (defun ange-ftp-cd (host user dir) | |
2737 (let ((result (ange-ftp-send-cmd host user (list 'cd dir) "Doing CD"))) | |
2738 (or (car result) | |
2739 (ange-ftp-error host user (concat "CD failed: " (cdr result)))))) | |
2740 | |
2741 (defun ange-ftp-get-pwd (host user) | |
2742 "Attempts to get the current working directory for the given HOST/USER pair. | |
2743 Returns \( DIR . LINE \) where DIR is either the directory or NIL if not found, | |
2744 and LINE is the relevant success or fail line from the FTP-client." | |
2745 (let* ((result (ange-ftp-send-cmd host user '(pwd) "Getting PWD")) | |
2746 (line (cdr result)) | |
2747 dir) | |
2748 (if (car result) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2749 (save-match-data |
1106 | 2750 (and (or (string-match "\"\\([^\"]*\\)\"" line) |
2751 (string-match " \\([^ ]+\\) " line)) ; stone-age VMS servers! | |
2752 (setq dir (substring line | |
2753 (match-beginning 1) | |
2754 (match-end 1)))))) | |
2755 (cons dir line))) | |
2756 | |
2757 ;;; ------------------------------------------------------------ | |
2758 ;;; expand-file-name and friends...which currently don't work | |
2759 ;;; ------------------------------------------------------------ | |
2760 | |
2761 (defun ange-ftp-expand-dir (host user dir) | |
7042 | 2762 "Return the result of doing a PWD in the current FTP session. |
2763 Use the connection to machine HOST | |
1106 | 2764 logged in as user USER and cd'd to directory DIR." |
2765 (let* ((host-type (ange-ftp-host-type host user)) | |
2766 ;; It is more efficient to call ange-ftp-host-type | |
2767 ;; before binding res, because ange-ftp-host-type sometimes | |
2768 ;; adds to the info in the expand-dir-hashtable. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2769 (fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2770 (cdr (assq host-type ange-ftp-fix-name-func-alist))) |
1106 | 2771 (key (concat host "/" user "/" dir)) |
2772 (res (ange-ftp-get-hash-entry key ange-ftp-expand-dir-hashtable))) | |
2773 (or res | |
2774 (progn | |
2775 (or | |
2776 (string-equal user "anonymous") | |
2777 (string-equal user "ftp") | |
2778 (not (eq host-type 'unix)) | |
2779 (let* ((ange-ftp-good-msgs (concat ange-ftp-expand-dir-regexp | |
2780 "\\|" | |
2781 ange-ftp-good-msgs)) | |
2782 (result (ange-ftp-send-cmd host user | |
2783 (list 'get dir "/dev/null") | |
2784 (format "expanding %s" dir))) | |
2785 (line (cdr result))) | |
2786 (setq res | |
2787 (if (string-match ange-ftp-expand-dir-regexp line) | |
2788 (substring line | |
2789 (match-beginning 1) | |
2790 (match-end 1)))))) | |
2791 (or res | |
2792 (if (string-equal dir "~") | |
2793 (setq res (car (ange-ftp-get-pwd host user))) | |
2794 (let ((home (ange-ftp-expand-dir host user "~"))) | |
2795 (unwind-protect | |
2796 (and (ange-ftp-cd host user dir) | |
2797 (setq res (car (ange-ftp-get-pwd host user)))) | |
2798 (ange-ftp-cd host user home))))) | |
2799 (if res | |
2800 (let ((ange-ftp-this-user user) | |
2801 (ange-ftp-this-host host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2802 (if fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2803 (setq res (funcall fix-name-func res 'reverse))) |
1106 | 2804 (ange-ftp-put-hash-entry |
2805 key res ange-ftp-expand-dir-hashtable))) | |
2806 res)))) | |
2807 | |
2808 (defun ange-ftp-canonize-filename (n) | |
2809 "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
|
2810 (if (string-match "[^:]+//" n) ;don't upset Apollo users |
1106 | 2811 (setq n (substring n (1- (match-end 0))))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2812 (let ((parsed (ange-ftp-ftp-name n))) |
1106 | 2813 (if parsed |
2814 (let ((host (car parsed)) | |
2815 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2816 (name (nth 2 parsed))) |
1106 | 2817 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2818 ;; 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
|
2819 ;; replace the name component of the overall name. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2820 (cond ((string-match "^/" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2821 name) |
1106 | 2822 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2823 ;; Name starts with ~ or ~user. Resolve that part of the name |
1106 | 2824 ;; making it absolute then re-expand it. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2825 ((string-match "^~[^/]*" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2826 (let* ((tilda (substring name |
1106 | 2827 (match-beginning 0) |
2828 (match-end 0))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2829 (rest (substring name (match-end 0))) |
1106 | 2830 (dir (ange-ftp-expand-dir host user tilda))) |
2831 (if dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2832 (setq name (concat dir rest)) |
1106 | 2833 (error "User \"%s\" is not known" |
2834 (substring tilda 1))))) | |
2835 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2836 ;; relative name. Tack on homedir and re-expand. |
1106 | 2837 (t |
2838 (let ((dir (ange-ftp-expand-dir host user "~"))) | |
2839 (if dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2840 (setq name (concat |
1106 | 2841 (ange-ftp-real-file-name-as-directory dir) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2842 name)) |
1106 | 2843 (error "Unable to obtain CWD"))))) |
2844 | |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
2845 ;; 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
|
2846 (if (not (string-match "^//" name)) |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
2847 (progn |
7923
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2848 (setq name (ange-ftp-real-expand-file-name name)) |
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2849 |
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2850 (if (string-match "^//" name) |
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2851 (setq name (substring name 1))))) |
1106 | 2852 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2853 ;; Now substitute the expanded name back into the overall filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2854 (ange-ftp-replace-name-component n name)) |
1106 | 2855 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2856 ;; non-ange-ftp name. Just expand normally. |
1106 | 2857 (if (eq (string-to-char n) ?/) |
2858 (ange-ftp-real-expand-file-name n) | |
2859 (ange-ftp-real-expand-file-name | |
2860 (ange-ftp-real-file-name-nondirectory n) | |
2861 (ange-ftp-real-file-name-directory n)))))) | |
2862 | |
2863 (defun ange-ftp-expand-file-name (name &optional default) | |
2864 "Documented as original." | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2865 (save-match-data |
1106 | 2866 (if (eq (string-to-char name) ?/) |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
2867 (while (cond ((string-match "[^:]+//" name) ;don't upset Apollo users |
1106 | 2868 (setq name (substring name (1- (match-end 0))))) |
2869 ((string-match "/~" name) | |
2870 (setq name (substring name (1- (match-end 0)))))))) | |
2871 (cond ((eq (string-to-char name) ?~) | |
2872 (ange-ftp-real-expand-file-name name)) | |
2873 ((eq (string-to-char name) ?/) | |
2874 (ange-ftp-canonize-filename name)) | |
2875 ((zerop (length name)) | |
2876 (ange-ftp-canonize-filename (or default default-directory))) | |
2877 ((ange-ftp-canonize-filename | |
2878 (concat (file-name-as-directory (or default default-directory)) | |
2879 name)))))) | |
2880 | |
2881 ;;; These are problems--they are currently not enabled. | |
2882 | |
2883 (defvar ange-ftp-file-name-as-directory-alist nil | |
7042 | 2884 "Association list of \( TYPE \. FUNC \) pairs. |
1106 | 2885 FUNC converts a filename to a directory name for the operating |
2886 system TYPE.") | |
2887 | |
2888 (defun ange-ftp-file-name-as-directory (name) | |
2889 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2890 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2891 (if parsed |
2892 (if (string-equal (nth 2 parsed) "") | |
2893 name | |
2894 (funcall (or (cdr (assq | |
2895 (ange-ftp-host-type (car parsed)) | |
2896 ange-ftp-file-name-as-directory-alist)) | |
2897 'ange-ftp-real-file-name-as-directory) | |
2898 name)) | |
2899 (ange-ftp-real-file-name-as-directory name)))) | |
2900 | |
2901 (defun ange-ftp-file-name-directory (name) | |
2902 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2903 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2904 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2905 (let ((filename (nth 2 parsed))) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2906 (if (save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2907 (string-match "^~[^/]*$" filename)) |
1106 | 2908 name |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2909 (ange-ftp-replace-name-component |
1106 | 2910 name |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2911 (ange-ftp-real-file-name-directory filename)))) |
1106 | 2912 (ange-ftp-real-file-name-directory name)))) |
2913 | |
2914 (defun ange-ftp-file-name-nondirectory (name) | |
2915 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2916 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2917 (if parsed |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
2918 (let ((filename (nth 2 parsed))) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2919 (if (save-match-data |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
2920 (string-match "^~[^/]*$" filename)) |
1106 | 2921 "" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2922 (ange-ftp-real-file-name-nondirectory name))) |
1106 | 2923 (ange-ftp-real-file-name-nondirectory name)))) |
2924 | |
2925 (defun ange-ftp-directory-file-name (dir) | |
2926 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2927 (let ((parsed (ange-ftp-ftp-name dir))) |
1106 | 2928 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2929 (ange-ftp-replace-name-component |
1106 | 2930 dir |
2931 (ange-ftp-real-directory-file-name (nth 2 parsed))) | |
2932 (ange-ftp-real-directory-file-name dir)))) | |
2933 | |
2934 | |
2935 ;;; Hooks that handle Emacs primitives. | |
2936 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2937 ;; Returns non-nil if should transfer FILE in binary mode. |
1106 | 2938 (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
|
2939 (save-match-data |
1106 | 2940 (string-match ange-ftp-binary-file-name-regexp file))) |
2941 | |
2942 (defun ange-ftp-write-region (start end filename &optional append visit) | |
2943 (setq filename (expand-file-name filename)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2944 (let ((parsed (ange-ftp-ftp-name filename))) |
1106 | 2945 (if parsed |
2946 (let* ((host (nth 0 parsed)) | |
2947 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2948 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2949 (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
|
2950 (binary (or (ange-ftp-binary-file filename) |
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
2951 (eq (ange-ftp-host-type host user) 'unix))) |
1106 | 2952 (cmd (if append 'append 'put)) |
2953 (abbr (ange-ftp-abbreviate-filename filename))) | |
2954 (unwind-protect | |
2955 (progn | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
2956 (let ((executing-kbd-macro t) |
1106 | 2957 (filename (buffer-file-name)) |
2958 (mod-p (buffer-modified-p))) | |
2959 (unwind-protect | |
2960 (ange-ftp-real-write-region start end temp nil visit) | |
2961 ;; cleanup forms | |
2962 (setq buffer-file-name filename) | |
2963 (set-buffer-modified-p mod-p))) | |
2964 (if binary | |
2965 (ange-ftp-set-binary-mode host user)) | |
2966 | |
2967 ;; tell the process filter what size the transfer will be. | |
2968 (let ((attr (file-attributes temp))) | |
2969 (if attr | |
2970 (ange-ftp-set-xfer-size host user (nth 7 attr)))) | |
2971 | |
2972 ;; put or append the file. | |
2973 (let ((result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2974 (list cmd temp name) |
1106 | 2975 (format "Writing %s" abbr)))) |
2976 (or (car result) | |
2977 (signal 'ftp-error | |
2978 (list | |
2979 "Opening output file" | |
2980 (format "FTP Error: \"%s\"" (cdr result)) | |
2981 filename))))) | |
2982 (ange-ftp-del-tmp-name temp) | |
2983 (if binary | |
2984 (ange-ftp-set-ascii-mode host user))) | |
2985 (if (eq visit t) | |
2986 (progn | |
5350
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
2987 (set-visited-file-modtime '(0 0)) |
1106 | 2988 (ange-ftp-set-buffer-mode) |
2989 (setq buffer-file-name filename) | |
2990 (set-buffer-modified-p nil))) | |
2991 (ange-ftp-message "Wrote %s" abbr) | |
2992 (ange-ftp-add-file-entry filename)) | |
2993 (ange-ftp-real-write-region start end filename append visit)))) | |
2994 | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
2995 (defun ange-ftp-insert-file-contents (filename &optional visit beg end replace) |
1106 | 2996 (barf-if-buffer-read-only) |
2997 (setq filename (expand-file-name filename)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2998 (let ((parsed (ange-ftp-ftp-name filename))) |
1106 | 2999 (if parsed |
3000 (progn | |
3001 (if visit | |
3002 (setq buffer-file-name filename)) | |
3003 (if (or (file-exists-p filename) | |
3004 (progn | |
3005 (setq ange-ftp-ls-cache-file nil) | |
3006 (ange-ftp-del-hash-entry (file-name-directory filename) | |
3007 ange-ftp-files-hashtable) | |
3008 (file-exists-p filename))) | |
3009 (let* ((host (nth 0 parsed)) | |
3010 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3011 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 3012 (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
|
3013 (binary (or (ange-ftp-binary-file filename) |
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3014 (eq (ange-ftp-host-type host user) 'unix))) |
1106 | 3015 (abbr (ange-ftp-abbreviate-filename filename)) |
3016 size) | |
3017 (unwind-protect | |
3018 (progn | |
3019 (if binary | |
3020 (ange-ftp-set-binary-mode host user)) | |
3021 (let ((result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3022 (list 'get name temp) |
1106 | 3023 (format "Retrieving %s" abbr)))) |
3024 (or (car result) | |
3025 (signal 'ftp-error | |
3026 (list | |
3027 "Opening input file" | |
3028 (format "FTP Error: \"%s\"" (cdr result)) | |
3029 filename)))) | |
3030 (if (or (ange-ftp-real-file-readable-p temp) | |
3031 (sleep-for ange-ftp-retry-time) | |
3032 ;; Wait for file to hopefully appear. | |
3033 (ange-ftp-real-file-readable-p temp)) | |
3034 (setq | |
3035 size | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3036 (nth 1 (ange-ftp-real-insert-file-contents |
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3037 temp visit beg end replace))) |
1106 | 3038 (signal 'ftp-error |
3039 (list | |
3040 "Opening input file:" | |
3041 (format | |
3042 "FTP Error: %s not arrived or readable" | |
3043 filename))))) | |
3044 (if binary | |
3045 (ange-ftp-set-ascii-mode host user)) | |
3046 (ange-ftp-del-tmp-name temp)) | |
3047 (if visit | |
5350
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
3048 (progn |
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
3049 (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
|
3050 (setq buffer-file-name filename))) |
1106 | 3051 (list filename size)) |
3052 (signal 'file-error | |
3053 (list | |
3054 "Opening input file" | |
3055 filename)))) | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3056 (ange-ftp-real-insert-file-contents filename visit beg end replace)))) |
1106 | 3057 |
3058 (defun ange-ftp-expand-symlink (file dir) | |
3059 (if (file-name-absolute-p file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3060 (ange-ftp-replace-name-component dir file) |
1106 | 3061 (expand-file-name file dir))) |
3062 | |
3063 (defun ange-ftp-file-symlink-p (file) | |
3064 ;; call ange-ftp-expand-file-name rather than the normal | |
3065 ;; expand-file-name to stop loops when using a package that | |
3066 ;; redefines both file-symlink-p and expand-file-name. | |
3067 (setq file (ange-ftp-expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3068 (if (ange-ftp-ftp-name file) |
1106 | 3069 (let ((file-ent |
3070 (ange-ftp-get-hash-entry | |
3071 (ange-ftp-get-file-part file) | |
3072 (ange-ftp-get-files (file-name-directory file))))) | |
3073 (if (stringp file-ent) | |
3074 (if (file-name-absolute-p file-ent) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3075 (ange-ftp-replace-name-component |
1106 | 3076 (file-name-directory file) file-ent) |
3077 file-ent))) | |
3078 (ange-ftp-real-file-symlink-p file))) | |
3079 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3080 (defun ange-ftp-file-exists-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3081 (setq name (expand-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3082 (if (ange-ftp-ftp-name name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3083 (if (ange-ftp-file-entry-p name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3084 (let ((file-ent (ange-ftp-get-file-entry name))) |
1106 | 3085 (if (stringp file-ent) |
3086 (file-exists-p | |
3087 (ange-ftp-expand-symlink file-ent | |
3088 (file-name-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3089 (directory-file-name name)))) |
1106 | 3090 t))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3091 (ange-ftp-real-file-exists-p name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3092 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3093 (defun ange-ftp-file-directory-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3094 (setq name (expand-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3095 (if (ange-ftp-ftp-name name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3096 ;; We do a file-name-as-directory on name here because some |
1106 | 3097 ;; machines (VMS) use a .DIR to indicate the filename associated |
3098 ;; with a directory. This needs to be canonicalized. | |
3099 (let ((file-ent (ange-ftp-get-file-entry | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3100 (ange-ftp-file-name-as-directory name)))) |
1106 | 3101 (if (stringp file-ent) |
3102 (file-directory-p | |
3103 (ange-ftp-expand-symlink file-ent | |
3104 (file-name-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3105 (directory-file-name name)))) |
1106 | 3106 file-ent)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3107 (ange-ftp-real-file-directory-p name))) |
1106 | 3108 |
3109 (defun ange-ftp-directory-files (directory &optional full match | |
3110 &rest v19-args) | |
3111 (setq directory (expand-file-name directory)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3112 (if (ange-ftp-ftp-name directory) |
1106 | 3113 (progn |
3114 (ange-ftp-barf-if-not-directory directory) | |
3115 (let ((tail (ange-ftp-hash-table-keys | |
3116 (ange-ftp-get-files directory))) | |
3117 files f) | |
3118 (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
|
3119 (save-match-data |
1106 | 3120 (while tail |
3121 (setq f (car tail) | |
3122 tail (cdr tail)) | |
3123 (if (or (not match) (string-match match f)) | |
3124 (setq files | |
3125 (cons (if full (concat directory f) f) files))))) | |
3126 (nreverse files))) | |
3127 (apply 'ange-ftp-real-directory-files directory full match v19-args))) | |
3128 | |
3129 (defun ange-ftp-file-attributes (file) | |
3130 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3131 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3132 (if parsed |
3133 (let ((part (ange-ftp-get-file-part file)) | |
3134 (files (ange-ftp-get-files (file-name-directory file)))) | |
3135 (if (ange-ftp-hash-entry-exists-p part files) | |
3136 (let ((host (nth 0 parsed)) | |
3137 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3138 (name (nth 2 parsed)) |
1106 | 3139 (dirp (ange-ftp-get-hash-entry part files))) |
3140 (list (if (and (stringp dirp) (file-name-absolute-p dirp)) | |
3141 (ange-ftp-expand-symlink dirp | |
3142 (file-name-directory file)) | |
3143 dirp) ;0 file type | |
3144 -1 ;1 link count | |
3145 -1 ;2 uid | |
3146 -1 ;3 gid | |
3147 '(0 0) ;4 atime | |
3148 '(0 0) ;5 mtime | |
3149 '(0 0) ;6 ctime | |
3150 -1 ;7 size | |
3151 (concat (if (stringp dirp) "l" (if dirp "d" "-")) | |
3152 "?????????") ;8 mode | |
3153 nil ;9 gid weird | |
3154 ;; Hack to give remote files a unique "inode number". | |
3155 ;; It's actually the sum of the characters in its name. | |
3156 (apply '+ (nconc (mapcar 'identity host) | |
3157 (mapcar 'identity user) | |
3158 (mapcar 'identity | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3159 (directory-file-name name)))) |
1106 | 3160 -1 ;11 device number [v19 only] |
3161 )))) | |
3162 (ange-ftp-real-file-attributes file)))) | |
3163 | |
3164 (defun ange-ftp-file-writable-p (file) | |
3165 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3166 (if (ange-ftp-ftp-name file) |
1106 | 3167 (or (file-exists-p file) ;guess here for speed |
3168 (file-directory-p (file-name-directory file))) | |
3169 (ange-ftp-real-file-writable-p file))) | |
3170 | |
3171 (defun ange-ftp-file-readable-p (file) | |
3172 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3173 (if (ange-ftp-ftp-name file) |
1106 | 3174 (file-exists-p file) |
3175 (ange-ftp-real-file-readable-p file))) | |
3176 | |
4674
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3177 (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
|
3178 (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
|
3179 (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
|
3180 (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
|
3181 (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
|
3182 |
1106 | 3183 (defun ange-ftp-delete-file (file) |
3184 (interactive "fDelete file: ") | |
3185 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3186 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3187 (if parsed |
3188 (let* ((host (nth 0 parsed)) | |
3189 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3190 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 3191 (abbr (ange-ftp-abbreviate-filename file)) |
3192 (result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3193 (list 'delete name) |
1106 | 3194 (format "Deleting %s" abbr)))) |
3195 (or (car result) | |
3196 (signal 'ftp-error | |
3197 (list | |
3198 "Removing old name" | |
3199 (format "FTP Error: \"%s\"" (cdr result)) | |
3200 file))) | |
3201 (ange-ftp-delete-file-entry file)) | |
3202 (ange-ftp-real-delete-file file)))) | |
3203 | |
3204 (defun ange-ftp-verify-visited-file-modtime (buf) | |
3205 (let ((name (buffer-file-name buf))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3206 (if (and (stringp name) (ange-ftp-ftp-name name)) |
1106 | 3207 t |
3208 (ange-ftp-real-verify-visited-file-modtime buf)))) | |
3209 | |
3210 ;;;; ------------------------------------------------------------ | |
3211 ;;;; File copying support... totally re-written 6/24/92. | |
3212 ;;;; ------------------------------------------------------------ | |
3213 | |
3214 (defun ange-ftp-barf-or-query-if-file-exists (absname querystring interactive) | |
3215 (if (file-exists-p absname) | |
3216 (if (not interactive) | |
3217 (signal 'file-already-exists (list absname)) | |
3218 (if (not (yes-or-no-p (format "File %s already exists; %s anyway? " | |
3219 absname querystring))) | |
3220 (signal 'file-already-exists (list absname)))))) | |
3221 | |
3222 ;; async local copy commented out for now since I don't seem to get | |
3223 ;; the process sentinel called for some processes. | |
3224 ;; | |
3225 ;; (defun ange-ftp-copy-file-locally (filename newname ok-if-already-exists | |
3226 ;; keep-date cont) | |
3227 ;; "Kludge to copy a local file and call a continuation when the copy | |
3228 ;; finishes." | |
3229 ;; ;; check to see if we can overwrite | |
3230 ;; (if (or (not ok-if-already-exists) | |
3231 ;; (numberp ok-if-already-exists)) | |
3232 ;; (ange-ftp-barf-or-query-if-file-exists newname "copy to it" | |
3233 ;; (numberp ok-if-already-exists))) | |
3234 ;; (let ((proc (start-process " *copy*" | |
3235 ;; (generate-new-buffer "*copy*") | |
3236 ;; "cp" | |
3237 ;; filename | |
3238 ;; newname)) | |
3239 ;; res) | |
3240 ;; (set-process-sentinel proc (function ange-ftp-copy-file-locally-sentinel)) | |
3241 ;; (process-kill-without-query proc) | |
3242 ;; (save-excursion | |
3243 ;; (set-buffer (process-buffer proc)) | |
3244 ;; (make-variable-buffer-local 'copy-cont) | |
3245 ;; (setq copy-cont cont)))) | |
3246 ;; | |
3247 ;; (defun ange-ftp-copy-file-locally-sentinel (proc status) | |
3248 ;; (save-excursion | |
3249 ;; (set-buffer (process-buffer proc)) | |
3250 ;; (let ((cont copy-cont) | |
3251 ;; (result (buffer-string))) | |
3252 ;; (unwind-protect | |
3253 ;; (if (and (string-equal status "finished\n") | |
3254 ;; (zerop (length result))) | |
3255 ;; (ange-ftp-call-cont cont t nil) | |
3256 ;; (ange-ftp-call-cont cont | |
3257 ;; nil | |
3258 ;; (if (zerop (length result)) | |
3259 ;; (substring status 0 -1) | |
3260 ;; (substring result 0 -1)))) | |
3261 ;; (kill-buffer (current-buffer)))))) | |
3262 | |
3263 ;; 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
|
3264 ;; asynchronously if asked nicely. |
1106 | 3265 (defun ange-ftp-copy-file-internal (filename newname ok-if-already-exists |
3266 keep-date &optional msg cont nowait) | |
3267 (setq filename (expand-file-name filename) | |
3268 newname (expand-file-name newname)) | |
3269 | |
3270 ;; canonicalize newname if a directory. | |
3271 (if (file-directory-p newname) | |
3272 (setq newname (expand-file-name (file-name-nondirectory filename) newname))) | |
3273 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3274 (let ((f-parsed (ange-ftp-ftp-name filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3275 (t-parsed (ange-ftp-ftp-name newname))) |
1106 | 3276 |
3277 ;; local file to local file copy? | |
3278 (if (and (not f-parsed) (not t-parsed)) | |
3279 (progn | |
3280 (ange-ftp-real-copy-file filename newname ok-if-already-exists | |
3281 keep-date) | |
3282 (if cont | |
3283 (ange-ftp-call-cont cont t "Copied locally"))) | |
3284 ;; one or both files are remote. | |
3285 (let* ((f-host (and f-parsed (nth 0 f-parsed))) | |
3286 (f-user (and f-parsed (nth 1 f-parsed))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3287 (f-name (and f-parsed (ange-ftp-quote-string (nth 2 f-parsed)))) |
1106 | 3288 (f-abbr (ange-ftp-abbreviate-filename filename)) |
3289 (t-host (and t-parsed (nth 0 t-parsed))) | |
3290 (t-user (and t-parsed (nth 1 t-parsed))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3291 (t-name (and t-parsed (ange-ftp-quote-string (nth 2 t-parsed)))) |
1106 | 3292 (t-abbr (ange-ftp-abbreviate-filename newname filename)) |
3293 (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
|
3294 (ange-ftp-binary-file newname) |
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3295 (and (eq (ange-ftp-host-type f-host f-user) 'unix) |
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3296 (eq (ange-ftp-host-type t-host t-user) 'unix)))) |
1106 | 3297 temp1 |
3298 temp2) | |
3299 | |
3300 ;; check to see if we can overwrite | |
3301 (if (or (not ok-if-already-exists) | |
3302 (numberp ok-if-already-exists)) | |
3303 (ange-ftp-barf-or-query-if-file-exists newname "copy to it" | |
3304 (numberp ok-if-already-exists))) | |
3305 | |
3306 ;; do the copying. | |
3307 (if f-parsed | |
3308 | |
3309 ;; filename was remote. | |
3310 (progn | |
3311 (if (or (ange-ftp-use-gateway-p f-host) | |
3312 t-parsed) | |
3313 ;; have to use intermediate file if we are getting via | |
3314 ;; gateway machine or we are doing a remote to remote copy. | |
3315 (setq temp1 (ange-ftp-make-tmp-name f-host))) | |
3316 | |
3317 (if binary | |
3318 (ange-ftp-set-binary-mode f-host f-user)) | |
3319 | |
3320 (ange-ftp-send-cmd | |
3321 f-host | |
3322 f-user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3323 (list 'get f-name (or temp1 newname)) |
1106 | 3324 (or msg |
3325 (if (and temp1 t-parsed) | |
3326 (format "Getting %s" f-abbr) | |
3327 (format "Copying %s to %s" f-abbr t-abbr))) | |
3328 (list (function ange-ftp-cf1) | |
3329 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3330 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3331 t-parsed t-host t-user t-name t-abbr |
1106 | 3332 temp1 temp2 cont nowait) |
3333 nowait)) | |
3334 | |
3335 ;; filename wasn't remote. newname must be remote. call the | |
3336 ;; function which does the remainder of the copying work. | |
3337 (ange-ftp-cf1 t nil | |
3338 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3339 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3340 t-parsed t-host t-user t-name t-abbr |
1106 | 3341 nil nil cont nowait)))))) |
3342 | |
3343 ;; next part of copying routine. | |
3344 (defun ange-ftp-cf1 (result line | |
3345 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3346 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3347 t-parsed t-host t-user t-name t-abbr |
1106 | 3348 temp1 temp2 cont nowait) |
3349 (if line | |
3350 ;; filename must have been remote, and we must have just done a GET. | |
3351 (unwind-protect | |
3352 (or result | |
3353 ;; GET failed for some reason. Clean up and get out. | |
3354 (progn | |
3355 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3356 (or cont | |
3357 (signal 'ftp-error (list "Opening input file" | |
3358 (format "FTP Error: \"%s\"" line) | |
3359 filename))))) | |
3360 ;; cleanup | |
3361 (if binary | |
3362 (ange-ftp-set-ascii-mode f-host f-user)))) | |
3363 | |
3364 (if result | |
3365 ;; We now have to copy either temp1 or filename to newname. | |
3366 (if t-parsed | |
3367 | |
3368 ;; newname was remote. | |
3369 (progn | |
3370 (if (ange-ftp-use-gateway-p t-host) | |
3371 (setq temp2 (ange-ftp-make-tmp-name t-host))) | |
3372 | |
3373 ;; make sure data is moved into the right place for the | |
3374 ;; outgoing transfer. gateway temporary files complicate | |
3375 ;; things nicely. | |
3376 (if temp1 | |
3377 (if temp2 | |
3378 (if (string-equal temp1 temp2) | |
3379 (setq temp1 nil) | |
3380 (ange-ftp-real-copy-file temp1 temp2 t)) | |
3381 (setq temp2 temp1 temp1 nil)) | |
3382 (if temp2 | |
3383 (ange-ftp-real-copy-file filename temp2 t))) | |
3384 | |
3385 (if binary | |
3386 (ange-ftp-set-binary-mode t-host t-user)) | |
3387 | |
3388 ;; tell the process filter what size the file is. | |
3389 (let ((attr (file-attributes (or temp2 filename)))) | |
3390 (if attr | |
3391 (ange-ftp-set-xfer-size t-host t-user (nth 7 attr)))) | |
3392 | |
3393 (ange-ftp-send-cmd | |
3394 t-host | |
3395 t-user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3396 (list 'put (or temp2 filename) t-name) |
1106 | 3397 (or msg |
3398 (if (and temp2 f-parsed) | |
3399 (format "Putting %s" newname) | |
3400 (format "Copying %s to %s" f-abbr t-abbr))) | |
3401 (list (function ange-ftp-cf2) | |
3402 newname t-host t-user binary temp1 temp2 cont) | |
3403 nowait)) | |
3404 | |
3405 ;; newname wasn't remote. | |
3406 (ange-ftp-cf2 t nil newname t-host t-user binary temp1 temp2 cont)) | |
3407 | |
3408 ;; first copy failed, tell caller | |
3409 (ange-ftp-call-cont cont result line))) | |
3410 | |
3411 ;; last part of copying routine. | |
3412 (defun ange-ftp-cf2 (result line newname t-host t-user binary temp1 temp2 cont) | |
3413 (unwind-protect | |
3414 (if line | |
3415 ;; result from doing a local to remote copy. | |
3416 (unwind-protect | |
3417 (progn | |
3418 (or result | |
3419 (or cont | |
3420 (signal 'ftp-error | |
3421 (list "Opening output file" | |
3422 (format "FTP Error: \"%s\"" line) | |
3423 newname)))) | |
3424 | |
3425 (ange-ftp-add-file-entry newname)) | |
3426 | |
3427 ;; cleanup. | |
3428 (if binary | |
3429 (ange-ftp-set-ascii-mode t-host t-user))) | |
3430 | |
3431 ;; newname was local. | |
3432 (if temp1 | |
3433 (ange-ftp-real-copy-file temp1 newname t))) | |
3434 | |
3435 ;; clean up | |
3436 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3437 (and temp2 (ange-ftp-del-tmp-name temp2)) | |
3438 (ange-ftp-call-cont cont result line))) | |
3439 | |
3440 (defun ange-ftp-copy-file (filename newname &optional ok-if-already-exists | |
3441 keep-date) | |
3442 (interactive "fCopy file: \nFCopy %s to file: \np") | |
3443 (ange-ftp-copy-file-internal filename | |
3444 newname | |
3445 ok-if-already-exists | |
3446 keep-date | |
3447 nil | |
3448 nil | |
3449 (interactive-p))) | |
3450 | |
3451 ;;;; ------------------------------------------------------------ | |
3452 ;;;; File renaming support. | |
3453 ;;;; ------------------------------------------------------------ | |
3454 | |
10748
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3455 (defun ange-ftp-rename-remote-to-remote (filename newname f-parsed t-parsed) |
1106 | 3456 "Rename remote file FILE to remote file NEWNAME." |
3457 (let ((f-host (nth 0 f-parsed)) | |
3458 (f-user (nth 1 f-parsed)) | |
3459 (t-host (nth 0 t-parsed)) | |
3460 (t-user (nth 1 t-parsed))) | |
3461 (if (and (string-equal f-host t-host) | |
3462 (string-equal f-user t-user)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3463 (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
|
3464 (t-name (ange-ftp-quote-string (nth 2 t-parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3465 (cmd (list 'rename f-name t-name)) |
1106 | 3466 (fabbr (ange-ftp-abbreviate-filename filename)) |
3467 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3468 (result (ange-ftp-send-cmd f-host f-user cmd | |
3469 (format "Renaming %s to %s" | |
3470 fabbr | |
3471 nabbr)))) | |
3472 (or (car result) | |
3473 (signal 'ftp-error | |
3474 (list | |
3475 "Renaming" | |
3476 (format "FTP Error: \"%s\"" (cdr result)) | |
3477 filename | |
3478 newname))) | |
3479 (ange-ftp-add-file-entry newname) | |
3480 (ange-ftp-delete-file-entry filename)) | |
3481 (ange-ftp-copy-file-internal filename newname t nil) | |
3482 (delete-file filename)))) | |
3483 | |
3484 (defun ange-ftp-rename-local-to-remote (filename newname) | |
1233 | 3485 "Rename local FILENAME to remote file NEWNAME." |
1106 | 3486 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3487 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3488 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3489 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3490 (let (ange-ftp-process-verbose) | |
3491 (delete-file filename)))) | |
3492 | |
3493 (defun ange-ftp-rename-remote-to-local (filename newname) | |
1233 | 3494 "Rename remote file FILENAME to local file NEWNAME." |
1106 | 3495 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3496 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3497 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3498 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3499 (let (ange-ftp-process-verbose) | |
3500 (delete-file filename)))) | |
3501 | |
3502 (defun ange-ftp-rename-file (filename newname &optional ok-if-already-exists) | |
3503 (interactive "fRename file: \nFRename %s to file: \np") | |
3504 (setq filename (expand-file-name filename)) | |
3505 (setq newname (expand-file-name newname)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3506 (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
|
3507 (t-parsed (ange-ftp-ftp-name newname))) |
1106 | 3508 (if (and (or f-parsed t-parsed) |
3509 (or (not ok-if-already-exists) | |
3510 (numberp ok-if-already-exists))) | |
3511 (ange-ftp-barf-or-query-if-file-exists | |
3512 newname | |
3513 "rename to it" | |
3514 (numberp ok-if-already-exists))) | |
3515 (if f-parsed | |
3516 (if t-parsed | |
3517 (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
|
3518 t-parsed) |
1106 | 3519 (ange-ftp-rename-remote-to-local filename newname)) |
3520 (if t-parsed | |
3521 (ange-ftp-rename-local-to-remote filename newname) | |
3522 (ange-ftp-real-rename-file filename newname ok-if-already-exists))))) | |
3523 | |
3524 ;;;; ------------------------------------------------------------ | |
3525 ;;;; File name completion support. | |
3526 ;;;; ------------------------------------------------------------ | |
3527 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3528 ;; 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
|
3529 ;; Note that `ange-ftp-this-dir' is used as a free variable. |
1106 | 3530 (defun ange-ftp-file-entry-active-p (sym) |
3531 (let ((val (get sym 'val))) | |
3532 (or (not (stringp val)) | |
3533 (file-exists-p (ange-ftp-expand-symlink val ange-ftp-this-dir))))) | |
3534 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3535 ;; 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
|
3536 ;; 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
|
3537 ;; by completion-ignored-extensions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3538 ;; 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
|
3539 ;; are used as free variables. |
1106 | 3540 (defun ange-ftp-file-entry-not-ignored-p (sym) |
3541 (let ((val (get sym 'val)) | |
3542 (symname (symbol-name sym))) | |
3543 (if (stringp val) | |
3544 (let ((file (ange-ftp-expand-symlink val ange-ftp-this-dir))) | |
3545 (or (file-directory-p file) | |
3546 (and (file-exists-p file) | |
3547 (not (string-match ange-ftp-completion-ignored-pattern | |
3548 symname))))) | |
3549 (or val ; is a directory name | |
3550 (not (string-match ange-ftp-completion-ignored-pattern symname)))))) | |
3551 | |
3552 (defun ange-ftp-file-name-all-completions (file dir) | |
3553 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3554 (if (ange-ftp-ftp-name ange-ftp-this-dir) |
1106 | 3555 (progn |
3556 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3557 (setq ange-ftp-this-dir | |
3558 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) | |
3559 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3560 (completions | |
3561 (all-completions file tbl | |
3562 (function ange-ftp-file-entry-active-p)))) | |
3563 | |
3564 ;; see whether each matching file is a directory or not... | |
3565 (mapcar | |
3566 (function | |
3567 (lambda (file) | |
3568 (let ((ent (ange-ftp-get-hash-entry file tbl))) | |
3569 (if (and ent | |
3570 (or (not (stringp ent)) | |
3571 (file-directory-p | |
3572 (ange-ftp-expand-symlink ent | |
3573 ange-ftp-this-dir)))) | |
3574 (concat file "/") | |
3575 file)))) | |
3576 completions))) | |
3577 | |
3578 (if (string-equal "/" ange-ftp-this-dir) | |
3579 (nconc (all-completions file (ange-ftp-generate-root-prefixes)) | |
3580 (ange-ftp-real-file-name-all-completions file | |
3581 ange-ftp-this-dir)) | |
3582 (ange-ftp-real-file-name-all-completions file ange-ftp-this-dir))))) | |
3583 | |
3584 (defun ange-ftp-file-name-completion (file dir) | |
3585 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3586 (if (ange-ftp-ftp-name ange-ftp-this-dir) |
1106 | 3587 (progn |
3588 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3589 (if (equal file "") | |
3590 "" | |
3591 (setq ange-ftp-this-dir | |
3592 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) ;real? | |
3593 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3594 (ange-ftp-completion-ignored-pattern | |
3595 (mapconcat (function | |
3596 (lambda (s) (if (stringp s) | |
3597 (concat (regexp-quote s) "$") | |
3598 "/"))) ; / never in filename | |
3599 completion-ignored-extensions | |
3600 "\\|"))) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
3601 (save-match-data |
1106 | 3602 (or (ange-ftp-file-name-completion-1 |
3603 file tbl ange-ftp-this-dir | |
3604 (function ange-ftp-file-entry-not-ignored-p)) | |
3605 (ange-ftp-file-name-completion-1 | |
3606 file tbl ange-ftp-this-dir | |
3607 (function ange-ftp-file-entry-active-p))))))) | |
3608 | |
3609 (if (string-equal "/" ange-ftp-this-dir) | |
3610 (try-completion | |
3611 file | |
3612 (nconc (ange-ftp-generate-root-prefixes) | |
3613 (mapcar 'list | |
3614 (ange-ftp-real-file-name-all-completions file "/")))) | |
3615 (ange-ftp-real-file-name-completion file ange-ftp-this-dir))))) | |
3616 | |
3617 | |
3618 (defun ange-ftp-file-name-completion-1 (file tbl dir predicate) | |
3619 (let ((bestmatch (try-completion file tbl predicate))) | |
3620 (if bestmatch | |
3621 (if (eq bestmatch t) | |
3622 (if (file-directory-p (expand-file-name file dir)) | |
3623 (concat file "/") | |
3624 t) | |
3625 (if (and (eq (try-completion bestmatch tbl predicate) t) | |
3626 (file-directory-p | |
3627 (expand-file-name bestmatch dir))) | |
3628 (concat bestmatch "/") | |
3629 bestmatch))))) | |
3630 | |
3631 ;; Put these lines uncommmented in your .emacs if you want C-r to refresh | |
3632 ;; ange-ftp's cache whilst doing filename completion. | |
3633 ;; | |
3634 ;;(define-key minibuffer-local-completion-map "\C-r" 'ange-ftp-re-read-dir) | |
3635 ;;(define-key minibuffer-local-must-match-map "\C-r" 'ange-ftp-re-read-dir) | |
3636 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3637 ;; Force a re-read of the directory DIR. If DIR is omitted then it defaults |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3638 ;; to the directory part of the contents of the current buffer. |
1106 | 3639 (defun ange-ftp-re-read-dir (&optional dir) |
3640 (interactive) | |
3641 (if dir | |
3642 (setq dir (expand-file-name dir)) | |
3643 (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
|
3644 (if (ange-ftp-ftp-name dir) |
1106 | 3645 (progn |
3646 (setq ange-ftp-ls-cache-file nil) | |
3647 (ange-ftp-del-hash-entry dir ange-ftp-files-hashtable) | |
3648 (ange-ftp-get-files dir t)))) | |
3649 | |
3611
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3650 (defun ange-ftp-make-directory (dir &optional parents) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3651 (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
|
3652 (if parents |
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3653 (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
|
3654 (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
|
3655 (ange-ftp-make-directory parent parents)))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3656 (if (file-exists-p dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3657 (error "Cannot make directory %s: file already exists" dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3658 (let ((parsed (ange-ftp-ftp-name dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3659 (if parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3660 (let* ((host (nth 0 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3661 (user (nth 1 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3662 ;; Some ftp's on unix machines (at least on Suns) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3663 ;; insist that mkdir take a filename, and not a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3664 ;; 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
|
3665 ;; Non-unix machines will probably always insist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3666 ;; that mkdir takes a directory-name as an arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3667 ;; (as the ftp man page says it should). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3668 (name (ange-ftp-quote-string |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3669 (if (eq (ange-ftp-host-type host) 'unix) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3670 (ange-ftp-real-directory-file-name (nth 2 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3671 (ange-ftp-real-file-name-as-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3672 (nth 2 parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3673 (abbr (ange-ftp-abbreviate-filename dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3674 (result (ange-ftp-send-cmd host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3675 (list 'mkdir name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3676 (format "Making directory %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3677 abbr)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3678 (or (car result) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3679 (ange-ftp-error host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3680 (format "Could not make directory %s: %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3681 dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3682 (cdr result)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3683 (ange-ftp-add-file-entry dir t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3684 (ange-ftp-real-make-directory dir))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3685 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3686 (defun ange-ftp-delete-directory (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3687 (if (file-directory-p dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3688 (let ((parsed (ange-ftp-ftp-name dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3689 (if parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3690 (let* ((host (nth 0 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3691 (user (nth 1 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3692 ;; Some ftp's on unix machines (at least on Suns) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3693 ;; insist that rmdir take a filename, and not a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3694 ;; 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
|
3695 ;; Non-unix machines will probably always insist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3696 ;; that rmdir takes a directory-name as an arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3697 ;; (as the ftp man page says it should). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3698 (name (ange-ftp-quote-string |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3699 (if (eq (ange-ftp-host-type host) 'unix) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3700 (ange-ftp-real-directory-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3701 (nth 2 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3702 (ange-ftp-real-file-name-as-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3703 (nth 2 parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3704 (abbr (ange-ftp-abbreviate-filename dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3705 (result (ange-ftp-send-cmd host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3706 (list 'rmdir name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3707 (format "Removing directory %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3708 abbr)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3709 (or (car result) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3710 (ange-ftp-error host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3711 (format "Could not remove directory %s: %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3712 dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3713 (cdr result)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3714 (ange-ftp-delete-file-entry dir t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3715 (ange-ftp-real-delete-directory dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3716 (error "Not a directory: %s" dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3717 |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3718 ;; Make a local copy of FILE and return its name. |
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3719 |
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3720 (defun ange-ftp-file-local-copy (file) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3721 (let* ((fn1 (expand-file-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3722 (pa1 (ange-ftp-ftp-name fn1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3723 (if pa1 |
10748
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3724 (let ((tmp1 (ange-ftp-make-tmp-name (car pa1)))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3725 (ange-ftp-copy-file-internal fn1 tmp1 t nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3726 (format "Getting %s" fn1)) |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3727 tmp1)))) |
3532
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
3728 |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3729 (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
|
3730 (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
|
3731 (let ((tryfiles (if nosuffix |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3732 (list file) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3733 (list (concat file ".elc") (concat file ".el") file))) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3734 copy) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3735 (while (and tryfiles (not copy)) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3736 (condition-case error |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3737 (setq copy (ange-ftp-file-local-copy (car tryfiles))) |
13789
7ccb22bca972
(ange-ftp-load): Added missing form to `cdr' down
Karl Heuer <kwzh@gnu.org>
parents:
13594
diff
changeset
|
3738 (ftp-error nil)) |
7ccb22bca972
(ange-ftp-load): Added missing form to `cdr' down
Karl Heuer <kwzh@gnu.org>
parents:
13594
diff
changeset
|
3739 (setq tryfiles (cdr tryfiles))) |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3740 (if copy |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3741 (unwind-protect |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3742 (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
|
3743 (delete-file copy)) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3744 (or noerror |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3745 (signal 'file-error (list "Cannot open load file" file))))) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3746 (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
|
3747 |
1670
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3748 ;; 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
|
3749 (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
|
3750 (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
|
3751 |
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3752 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3753 ;; Need the following functions for making filenames of compressed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3754 ;; 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
|
3755 ;; have two extensions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3756 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3757 (defvar ange-ftp-make-compressed-filename-alist nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3758 "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
|
3759 Each element has the form (TYPE . FUNC). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3760 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
|
3761 of the form (COMPRESSING NEWNAME). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3762 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
|
3763 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
|
3764 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
|
3765 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3766 (defun ange-ftp-dired-compress-file (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3767 (let ((parsed (ange-ftp-ftp-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3768 conversion-func) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3769 (if (and parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3770 (setq conversion-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3771 (cdr (assq (ange-ftp-host-type (car parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3772 ange-ftp-make-compressed-filename-alist)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3773 (let* ((decision |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
3774 (save-match-data (funcall conversion-func name))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3775 (compressing (car decision)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3776 (newfile (nth 1 decision))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3777 (if compressing |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3778 (ange-ftp-compress name newfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3779 (ange-ftp-uncompress name newfile))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3780 (let (file-name-handler-alist) |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
3781 (dired-compress-file name))))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3782 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3783 ;; 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
|
3784 (defun ange-ftp-compress (file nfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3785 (let* ((parsed (ange-ftp-ftp-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3786 (tmp1 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3787 (tmp2 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3788 (abbr (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3789 (nabbr (ange-ftp-abbreviate-filename nfile)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3790 (msg1 (format "Getting %s" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3791 (msg2 (format "Putting %s" nabbr))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3792 (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3793 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3794 (ange-ftp-copy-file-internal file tmp1 t nil msg1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3795 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3796 (ange-ftp-message "Compressing %s..." abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3797 (call-process-region (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3798 (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3799 shell-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3800 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3801 t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3802 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3803 "-c" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3804 (format "compress -f -c < %s > %s" tmp1 tmp2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3805 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3806 (ange-ftp-message "Compressing %s...done" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3807 (if (zerop (buffer-size)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3808 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3809 (let (ange-ftp-process-verbose) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3810 (delete-file file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3811 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3812 (ange-ftp-del-tmp-name tmp1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3813 (ange-ftp-del-tmp-name tmp2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3814 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3815 ;; 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
|
3816 (defun ange-ftp-uncompress (file nfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3817 (let* ((parsed (ange-ftp-ftp-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3818 (tmp1 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3819 (tmp2 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3820 (abbr (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3821 (nabbr (ange-ftp-abbreviate-filename nfile)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3822 (msg1 (format "Getting %s" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3823 (msg2 (format "Putting %s" nabbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3824 ;; ;; Cheap hack because of problems with binary file transfers from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3825 ;; ;; VMS hosts. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3826 ;; (gbinary (not (eq 'vms (ange-ftp-host-type (car parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3827 ) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3828 (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3829 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3830 (ange-ftp-copy-file-internal file tmp1 t nil msg1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3831 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3832 (ange-ftp-message "Uncompressing %s..." abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3833 (call-process-region (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3834 (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3835 shell-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3836 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3837 t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3838 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3839 "-c" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3840 (format "uncompress -c < %s > %s" tmp1 tmp2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3841 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3842 (ange-ftp-message "Uncompressing %s...done" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3843 (if (zerop (buffer-size)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3844 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3845 (let (ange-ftp-process-verbose) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3846 (delete-file file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3847 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3848 (ange-ftp-del-tmp-name tmp1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3849 (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
|
3850 |
8b26137996f9
(ange-ftp-set-buffer-mode): Don't set make-backup-files.
Richard M. Stallman <rms@gnu.org>
parents:
10244
diff
changeset
|
3851 (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
|
3852 ;; 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
|
3853 ;; 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
|
3854 (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
|
3855 (ange-ftp-real-find-backup-file-name fn))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3856 |
1106 | 3857 ;;; Define the handler for special file names |
3858 ;;; that causes ange-ftp to be invoked. | |
3859 | |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3860 ;;;###autoload |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3861 (defun ange-ftp-hook-function (operation &rest args) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3862 (let ((fn (get operation 'ange-ftp))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3863 (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
|
3864 (ange-ftp-run-real-handler operation args)))) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3865 |
3893
d04e12f9153f
* ange-ftp.el: Loosen file-name-handler-alist regexp so we can do
Jim Blandy <jimb@redhat.com>
parents:
3831
diff
changeset
|
3866 |
d04e12f9153f
* ange-ftp.el: Loosen file-name-handler-alist regexp so we can do
Jim Blandy <jimb@redhat.com>
parents:
3831
diff
changeset
|
3867 ;;; 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
|
3868 ;;; 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
|
3869 ;;; 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
|
3870 ;;;###autoload |
12741
bcaa94db623c
(file-name-handler-alist): Don't match host name ending in period.
Richard M. Stallman <rms@gnu.org>
parents:
12441
diff
changeset
|
3871 (or (assoc "^/[^/:]*[^/:.]:" file-name-handler-alist) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3872 (setq file-name-handler-alist |
12741
bcaa94db623c
(file-name-handler-alist): Don't match host name ending in period.
Richard M. Stallman <rms@gnu.org>
parents:
12441
diff
changeset
|
3873 (cons '("^/[^/:]*[^/:.]:" . ange-ftp-hook-function) |
4185
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3874 file-name-handler-alist))) |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3875 |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3876 ;;; This regexp recognizes and absolute filenames with only one component, |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3877 ;;; 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
|
3878 ;;;###autoload |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3879 (or (assoc "^/[^/:]*\\'" file-name-handler-alist) |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3880 (setq file-name-handler-alist |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3881 (cons '("^/[^/:]*\\'" . ange-ftp-completion-hook-function) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3882 file-name-handler-alist))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3883 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3884 ;;; 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
|
3885 ;;; 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
|
3886 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3887 ;;; This sets the mode |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3888 (or (memq 'ange-ftp-set-buffer-mode find-file-hooks) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3889 (setq find-file-hooks |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3890 (cons 'ange-ftp-set-buffer-mode find-file-hooks))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3891 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3892 ;;; Now say where to find the handlers for particular operations. |
1106 | 3893 |
3894 (put 'file-name-directory 'ange-ftp 'ange-ftp-file-name-directory) | |
3895 (put 'file-name-nondirectory 'ange-ftp 'ange-ftp-file-name-nondirectory) | |
3896 (put 'file-name-as-directory 'ange-ftp 'ange-ftp-file-name-as-directory) | |
3897 (put 'directory-file-name 'ange-ftp 'ange-ftp-directory-file-name) | |
3898 (put 'expand-file-name 'ange-ftp 'ange-ftp-expand-file-name) | |
3899 (put 'make-directory 'ange-ftp 'ange-ftp-make-directory) | |
3900 (put 'delete-directory 'ange-ftp 'ange-ftp-delete-directory) | |
3901 (put 'insert-file-contents 'ange-ftp 'ange-ftp-insert-file-contents) | |
3902 (put 'directory-files 'ange-ftp 'ange-ftp-directory-files) | |
3903 (put 'file-directory-p 'ange-ftp 'ange-ftp-file-directory-p) | |
3904 (put 'file-writable-p 'ange-ftp 'ange-ftp-file-writable-p) | |
3905 (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
|
3906 (put 'file-executable-p 'ange-ftp 'ange-ftp-file-executable-p) |
1106 | 3907 (put 'file-symlink-p 'ange-ftp 'ange-ftp-file-symlink-p) |
3908 (put 'delete-file 'ange-ftp 'ange-ftp-delete-file) | |
3909 (put 'read-file-name-internal 'ange-ftp 'ange-ftp-read-file-name-internal) | |
3910 (put 'verify-visited-file-modtime 'ange-ftp | |
3911 'ange-ftp-verify-visited-file-modtime) | |
3912 (put 'file-exists-p 'ange-ftp 'ange-ftp-file-exists-p) | |
3913 (put 'write-region 'ange-ftp 'ange-ftp-write-region) | |
3914 (put 'backup-buffer 'ange-ftp 'ange-ftp-backup-buffer) | |
3915 (put 'copy-file 'ange-ftp 'ange-ftp-copy-file) | |
3916 (put 'rename-file 'ange-ftp 'ange-ftp-rename-file) | |
3917 (put 'file-attributes 'ange-ftp 'ange-ftp-file-attributes) | |
3918 (put 'file-name-all-completions 'ange-ftp 'ange-ftp-file-name-all-completions) | |
3919 (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
|
3920 (put 'insert-directory 'ange-ftp 'ange-ftp-insert-directory) |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3921 (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
|
3922 (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
|
3923 'ange-ftp-unhandled-file-name-directory) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3924 (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
|
3925 (put 'dired-uncache 'ange-ftp 'ange-ftp-dired-uncache) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3926 (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
|
3927 (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
|
3928 (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
|
3929 |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3930 ;; 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
|
3931 ;; 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
|
3932 (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
|
3933 |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3934 ;; 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
|
3935 ;; 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
|
3936 (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
|
3937 |
c7dfe102acc3
(dired-call-process): Put on ange-ftp property.
Karl Heuer <kwzh@gnu.org>
parents:
14572
diff
changeset
|
3938 (put 'dired-call-process 'ange-ftp 'ange-ftp-dired-call-process) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3939 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3940 ;;; Define ways of getting at unmodified Emacs primitives, |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3941 ;;; turning off our handler. |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3942 |
7042 | 3943 (defun ange-ftp-run-real-handler (operation args) |
3944 (let ((inhibit-file-name-handlers | |
3945 (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
|
3946 (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
|
3947 (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
|
3948 inhibit-file-name-handlers)))) |
7042 | 3949 (inhibit-file-name-operation operation)) |
3950 (apply operation args))) | |
3951 | |
1106 | 3952 (defun ange-ftp-real-file-name-directory (&rest args) |
7042 | 3953 (ange-ftp-run-real-handler 'file-name-directory args)) |
1106 | 3954 (defun ange-ftp-real-file-name-nondirectory (&rest args) |
7042 | 3955 (ange-ftp-run-real-handler 'file-name-nondirectory args)) |
1106 | 3956 (defun ange-ftp-real-file-name-as-directory (&rest args) |
7042 | 3957 (ange-ftp-run-real-handler 'file-name-as-directory args)) |
1106 | 3958 (defun ange-ftp-real-directory-file-name (&rest args) |
7042 | 3959 (ange-ftp-run-real-handler 'directory-file-name args)) |
1106 | 3960 (defun ange-ftp-real-expand-file-name (&rest args) |
7042 | 3961 (ange-ftp-run-real-handler 'expand-file-name args)) |
1106 | 3962 (defun ange-ftp-real-make-directory (&rest args) |
7042 | 3963 (ange-ftp-run-real-handler 'make-directory args)) |
1106 | 3964 (defun ange-ftp-real-delete-directory (&rest args) |
7042 | 3965 (ange-ftp-run-real-handler 'delete-directory args)) |
1106 | 3966 (defun ange-ftp-real-insert-file-contents (&rest args) |
7042 | 3967 (ange-ftp-run-real-handler 'insert-file-contents args)) |
1106 | 3968 (defun ange-ftp-real-directory-files (&rest args) |
7042 | 3969 (ange-ftp-run-real-handler 'directory-files args)) |
1106 | 3970 (defun ange-ftp-real-file-directory-p (&rest args) |
7042 | 3971 (ange-ftp-run-real-handler 'file-directory-p args)) |
1106 | 3972 (defun ange-ftp-real-file-writable-p (&rest args) |
7042 | 3973 (ange-ftp-run-real-handler 'file-writable-p args)) |
1106 | 3974 (defun ange-ftp-real-file-readable-p (&rest args) |
7042 | 3975 (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
|
3976 (defun ange-ftp-real-file-executable-p (&rest args) |
7042 | 3977 (ange-ftp-run-real-handler 'file-executable-p args)) |
1106 | 3978 (defun ange-ftp-real-file-symlink-p (&rest args) |
7042 | 3979 (ange-ftp-run-real-handler 'file-symlink-p args)) |
1106 | 3980 (defun ange-ftp-real-delete-file (&rest args) |
7042 | 3981 (ange-ftp-run-real-handler 'delete-file args)) |
1106 | 3982 (defun ange-ftp-real-read-file-name-internal (&rest args) |
7042 | 3983 (ange-ftp-run-real-handler 'read-file-name-internal args)) |
1106 | 3984 (defun ange-ftp-real-verify-visited-file-modtime (&rest args) |
7042 | 3985 (ange-ftp-run-real-handler 'verify-visited-file-modtime args)) |
1106 | 3986 (defun ange-ftp-real-file-exists-p (&rest args) |
7042 | 3987 (ange-ftp-run-real-handler 'file-exists-p args)) |
1106 | 3988 (defun ange-ftp-real-write-region (&rest args) |
7042 | 3989 (ange-ftp-run-real-handler 'write-region args)) |
1106 | 3990 (defun ange-ftp-real-backup-buffer (&rest args) |
7042 | 3991 (ange-ftp-run-real-handler 'backup-buffer args)) |
1106 | 3992 (defun ange-ftp-real-copy-file (&rest args) |
7042 | 3993 (ange-ftp-run-real-handler 'copy-file args)) |
1106 | 3994 (defun ange-ftp-real-rename-file (&rest args) |
7042 | 3995 (ange-ftp-run-real-handler 'rename-file args)) |
1106 | 3996 (defun ange-ftp-real-file-attributes (&rest args) |
7042 | 3997 (ange-ftp-run-real-handler 'file-attributes args)) |
1106 | 3998 (defun ange-ftp-real-file-name-all-completions (&rest args) |
7042 | 3999 (ange-ftp-run-real-handler 'file-name-all-completions args)) |
1106 | 4000 (defun ange-ftp-real-file-name-completion (&rest args) |
7042 | 4001 (ange-ftp-run-real-handler 'file-name-completion args)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4002 (defun ange-ftp-real-insert-directory (&rest args) |
7042 | 4003 (ange-ftp-run-real-handler 'insert-directory args)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4004 (defun ange-ftp-real-file-name-sans-versions (&rest args) |
7042 | 4005 (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
|
4006 (defun ange-ftp-real-shell-command (&rest args) |
7042 | 4007 (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
|
4008 (defun ange-ftp-real-load (&rest args) |
7042 | 4009 (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
|
4010 (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
|
4011 (ange-ftp-run-real-handler 'find-backup-file-name args)) |
1106 | 4012 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4013 ;; Here we support using dired on remote hosts. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4014 ;; 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
|
4015 ;; That involves too many unclean hooks. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4016 ;; It would be cleaner to support such operations by |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4017 ;; converting the foreign directory format to something dired can understand; |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4018 ;; something close to ls -l output. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4019 ;; 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
|
4020 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4021 ;; 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
|
4022 ;; I have preserved (and modernized) those hooks. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4023 ;; So the format conversion should be all that is needed. |
1106 | 4024 |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4025 (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
|
4026 (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
|
4027 (parsed (ange-ftp-ftp-name (expand-file-name file)))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4028 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4029 (insert |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4030 (if wildcard |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4031 (let ((default-directory (file-name-directory file))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4032 (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
|
4033 (ange-ftp-ls file switches full))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4034 (ange-ftp-real-insert-directory file switches wildcard full)))) |
1106 | 4035 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4036 (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
|
4037 (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
|
4038 (setq ange-ftp-ls-cache-file nil))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4039 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4040 (defvar ange-ftp-sans-version-alist nil |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4041 "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
|
4042 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4043 (defun ange-ftp-file-name-sans-versions (file keep-backup-version) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4044 (setq file (ange-ftp-abbreviate-filename file)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4045 (let ((parsed (ange-ftp-ftp-name file)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4046 host-type func) |
1106 | 4047 (if parsed |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4048 (setq host-type (ange-ftp-host-type (car parsed)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4049 func (cdr (assq (ange-ftp-host-type (car parsed)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4050 ange-ftp-sans-version-alist)))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4051 (if func (funcall func file keep-backup-version) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4052 (ange-ftp-real-file-name-sans-versions file keep-backup-version)))) |
1106 | 4053 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4054 ;;; This doesn't work yet; a new hook needs to be created. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4055 ;;; Maybe the new hook should be in call-process. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4056 (defun ange-ftp-shell-command (command) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4057 (let* ((parsed (ange-ftp-ftp-name default-directory)) |
1106 | 4058 (host (nth 0 parsed)) |
4059 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4060 (name (nth 2 parsed))) |
1106 | 4061 (if (not parsed) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4062 (ange-ftp-real-shell-command command) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4063 (if (> (length name) 0) ; else it's $HOME |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4064 (setq command (concat "cd " name "; " command))) |
1106 | 4065 (setq command |
4066 (format "%s %s \"%s\"" ; remsh -l USER does not work well | |
4067 ; 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
|
4068 remote-shell-program host command)) |
1106 | 4069 (ange-ftp-message "Remote command '%s' ..." command) |
4070 ;; Cannot call ange-ftp-real-dired-run-shell-command here as it | |
4071 ;; would prepend "cd default-directory" --- which bombs because | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4072 ;; default-directory is in ange-ftp syntax for remote file names. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4073 (ange-ftp-real-shell-command command)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4074 |
14634
c7dfe102acc3
(dired-call-process): Put on ange-ftp property.
Karl Heuer <kwzh@gnu.org>
parents:
14572
diff
changeset
|
4075 ;;; This is the handler for call-process. |
1106 | 4076 (defun ange-ftp-dired-call-process (program discard &rest arguments) |
4077 ;; PROGRAM is always one of those below in the cond in dired.el. | |
4078 ;; The ARGUMENTS are (nearly) always files. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4079 (if (ange-ftp-ftp-name default-directory) |
1106 | 4080 ;; Can't use ange-ftp-dired-host-type here because the current |
4081 ;; buffer is *dired-check-process output* | |
4082 (condition-case oops | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4083 (cond ((equal "chmod" program) |
1106 | 4084 (ange-ftp-call-chmod arguments)) |
4085 ;; ((equal "chgrp" program)) | |
4086 ;; ((equal dired-chown-program program)) | |
4087 (t (error "Unknown remote command: %s" program))) | |
4088 (ftp-error (insert (format "%s: %s, %s\n" | |
4089 (nth 1 oops) | |
4090 (nth 2 oops) | |
4091 (nth 3 oops)))) | |
4092 (error (insert (format "%s\n" (nth 1 oops))))) | |
4093 (apply 'call-process program nil (not discard) nil arguments))) | |
4094 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4095 ;;; This currently does not work; it is never called. |
1106 | 4096 (defun ange-ftp-call-chmod (args) |
4097 (if (< (length args) 2) | |
4098 (error "ange-ftp-call-chmod: missing mode and/or filename: %s" args)) | |
4099 (let ((mode (car args))) | |
4100 (mapcar | |
4101 (function | |
4102 (lambda (file) | |
4103 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4104 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 4105 (if parsed |
4106 (let* ((host (nth 0 parsed)) | |
4107 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4108 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 4109 (abbr (ange-ftp-abbreviate-filename file)) |
4110 (result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4111 (list 'chmod mode name) |
1106 | 4112 (format "doing chmod %s" |
4113 abbr)))) | |
4114 (or (car result) | |
4115 (ange-ftp-error host user | |
4116 (format "chmod: %s: \"%s\"" | |
4117 file | |
4118 (cdr result))))))))) | |
4119 (cdr args))) | |
4120 (setq ange-ftp-ls-cache-file nil)) ;stop confusing dired | |
4121 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4122 ;;; 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
|
4123 ;;; with dired. It could be reasonable to adapt this to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4124 ;;; replace ange-ftp-copy-file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4125 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4126 ;;;;; ------------------------------------------------------------ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4127 ;;;;; Noddy support for async copy-file within dired. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4128 ;;;;; ------------------------------------------------------------ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4129 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4130 ;;(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
|
4131 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4132 ;; (dired-handle-overwrite to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4133 ;; (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
|
4134 ;; cont nowait)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4135 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4136 ;;(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
|
4137 ;; &optional marker-char op1 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4138 ;; how-to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4139 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4140 ;; ;; 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
|
4141 ;; ;; called it rather than somebody else. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4142 ;; (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
|
4143 ;; (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
|
4144 ;; arg marker-char op1 how-to))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4145 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4146 ;;(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
|
4147 ;; &optional marker-char) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4148 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4149 ;; (if (and (boundp 'ange-ftp-dired-do-create-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4150 ;; ;; called from ange-ftp-dired-do-create-files? |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4151 ;; ange-ftp-dired-do-create-files |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4152 ;; ;; any files worth copying? |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4153 ;; fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4154 ;; ;; we only support async copy-file at the mo. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4155 ;; (eq file-creator 'dired-copy-file) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4156 ;; ;; 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
|
4157 ;; ;; as we tie ourself in recursive knots otherwise. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4158 ;; (or (ange-ftp-ftp-name (car fn-list)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4159 ;; ;; 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
|
4160 ;; ;; since the one for regexps starts prompting here, there and |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4161 ;; ;; everywhere. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4162 ;; (ange-ftp-ftp-name (funcall name-constructor (car fn-list))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4163 ;; ;; 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
|
4164 ;; (ange-ftp-dcf-1 file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4165 ;; operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4166 ;; fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4167 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4168 ;; (and (boundp 'target) target) ;dynamically bound |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4169 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4170 ;; (current-buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4171 ;; nil ;overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4172 ;; nil ;overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4173 ;; nil ;failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4174 ;; nil ;skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4175 ;; 0 ;success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4176 ;; (length fn-list) ;total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4177 ;; ) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
4178 ;; ;; normal case... use the interactive routine... much cheaper. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4179 ;; (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
|
4180 ;; name-constructor marker-char))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4181 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4182 ;;(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
|
4183 ;; target marker-char buffer overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4184 ;; overwrite-backup-query failures skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4185 ;; success-count total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4186 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4187 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4188 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4189 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4190 ;; (if (null fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4191 ;; (ange-ftp-dcf-3 failures operation total skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4192 ;; success-count buffer) |
1106 | 4193 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4194 ;; (let* ((from (car fn-list)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4195 ;; (to (funcall name-constructor from))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4196 ;; (if (equal to from) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4197 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4198 ;; (setq to nil) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4199 ;; (dired-log "Cannot %s to same file: %s\n" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4200 ;; (downcase operation) from))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4201 ;; (if (not to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4202 ;; (ange-ftp-dcf-1 file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4203 ;; operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4204 ;; (cdr fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4205 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4206 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4207 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4208 ;; buffer |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4209 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4210 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4211 ;; failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4212 ;; (cons (dired-make-relative from) skipped) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4213 ;; success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4214 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4215 ;; (let* ((overwrite (file-exists-p to)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4216 ;; (overwrite-confirmed ; for dired-handle-overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4217 ;; (and overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4218 ;; (let ((help-form '(format "\ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4219 ;;Type SPC or `y' to overwrite file `%s', |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4220 ;;DEL or `n' to skip to next, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4221 ;;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
|
4222 ;;`!' to overwrite all remaining files with no more questions." to))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4223 ;; (dired-query 'overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4224 ;; "Overwrite `%s'?" to)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4225 ;; ;; must determine if FROM is marked before file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4226 ;; ;; 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
|
4227 ;; (actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4228 ;; (cond ((integerp marker-char) marker-char) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4229 ;; (marker-char (dired-file-marker from)) ; slow |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4230 ;; (t nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4231 ;; (condition-case err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4232 ;; (funcall file-creator from to overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4233 ;; (list (function ange-ftp-dcf-2) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4234 ;; nil ;err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4235 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4236 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4237 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4238 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4239 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4240 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4241 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4242 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4243 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4244 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4245 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4246 ;; t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4247 ;; (file-error ; FILE-CREATOR aborted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4248 ;; (ange-ftp-dcf-2 nil ;result |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4249 ;; nil ;line |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4250 ;; err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4251 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4252 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4253 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4254 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4255 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4256 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4257 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4258 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4259 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4260 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4261 ;; total)))))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4262 ;; (set-buffer old-buf)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4263 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4264 ;;(defun ange-ftp-dcf-2 (result line err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4265 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4266 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4267 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4268 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4269 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4270 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4271 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4272 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4273 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4274 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4275 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4276 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4277 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4278 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4279 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4280 ;; (if (or err (not result)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4281 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4282 ;; (setq failures (cons (dired-make-relative from) failures)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4283 ;; (dired-log "%s `%s' to `%s' failed:\n%s\n" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4284 ;; operation from to (or err line))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4285 ;; (if overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4286 ;; ;; If we get here, file-creator hasn't been aborted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4287 ;; ;; and the old entry (if any) has to be deleted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4288 ;; ;; before adding the new entry. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4289 ;; (dired-remove-file to)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4290 ;; (setq success-count (1+ success-count)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4291 ;; (message "%s: %d of %d" operation success-count total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4292 ;; (dired-add-file to actual-marker-char)) |
1106 | 4293 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4294 ;; (ange-ftp-dcf-1 file-creator operation (cdr fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4295 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4296 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4297 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4298 ;; buffer |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4299 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4300 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4301 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4302 ;; total)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4303 ;; (set-buffer old-buf)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4304 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4305 ;;(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
|
4306 ;; buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4307 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4308 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4309 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4310 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4311 ;; (cond |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4312 ;; (failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4313 ;; (dired-log-summary |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4314 ;; (message "%s failed for %d of %d file%s %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4315 ;; operation (length failures) total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4316 ;; (dired-plural-s total) failures))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4317 ;; (skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4318 ;; (dired-log-summary |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4319 ;; (message "%s: %d of %d file%s skipped %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4320 ;; operation (length skipped) total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4321 ;; (dired-plural-s total) skipped))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4322 ;; (t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4323 ;; (message "%s: %s file%s." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4324 ;; operation success-count (dired-plural-s success-count)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4325 ;; (dired-move-to-filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4326 ;; (set-buffer old-buf)))) |
1106 | 4327 |
4328 ;;;; ----------------------------------------------- | |
4329 ;;;; Unix Descriptive Listing (dl) Support | |
4330 ;;;; ----------------------------------------------- | |
4331 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4332 ;; This is turned off because nothing uses it currently |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4333 ;; 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
|
4334 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4335 ;;(defconst ange-ftp-dired-dl-re-dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4336 ;; "^. [^ /]+/[ \n]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4337 ;; "Regular expression to use to search for dl directories.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4338 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4339 ;;(or (assq 'unix:dl ange-ftp-dired-re-dir-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4340 ;; (setq ange-ftp-dired-re-dir-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4341 ;; (cons (cons 'unix:dl ange-ftp-dired-dl-re-dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4342 ;; ange-ftp-dired-re-dir-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4343 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4344 ;;(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
|
4345 ;; "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
|
4346 ;; ;; This is the Unix dl version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4347 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4348 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4349 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4350 ;; (if (looking-at ". [^ ]+ +\\([0-9]+\\|-\\|=\\) ") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4351 ;; (goto-char (+ (point) 2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4352 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4353 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4354 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4355 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4356 ;;(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
|
4357 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4358 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4359 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4360 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4361 ;;(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
|
4362 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4363 ;; ;; 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
|
4364 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4365 ;; ;; This is the Unix dl version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4366 ;; (let ((opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4367 ;; case-fold-search hidden) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4368 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4369 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4370 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4371 ;; (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4372 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4373 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4374 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4375 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4376 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4377 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4378 ;; (skip-chars-forward "^ /" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4379 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4380 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4381 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4382 ;; (error "No file on this line")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4383 ;; (point))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4384 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4385 ;;(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
|
4386 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4387 ;; (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
|
4388 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 4389 |
4390 ;;;; ------------------------------------------------------------ | |
4391 ;;;; VOS support (VOS support is probably broken, | |
4392 ;;;; but I don't know anything about VOS.) | |
4393 ;;;; ------------------------------------------------------------ | |
4394 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4395 ;(defun ange-ftp-fix-name-for-vos (name &optional reverse) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4396 ; (setq name (copy-sequence name)) |
1106 | 4397 ; (let ((from (if reverse ?\> ?\/)) |
4398 ; (to (if reverse ?\/ ?\>)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4399 ; (i (1- (length name)))) |
1106 | 4400 ; (while (>= i 0) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4401 ; (if (= (aref name i) from) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4402 ; (aset name i to)) |
1106 | 4403 ; (setq i (1- i))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4404 ; name)) |
1106 | 4405 ; |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4406 ;(or (assq 'vos ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4407 ; (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4408 ; (cons '(vos . ange-ftp-fix-name-for-vos) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4409 ; ange-ftp-fix-name-func-alist))) |
1106 | 4410 ; |
4411 ;(or (memq 'vos ange-ftp-dumb-host-types) | |
4412 ; (setq ange-ftp-dumb-host-types | |
4413 ; (cons 'vos ange-ftp-dumb-host-types))) | |
4414 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4415 ;(defun ange-ftp-fix-dir-name-for-vos (dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4416 ; (ange-ftp-fix-name-for-vos |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4417 ; (concat dir-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4418 ; (if (eq ?/ (aref dir-name (1- (length dir-name)))) |
1106 | 4419 ; "" "/") |
4420 ; "*"))) | |
4421 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4422 ;(or (assq 'vos ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4423 ; (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4424 ; (cons '(vos . ange-ftp-fix-dir-name-for-vos) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4425 ; ange-ftp-fix-dir-name-func-alist))) |
1106 | 4426 ; |
4427 ;(defvar ange-ftp-vos-host-regexp nil | |
4428 ; "If a host matches this regexp then it is assumed to be running VOS.") | |
4429 ; | |
4430 ;(defun ange-ftp-vos-host (host) | |
4431 ; (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
|
4432 ; (save-match-data |
1106 | 4433 ; (string-match ange-ftp-vos-host-regexp host)))) |
4434 ; | |
4435 ;(defun ange-ftp-parse-vos-listing () | |
4436 ; "Parse the current buffer which is assumed to be in VOS list -all | |
4437 ;format, and return a hashtable as the result." | |
4438 ; (let ((tbl (ange-ftp-make-hashtable)) | |
4439 ; (type-list | |
4440 ; '(("^Files: [0-9]+ +Blocks: [0-9]+\n+" nil 40) | |
4441 ; ("^Dirs: [0-9]+\n+" t 30))) | |
4442 ; type-regexp type-is-dir type-col file) | |
4443 ; (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
4444 ; (save-match-data |
1106 | 4445 ; (while type-list |
4446 ; (setq type-regexp (car (car type-list)) | |
4447 ; type-is-dir (nth 1 (car type-list)) | |
4448 ; type-col (nth 2 (car type-list)) | |
4449 ; type-list (cdr type-list)) | |
4450 ; (if (re-search-forward type-regexp nil t) | |
4451 ; (while (eq (char-after (point)) ? ) | |
4452 ; (move-to-column type-col) | |
4453 ; (setq file (buffer-substring (point) | |
4454 ; (progn | |
4455 ; (end-of-line 1) | |
4456 ; (point)))) | |
4457 ; (ange-ftp-put-hash-entry file type-is-dir tbl) | |
4458 ; (forward-line 1)))) | |
4459 ; (ange-ftp-put-hash-entry "." 'vosdir tbl) | |
4460 ; (ange-ftp-put-hash-entry ".." 'vosdir tbl)) | |
4461 ; tbl)) | |
4462 ; | |
4463 ;(or (assq 'vos ange-ftp-parse-list-func-alist) | |
4464 ; (setq ange-ftp-parse-list-func-alist | |
4465 ; (cons '(vos . ange-ftp-parse-vos-listing) | |
4466 ; ange-ftp-parse-list-func-alist))) | |
4467 | |
4468 ;;;; ------------------------------------------------------------ | |
4469 ;;;; VMS support. | |
4470 ;;;; ------------------------------------------------------------ | |
4471 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4472 ;; 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
|
4473 ;; to UNIX-ish. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4474 (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
|
4475 (save-match-data |
1106 | 4476 (if reverse |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4477 (if (string-match "^\\([^:]+:\\)?\\(\\[.*\\]\\)?\\([^][]*\\)$" name) |
1106 | 4478 (let (drive dir file) |
4479 (if (match-beginning 1) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4480 (setq drive (substring name |
1106 | 4481 (match-beginning 1) |
4482 (match-end 1)))) | |
4483 (if (match-beginning 2) | |
4484 (setq dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4485 (substring name (match-beginning 2) (match-end 2)))) |
1106 | 4486 (if (match-beginning 3) |
4487 (setq file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4488 (substring name (match-beginning 3) (match-end 3)))) |
1106 | 4489 (and dir |
4490 (setq dir (apply (function concat) | |
4491 (mapcar (function | |
4492 (lambda (char) | |
4493 (if (= char ?.) | |
4494 (vector ?/) | |
4495 (vector char)))) | |
4496 (substring dir 1 -1))))) | |
4497 (concat (and drive | |
4498 (concat "/" drive "/")) | |
4499 dir (and dir "/") | |
4500 file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4501 (error "name %s didn't match" name)) |
1106 | 4502 (let (drive dir file tmp) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4503 (if (string-match "^/[^:]+:/" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4504 (setq drive (substring name 1 |
1106 | 4505 (1- (match-end 0))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4506 name (substring name (match-end 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4507 (setq tmp (file-name-directory name)) |
1106 | 4508 (if tmp |
4509 (setq dir (apply (function concat) | |
4510 (mapcar (function | |
4511 (lambda (char) | |
4512 (if (= char ?/) | |
4513 (vector ?.) | |
4514 (vector char)))) | |
4515 (substring tmp 0 -1))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4516 (setq file (file-name-nondirectory name)) |
1106 | 4517 (concat drive |
4518 (and dir (concat "[" (if drive nil ".") dir "]")) | |
4519 file))))) | |
4520 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4521 ;; (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
|
4522 ;; (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
|
4523 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4524 (or (assq 'vms ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4525 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4526 (cons '(vms . ange-ftp-fix-name-for-vms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4527 ange-ftp-fix-name-func-alist))) |
1106 | 4528 |
4529 (or (memq 'vms ange-ftp-dumb-host-types) | |
4530 (setq ange-ftp-dumb-host-types | |
4531 (cons 'vms ange-ftp-dumb-host-types))) | |
4532 | |
4533 ;; It is important that this function barf for directories for which we know | |
4534 ;; that we cannot possibly get a directory listing, such as "/" and "/DEV:/". | |
4535 ;; This is because it saves an unnecessary FTP error, or possibly the listing | |
4536 ;; might succeed, but give erroneous info. This last case is particularly | |
4537 ;; likely for OS's (like MTS) for which we need to use a wildcard in order | |
4538 ;; to list a directory. | |
4539 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4540 ;; 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
|
4541 (defun ange-ftp-fix-dir-name-for-vms (dir-name) |
1106 | 4542 ;; Should there be entries for .. -> [-] and . -> [] below. Don't |
4543 ;; think so, because expand-filename should have already short-circuited | |
4544 ;; them. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4545 (cond ((string-equal dir-name "/") |
1106 | 4546 (error "Cannot get listing for fictitious \"/\" directory.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4547 ((string-match "^/[-A-Z0-9_$]+:/$" dir-name) |
1106 | 4548 (error "Cannot get listing for device.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4549 ((ange-ftp-fix-name-for-vms dir-name)))) |
1106 | 4550 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4551 (or (assq 'vms ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4552 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4553 (cons '(vms . ange-ftp-fix-dir-name-for-vms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4554 ange-ftp-fix-dir-name-func-alist))) |
1106 | 4555 |
4556 (defvar ange-ftp-vms-host-regexp nil) | |
4557 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4558 ;; Return non-nil if HOST is running VMS. |
1106 | 4559 (defun ange-ftp-vms-host (host) |
4560 (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
|
4561 (save-match-data |
1106 | 4562 (string-match ange-ftp-vms-host-regexp host)))) |
4563 | |
4564 ;; Because some VMS ftp servers convert filenames to lower case | |
4565 ;; we allow a-z in the filename regexp. I'm not too happy about this. | |
4566 | |
4567 (defconst ange-ftp-vms-filename-regexp | |
4568 (concat | |
6309
9217f29851c2
Don't use triple-hyphen in a character class.
Karl Heuer <kwzh@gnu.org>
parents:
6192
diff
changeset
|
4569 "\\(\\([_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
|
4570 "[-_A-Za-z0-9$]*;+[0-9]*\\)") |
1106 | 4571 "Regular expression to match for a valid VMS file name in Dired buffer. |
4572 Stupid freaking bug! Position of _ and $ shouldn't matter but they do. | |
4573 Having [A-Z0-9$_] bombs on filename _$$CHANGE_LOG$.TXT$ and $CHANGE_LOG$.TX | |
4574 Other orders of $ and _ seem to all work just fine.") | |
4575 | |
4576 ;; These parsing functions are as general as possible because the syntax | |
4577 ;; of ftp listings from VMS hosts is a bit erratic. What saves us is that | |
4578 ;; the VMS filename syntax is so rigid. If they bomb on a listing in the | |
4579 ;; standard VMS Multinet format, then this is a bug. If they bomb on a listing | |
4580 ;; from vms.weird.net, then too bad. | |
4581 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4582 ;; Extract the next filename from a VMS dired-like listing. |
1106 | 4583 (defun ange-ftp-parse-vms-filename () |
4584 (if (re-search-forward | |
4585 ange-ftp-vms-filename-regexp | |
4586 nil t) | |
4587 (buffer-substring (match-beginning 0) (match-end 0)))) | |
4588 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4589 ;; 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
|
4590 ;; format, and return a hashtable as the result. |
1106 | 4591 (defun ange-ftp-parse-vms-listing () |
4592 (let ((tbl (ange-ftp-make-hashtable)) | |
4593 file) | |
4594 (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
4595 (save-match-data |
1106 | 4596 (while (setq file (ange-ftp-parse-vms-filename)) |
4597 (if (string-match "\\.\\(DIR\\|dir\\);[0-9]+" file) | |
4598 ;; deal with directories | |
4599 (ange-ftp-put-hash-entry | |
4600 (substring file 0 (match-beginning 0)) t tbl) | |
4601 (ange-ftp-put-hash-entry file nil tbl) | |
4602 (if (string-match ";[0-9]+$" file) ; deal with extension | |
4603 ;; sans extension | |
4604 (ange-ftp-put-hash-entry | |
4605 (substring file 0 (match-beginning 0)) nil tbl))) | |
4606 (forward-line 1)) | |
4607 ;; Would like to look for a "Total" line, or a "Directory" line to | |
4608 ;; make sure that the listing isn't complete garbage before putting | |
4609 ;; in "." and "..", but we can't even count on all VAX's giving us | |
4610 ;; either of these. | |
4611 (ange-ftp-put-hash-entry "." t tbl) | |
4612 (ange-ftp-put-hash-entry ".." t tbl)) | |
4613 tbl)) | |
4614 | |
4615 (or (assq 'vms ange-ftp-parse-list-func-alist) | |
4616 (setq ange-ftp-parse-list-func-alist | |
4617 (cons '(vms . ange-ftp-parse-vms-listing) | |
4618 ange-ftp-parse-list-func-alist))) | |
4619 | |
4620 ;; This version only deletes file entries which have | |
4621 ;; explicit version numbers, because that is all VMS allows. | |
4622 | |
4623 ;; Can the following two functions be speeded up using file | |
4624 ;; completion functions? | |
4625 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4626 (defun ange-ftp-vms-delete-file-entry (name &optional dir-p) |
1106 | 4627 (if dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4628 (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
|
4629 (save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4630 (let ((file (ange-ftp-get-file-part name))) |
1106 | 4631 (if (string-match ";[0-9]+$" file) |
4632 ;; In VMS you can't delete a file without an explicit | |
4633 ;; version number, or wild-card (e.g. FOO;*) | |
4634 ;; For now, we give up on wildcards. | |
4635 (let ((files (ange-ftp-get-hash-entry | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4636 (file-name-directory name) |
1106 | 4637 ange-ftp-files-hashtable))) |
4638 (if files | |
4639 (let* ((root (substring file 0 | |
4640 (match-beginning 0))) | |
4641 (regexp (concat "^" | |
4642 (regexp-quote root) | |
4643 ";[0-9]+$")) | |
4644 versions) | |
4645 (ange-ftp-del-hash-entry file files) | |
4646 ;; Now we need to check if there are any | |
4647 ;; versions left. If not, then delete the | |
4648 ;; root entry. | |
4649 (mapatoms | |
4650 '(lambda (sym) | |
4651 (and (string-match regexp (get sym 'key)) | |
4652 (setq versions t))) | |
4653 files) | |
4654 (or versions | |
4655 (ange-ftp-del-hash-entry root files)))))))))) | |
4656 | |
4657 (or (assq 'vms ange-ftp-delete-file-entry-alist) | |
4658 (setq ange-ftp-delete-file-entry-alist | |
4659 (cons '(vms . ange-ftp-vms-delete-file-entry) | |
4660 ange-ftp-delete-file-entry-alist))) | |
4661 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4662 (defun ange-ftp-vms-add-file-entry (name &optional dir-p) |
1106 | 4663 (if dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4664 (ange-ftp-internal-add-file-entry name t) |
1106 | 4665 (let ((files (ange-ftp-get-hash-entry |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4666 (file-name-directory name) |
1106 | 4667 ange-ftp-files-hashtable))) |
4668 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4669 (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
|
4670 (save-match-data |
1106 | 4671 (if (string-match ";[0-9]+$" file) |
4672 (ange-ftp-put-hash-entry | |
4673 (substring file 0 (match-beginning 0)) | |
4674 nil files) | |
4675 ;; Need to figure out what version of the file | |
4676 ;; is being added. | |
4677 (let ((regexp (concat "^" | |
4678 (regexp-quote file) | |
4679 ";\\([0-9]+\\)$")) | |
4680 (version 0)) | |
4681 (mapatoms | |
4682 '(lambda (sym) | |
4683 (let ((name (get sym 'key))) | |
4684 (and (string-match regexp name) | |
4685 (setq version | |
4686 (max version | |
4687 (string-to-int | |
4688 (substring name | |
4689 (match-beginning 1) | |
4690 (match-end 1)))))))) | |
4691 files) | |
4692 (setq version (1+ version)) | |
4693 (ange-ftp-put-hash-entry | |
4694 (concat file ";" (int-to-string version)) | |
4695 nil files)))) | |
4696 (ange-ftp-put-hash-entry file nil files)))))) | |
4697 | |
4698 (or (assq 'vms ange-ftp-add-file-entry-alist) | |
4699 (setq ange-ftp-add-file-entry-alist | |
4700 (cons '(vms . ange-ftp-vms-add-file-entry) | |
4701 ange-ftp-add-file-entry-alist))) | |
4702 | |
4703 | |
4704 (defun ange-ftp-add-vms-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4705 "Mark HOST as the name of a machine running VMS." |
1106 | 4706 (interactive |
4707 (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
|
4708 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4709 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 4710 (if (not (ange-ftp-vms-host host)) |
4711 (setq ange-ftp-vms-host-regexp | |
4712 (concat "^" (regexp-quote host) "$" | |
4713 (and ange-ftp-vms-host-regexp "\\|") | |
4714 ange-ftp-vms-host-regexp) | |
4715 ange-ftp-host-cache nil))) | |
4716 | |
4717 | |
4718 (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
|
4719 (save-match-data |
1106 | 4720 (if (string-match "\\.\\(DIR\\|dir\\)\\(;[0-9]+\\)?$" name) |
4721 (setq name (substring name 0 (match-beginning 0)))) | |
4722 (ange-ftp-real-file-name-as-directory name))) | |
4723 | |
4724 (or (assq 'vms ange-ftp-file-name-as-directory-alist) | |
4725 (setq ange-ftp-file-name-as-directory-alist | |
4726 (cons '(vms . ange-ftp-vms-file-name-as-directory) | |
4727 ange-ftp-file-name-as-directory-alist))) | |
4728 | |
4729 ;;; Tree dired support: | |
4730 | |
4731 ;; For this code I have borrowed liberally from Sebastian Kremer's | |
4732 ;; dired-vms.el | |
4733 | |
4734 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4735 ;;;; These regexps must be anchored to beginning of line. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4736 ;;;; 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
|
4737 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4738 ;;(defconst ange-ftp-dired-vms-re-exe "^. [^ \t.]+\\.\\(EXE\\|exe\\)[; ]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4739 ;; "Regular expression to use to search for VMS executable files.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4740 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4741 ;;(defconst ange-ftp-dired-vms-re-dir "^. [^ \t.]+\\.\\(DIR\\|dir\\)[; ]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4742 ;; "Regular expression to use to search for VMS directories.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4743 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4744 ;;(or (assq 'vms ange-ftp-dired-re-exe-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4745 ;; (setq ange-ftp-dired-re-exe-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4746 ;; (cons (cons 'vms ange-ftp-dired-vms-re-exe) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4747 ;; ange-ftp-dired-re-exe-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4748 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4749 ;;(or (assq 'vms ange-ftp-dired-re-dir-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4750 ;; (setq ange-ftp-dired-re-dir-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4751 ;; (cons (cons 'vms ange-ftp-dired-vms-re-dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4752 ;; ange-ftp-dired-re-dir-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4753 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4754 ;;(defun ange-ftp-dired-vms-insert-headerline (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4755 ;; ;; VMS inserts a headerline. I would prefer the headerline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4756 ;; ;; to be in ange-ftp format. This version tries to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4757 ;; ;; be careful, because we can't count on a headerline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4758 ;; ;; over ftp, and we wouldn't want to delete anything |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4759 ;; ;; important. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4760 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4761 ;; (if (looking-at "^ wildcard ") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4762 ;; (forward-line 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4763 ;; (if (looking-at "^[ \n\t]*[^\n]+\\][ \t]*\n") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4764 ;; (delete-region (point) (match-end 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4765 ;; (ange-ftp-real-dired-insert-headerline dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4766 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4767 ;;(or (assq 'vms ange-ftp-dired-insert-headerline-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4768 ;; (setq ange-ftp-dired-insert-headerline-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4769 ;; (cons '(vms . ange-ftp-dired-vms-insert-headerline) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4770 ;; ange-ftp-dired-insert-headerline-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4771 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4772 ;;(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
|
4773 ;; "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
|
4774 ;;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
|
4775 ;; ;; This is the VMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4776 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4777 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4778 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4779 ;; (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
|
4780 ;; (goto-char (match-beginning 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4781 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4782 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4783 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4784 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4785 ;;(or (assq 'vms ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4786 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4787 ;; (cons '(vms . ange-ftp-dired-vms-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4788 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4789 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4790 ;;(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
|
4791 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4792 ;; ;; 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
|
4793 ;; ;; case-fold-search must be nil, at least for VMS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4794 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4795 ;; ;; This is the VMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4796 ;; (let (opoint hidden case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4797 ;; (setq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4798 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4799 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4800 ;; (save-excursion (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4801 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4802 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4803 ;; (re-search-forward ange-ftp-vms-filename-regexp eol t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4804 ;; (or no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4805 ;; (not (eq opoint (point))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4806 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4807 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4808 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4809 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4810 ;; "No file on this line"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4811 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4812 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4813 ;; (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4814 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4815 ;;(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
|
4816 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4817 ;; (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
|
4818 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4819 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4820 ;;(defun ange-ftp-dired-vms-between-files () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4821 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4822 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4823 ;; (or (equal (following-char) 10) ; newline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4824 ;; (equal (following-char) 9) ; tab |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4825 ;; (progn (forward-char 2) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4826 ;; (or (looking-at "Total of") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4827 ;; (equal (following-char) 32)))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4828 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4829 ;;(or (assq 'vms ange-ftp-dired-between-files-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4830 ;; (setq ange-ftp-dired-between-files-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4831 ;; (cons '(vms . ange-ftp-dired-vms-between-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4832 ;; ange-ftp-dired-between-files-alist))) |
1106 | 4833 |
4834 ;; Beware! In VMS filenames must be of the form "FILE.TYPE". | |
4835 ;; Therefore, we cannot just append a ".Z" to filenames for | |
4836 ;; compressed files. Instead, we turn "FILE.TYPE" into | |
4837 ;; "FILE.TYPE-Z". Hope that this is a reasonable thing to do. | |
4838 | |
4839 (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
|
4840 (cond |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4841 ((string-match "-Z;[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4842 (list nil (substring name 0 (match-beginning 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4843 ((string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4844 (list nil (substring name 0 (match-beginning 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4845 ((string-match "-Z$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4846 (list nil (substring name 0 -2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4847 (t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4848 (list t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4849 (if (string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4850 (concat (substring name 0 (match-beginning 0)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4851 "-Z") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4852 (concat name "-Z")))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4853 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4854 (or (assq 'vms ange-ftp-make-compressed-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4855 (setq ange-ftp-make-compressed-filename-alist |
1106 | 4856 (cons '(vms . ange-ftp-vms-make-compressed-filename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4857 ange-ftp-make-compressed-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4858 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4859 ;;;; 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
|
4860 ;;;; (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
|
4861 ;;;; 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
|
4862 ;;;; (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
|
4863 ;;;; If dired gets confused, revert-buffer will fix it. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4864 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4865 ;;(defun ange-ftp-dired-vms-ls-trim () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4866 ;; (goto-char (point-min)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4867 ;; (let ((case-fold-search nil)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4868 ;; (re-search-forward ange-ftp-vms-filename-regexp)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4869 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4870 ;; (delete-region (point-min) (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4871 ;; (forward-line 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4872 ;; (delete-region (point) (point-max))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4873 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4874 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4875 ;;(or (assq 'vms ange-ftp-dired-ls-trim-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4876 ;; (setq ange-ftp-dired-ls-trim-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4877 ;; (cons '(vms . ange-ftp-dired-vms-ls-trim) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4878 ;; ange-ftp-dired-ls-trim-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4879 |
12977
046bc1e2acc9
(ange-ftp-vms-sans-version): Accept extra args.
Richard M. Stallman <rms@gnu.org>
parents:
12741
diff
changeset
|
4880 (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
|
4881 (save-match-data |
1106 | 4882 (if (string-match ";[0-9]+$" name) |
4883 (substring name 0 (match-beginning 0)) | |
4884 name))) | |
4885 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4886 (or (assq 'vms ange-ftp-sans-version-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4887 (setq ange-ftp-sans-version-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4888 (cons '(vms . ange-ftp-vms-sans-version) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4889 ange-ftp-sans-version-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4890 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4891 ;;(defvar ange-ftp-file-version-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4892 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4893 ;;;;; 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
|
4894 ;;;;; 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
|
4895 ;;;;; ange-ftp-dired-vms-flag-backup-files. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4896 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4897 ;;(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
|
4898 ;; "Flag numerical backups for deletion. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4899 ;;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
|
4900 ;;Positive prefix arg KEEP overrides `dired-kept-versions'; |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4901 ;;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
|
4902 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4903 ;;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
|
4904 ;;with a prefix argument." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4905 ;;; (interactive "P") ; Never actually called interactively. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4906 ;; (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
|
4907 ;; (let ((early-retention (if (< keep 0) (- keep) kept-old-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4908 ;; ;; 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
|
4909 ;; ;; This could wipe ALL copies of the file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4910 ;; (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
|
4911 ;; (action (or msg "Cleaning")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4912 ;; (ange-ftp-trample-marker (or marker dired-del-marker)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4913 ;; (ange-ftp-file-version-alist ())) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4914 ;; (message (concat action |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4915 ;; " numerical backups (keeping %d late, %d old)...") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4916 ;; late-retention early-retention) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4917 ;; ;; Look at each file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4918 ;; ;; If the file has numeric backup versions, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4919 ;; ;; 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
|
4920 ;; ;; (FILENAME . VERSION-NUMBER-LIST) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4921 ;; (dired-map-dired-file-lines (function |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4922 ;; ange-ftp-dired-vms-collect-file-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4923 ;; ;; Sort each VERSION-NUMBER-LIST, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4924 ;; ;; and remove the versions not to be deleted. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4925 ;; (let ((fval ange-ftp-file-version-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4926 ;; (while fval |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4927 ;; (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4928 ;; (v-count (length sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4929 ;; (if (> v-count (+ early-retention late-retention)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4930 ;; (rplacd (nthcdr early-retention sorted-v-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4931 ;; (nthcdr (- v-count late-retention) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4932 ;; sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4933 ;; (rplacd (car fval) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4934 ;; (cdr sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4935 ;; (setq fval (cdr fval)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4936 ;; ;; 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
|
4937 ;; ;; 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
|
4938 ;; (dired-map-dired-file-lines |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4939 ;; (function |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4940 ;; ange-ftp-dired-vms-trample-file-versions mark)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4941 ;; (message (concat action " numerical backups...done")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4942 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4943 ;;(or (assq 'vms ange-ftp-dired-clean-directory-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4944 ;; (setq ange-ftp-dired-clean-directory-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4945 ;; (cons '(vms . ange-ftp-dired-vms-clean-directory) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4946 ;; ange-ftp-dired-clean-directory-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4947 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4948 ;;(defun ange-ftp-dired-vms-collect-file-versions (fn) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4949 ;; ;; "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
|
4950 ;; ;;That is a list of strings which are file names. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4951 ;; ;;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
|
4952 ;;(let ((name (nth 2 (ange-ftp-ftp-name fn)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4953 ;; (if (string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4954 ;; (let* ((name (substring name 0 (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4955 ;; (fn (ange-ftp-replace-name-component fn name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4956 ;; (if (not (assq fn ange-ftp-file-version-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4957 ;; (let* ((base-versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4958 ;; (concat (file-name-nondirectory name) ";")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4959 ;; (bv-length (length base-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4960 ;; (possibilities (file-name-all-completions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4961 ;; base-versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4962 ;; (file-name-directory fn))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4963 ;; (versions (mapcar |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4964 ;; '(lambda (arg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4965 ;; (if (and (string-match |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4966 ;; "[0-9]+$" arg bv-length) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4967 ;; (= (match-beginning 0) bv-length)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4968 ;; (string-to-int (substring arg bv-length)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4969 ;; 0)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4970 ;; possibilities))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4971 ;; (if versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4972 ;; (setq |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4973 ;; ange-ftp-file-version-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4974 ;; (cons (cons fn versions) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4975 ;; ange-ftp-file-version-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 ;;(defun ange-ftp-dired-vms-trample-file-versions (fn) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4978 ;; (let* ((start-vn (string-match ";[0-9]+$" fn)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4979 ;; base-version-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4980 ;; (and start-vn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4981 ;; (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
|
4982 ;; (assoc (substring fn 0 start-vn) ; this looks like a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4983 ;; ange-ftp-file-version-alist)) ; subversion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4984 ;; (not (memq (string-to-int (substring fn (1+ start-vn))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4985 ;; base-version-list)) ; this one doesn't make the cut |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4986 ;; (progn (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4987 ;; (delete-char 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4988 ;; (insert ange-ftp-trample-marker))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4989 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4990 ;;(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
|
4991 ;; (let ((dired-kept-versions 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4992 ;; (kept-old-versions 0) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4993 ;; marker msg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4994 ;; (if unflag-p |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4995 ;; (setq marker ?\040 msg "Unflagging") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4996 ;; (setq marker dired-del-marker msg "Cleaning")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4997 ;; (ange-ftp-dired-vms-clean-directory nil marker msg))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4998 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4999 ;;(or (assq 'vms ange-ftp-dired-flag-backup-files-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5000 ;; (setq ange-ftp-dired-flag-backup-files-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5001 ;; (cons '(vms . ange-ftp-dired-vms-flag-backup-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5002 ;; ange-ftp-dired-flag-backup-files-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5003 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5004 ;;(defun ange-ftp-dired-vms-backup-diff (&optional switches) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5005 ;; (let ((file (dired-get-filename 'no-dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5006 ;; bak) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5007 ;; (if (and (string-match ";[0-9]+$" file) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5008 ;; ;; Find most recent previous version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5009 ;; (let ((root (substring file 0 (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5010 ;; (ver |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5011 ;; (string-to-int (substring file (1+ (match-beginning 0))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5012 ;; found) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5013 ;; (setq ver (1- ver)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5014 ;; (while (and (> ver 0) (not found)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5015 ;; (setq bak (concat root ";" (int-to-string ver))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5016 ;; (and (file-exists-p bak) (setq found t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5017 ;; (setq ver (1- ver))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5018 ;; found)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5019 ;; (if switches |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5020 ;; (diff (expand-file-name bak) (expand-file-name file) switches) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5021 ;; (diff (expand-file-name bak) (expand-file-name file))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5022 ;; (error "No previous version found for %s" file)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5023 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5024 ;;(or (assq 'vms ange-ftp-dired-backup-diff-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5025 ;; (setq ange-ftp-dired-backup-diff-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5026 ;; (cons '(vms . ange-ftp-dired-vms-backup-diff) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5027 ;; ange-ftp-dired-backup-diff-alist))) |
1106 | 5028 |
5029 | |
5030 ;;;; ------------------------------------------------------------ | |
5031 ;;;; MTS support | |
5032 ;;;; ------------------------------------------------------------ | |
5033 | |
5034 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5035 ;; 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
|
5036 ;; MTS to UNIX-ish. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5037 (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
|
5038 (save-match-data |
1106 | 5039 (if reverse |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5040 (if (string-match "^\\([^:]+:\\)?\\(.*\\)$" name) |
1106 | 5041 (let (acct file) |
5042 (if (match-beginning 1) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5043 (setq acct (substring name 0 (match-end 1)))) |
1106 | 5044 (if (match-beginning 2) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5045 (setq file (substring name |
1106 | 5046 (match-beginning 2) (match-end 2)))) |
5047 (concat (and acct (concat "/" acct "/")) | |
5048 file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5049 (error "name %s didn't match" name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5050 (if (string-match "^/\\([^:]+:\\)/\\(.*\\)$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5051 (concat (substring name 1 (match-end 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5052 (substring name (match-beginning 2) (match-end 2))) |
1106 | 5053 ;; Let's hope that mts will recognize it anyway. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5054 name)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5055 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5056 (or (assq 'mts ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5057 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5058 (cons '(mts . ange-ftp-fix-name-for-mts) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5059 ange-ftp-fix-name-func-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5060 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5061 ;; 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
|
5062 ;; Remember that there are no directories in MTS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5063 (defun ange-ftp-fix-dir-name-for-mts (dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5064 (if (string-equal dir-name "/") |
1106 | 5065 (error "Cannot get listing for fictitious \"/\" directory.") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5066 (let ((dir-name (ange-ftp-fix-name-for-mts dir-name))) |
1106 | 5067 (cond |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5068 ((string-equal dir-name "") |
1106 | 5069 "?") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5070 ((string-match ":$" dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5071 (concat dir-name "?")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5072 (dir-name))))) ; It's just a single file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5073 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5074 (or (assq 'mts ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5075 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5076 (cons '(mts . ange-ftp-fix-dir-name-for-mts) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5077 ange-ftp-fix-dir-name-func-alist))) |
1106 | 5078 |
5079 (or (memq 'mts ange-ftp-dumb-host-types) | |
5080 (setq ange-ftp-dumb-host-types | |
5081 (cons 'mts ange-ftp-dumb-host-types))) | |
5082 | |
5083 (defvar ange-ftp-mts-host-regexp nil) | |
5084 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5085 ;; Return non-nil if HOST is running MTS. |
1106 | 5086 (defun ange-ftp-mts-host (host) |
5087 (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
|
5088 (save-match-data |
1106 | 5089 (string-match ange-ftp-mts-host-regexp host)))) |
5090 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5091 ;; Parse the current buffer which is assumed to be in mts ftp dir format. |
1106 | 5092 (defun ange-ftp-parse-mts-listing () |
5093 (let ((tbl (ange-ftp-make-hashtable))) | |
5094 (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
5095 (save-match-data |
1106 | 5096 (while (re-search-forward ange-ftp-date-regexp nil t) |
5097 (end-of-line) | |
5098 (skip-chars-backward " ") | |
5099 (let ((end (point))) | |
5100 (skip-chars-backward "-A-Z0-9_.!") | |
5101 (ange-ftp-put-hash-entry (buffer-substring (point) end) nil tbl)) | |
5102 (forward-line 1))) | |
5103 ;; Don't need to bother with .. | |
5104 (ange-ftp-put-hash-entry "." t tbl) | |
5105 tbl)) | |
5106 | |
5107 (or (assq 'mts ange-ftp-parse-list-func-alist) | |
5108 (setq ange-ftp-parse-list-func-alist | |
5109 (cons '(mts . ange-ftp-parse-mts-listing) | |
5110 ange-ftp-parse-list-func-alist))) | |
5111 | |
5112 (defun ange-ftp-add-mts-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5113 "Mark HOST as the name of a machine running MTS." |
1106 | 5114 (interactive |
5115 (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
|
5116 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5117 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 5118 (if (not (ange-ftp-mts-host host)) |
5119 (setq ange-ftp-mts-host-regexp | |
5120 (concat "^" (regexp-quote host) "$" | |
5121 (and ange-ftp-mts-host-regexp "\\|") | |
5122 ange-ftp-mts-host-regexp) | |
5123 ange-ftp-host-cache nil))) | |
5124 | |
5125 ;;; Tree dired support: | |
5126 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5127 ;;;; 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
|
5128 ;;;; 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
|
5129 ;;;; 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
|
5130 ;;;; following more flexible. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5131 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5132 ;;(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
|
5133 ;; "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
|
5134 ;;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
|
5135 ;; ;; This is the MTS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5136 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5137 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5138 ;; (if (re-search-forward |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5139 ;; ange-ftp-date-regexp eol t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5140 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5141 ;; (skip-chars-forward " ") ; Eat blanks after date |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5142 ;; (skip-chars-forward "0-9:" eol) ; Eat time or year |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5143 ;; (skip-chars-forward " " eol) ; one space before filename |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5144 ;; ;; 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
|
5145 ;; ;; ACCT: to the beginning of the filename. Skip over this. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5146 ;; (and (looking-at "[A-Z0-9_.]+:") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5147 ;; (goto-char (match-end 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5148 ;; (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5149 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5150 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5151 ;; nil))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5152 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5153 ;;(or (assq 'mts ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5154 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5155 ;; (cons '(mts . ange-ftp-dired-mts-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5156 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5157 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5158 ;;(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
|
5159 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5160 ;; ;; 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
|
5161 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5162 ;; ;; This is the MTS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5163 ;; (let (opoint hidden case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5164 ;; (setq opoint (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5165 ;; eol (save-excursion (end-of-line) (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5166 ;; hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5167 ;; (save-excursion (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5168 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5169 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5170 ;; (skip-chars-forward "-A-Z0-9._!" eol)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5171 ;; (or no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5172 ;; (not (eq opoint (point))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5173 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5174 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5175 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5176 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5177 ;; "No file on this line"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5178 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5179 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5180 ;; (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5181 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5182 ;;(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
|
5183 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5184 ;; (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
|
5185 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 5186 |
5187 ;;;; ------------------------------------------------------------ | |
5188 ;;;; CMS support | |
5189 ;;;; ------------------------------------------------------------ | |
5190 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5191 ;; 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
|
5192 ;; things with cd's. We actually send too many cd's, but it's dangerous |
1106 | 5193 ;; to try to remember the current minidisk, because if the connection |
5194 ;; is closed and needs to be reopened, we will find ourselves back in | |
5195 ;; the default minidisk. This is fairly likely since CMS ftp servers | |
5196 ;; usually close the connection after 5 minutes of inactivity. | |
5197 | |
5198 ;; Have I got the filename character set right? | |
5199 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5200 (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
|
5201 (save-match-data |
1106 | 5202 (if reverse |
5203 ;; Since we only convert output from a pwd in this direction, | |
5204 ;; we'll assume that it's a minidisk, and make it into a | |
5205 ;; directory file name. Note that the expand-dir-hashtable | |
5206 ;; stores directories without the trailing /. Is this | |
5207 ;; consistent? | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5208 (concat "/" name) |
1106 | 5209 (if (string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5210 name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5211 (let ((minidisk (substring name 1 (match-end 1)))) |
1106 | 5212 (if (match-beginning 2) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5213 (let ((file (substring name (match-beginning 2) |
1106 | 5214 (match-end 2))) |
5215 (cmd (concat "cd " minidisk)) | |
5216 | |
5217 ;; Note that host and user are bound in the call | |
5218 ;; to ange-ftp-send-cmd | |
5219 (proc (ange-ftp-get-process ange-ftp-this-host | |
5220 ange-ftp-this-user))) | |
5221 | |
5222 ;; Must use ange-ftp-raw-send-cmd here to avoid | |
5223 ;; an infinite loop. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5224 (if (car (ange-ftp-raw-send-cmd proc cmd ange-ftp-this-msg)) |
1106 | 5225 file |
5226 ;; failed... try ONCE more. | |
5227 (setq proc (ange-ftp-get-process ange-ftp-this-host | |
5228 ange-ftp-this-user)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5229 (let ((result (ange-ftp-raw-send-cmd proc cmd |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5230 ange-ftp-this-msg))) |
1106 | 5231 (if (car result) |
5232 file | |
5233 ;; failed. give up. | |
5234 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user | |
5235 (format "cd to minidisk %s failed: %s" | |
5236 minidisk (cdr result))))))) | |
5237 ;; return the minidisk | |
5238 minidisk)) | |
5239 (error "Invalid CMS filename"))))) | |
5240 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5241 (or (assq 'cms ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5242 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5243 (cons '(cms . ange-ftp-fix-name-for-cms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5244 ange-ftp-fix-name-func-alist))) |
1106 | 5245 |
5246 (or (memq 'cms ange-ftp-dumb-host-types) | |
5247 (setq ange-ftp-dumb-host-types | |
5248 (cons 'cms ange-ftp-dumb-host-types))) | |
5249 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5250 ;; 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
|
5251 (defun ange-ftp-fix-dir-name-for-cms (dir-name) |
1106 | 5252 (cond |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5253 ((string-equal "/" dir-name) |
1106 | 5254 (error "Cannot get listing for fictitious \"/\" directory.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5255 ((string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5256 (let* ((minidisk (substring dir-name (match-beginning 1) (match-end 1))) |
1106 | 5257 ;; 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
|
5258 (proc (ange-ftp-get-process ange-ftp-this-host ange-ftp-this-user)) |
1106 | 5259 (cmd (concat "cd " minidisk)) |
5260 (file (if (match-beginning 2) | |
5261 ;; it's a single file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5262 (substring dir-name (match-beginning 2) |
1106 | 5263 (match-end 2)) |
5264 ;; use the wild-card | |
5265 "*"))) | |
5266 (if (car (ange-ftp-raw-send-cmd proc cmd)) | |
5267 file | |
5268 ;; try again... | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5269 (setq proc (ange-ftp-get-process ange-ftp-this-host |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5270 ange-ftp-this-user)) |
1106 | 5271 (let ((result (ange-ftp-raw-send-cmd proc cmd))) |
5272 (if (car result) | |
5273 file | |
5274 ;; give up | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5275 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user |
1106 | 5276 (format "cd to minidisk %s failed: " |
5277 minidisk (cdr result)))))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5278 (t (error "Invalid CMS file name")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5279 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5280 (or (assq 'cms ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5281 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5282 (cons '(cms . ange-ftp-fix-dir-name-for-cms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5283 ange-ftp-fix-dir-name-func-alist))) |
1106 | 5284 |
5285 (defvar ange-ftp-cms-host-regexp nil | |
5286 "Regular expression to match hosts running the CMS operating system.") | |
5287 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5288 ;; Return non-nil if HOST is running CMS. |
1106 | 5289 (defun ange-ftp-cms-host (host) |
5290 (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
|
5291 (save-match-data |
1106 | 5292 (string-match ange-ftp-cms-host-regexp host)))) |
5293 | |
5294 (defun ange-ftp-add-cms-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5295 "Mark HOST as the name of a CMS host." |
1106 | 5296 (interactive |
5297 (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
|
5298 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5299 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 5300 (if (not (ange-ftp-cms-host host)) |
5301 (setq ange-ftp-cms-host-regexp | |
5302 (concat "^" (regexp-quote host) "$" | |
5303 (and ange-ftp-cms-host-regexp "\\|") | |
5304 ange-ftp-cms-host-regexp) | |
5305 ange-ftp-host-cache nil))) | |
5306 | |
5307 (defun ange-ftp-parse-cms-listing () | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5308 ;; Parse the current buffer which is assumed to be a CMS directory listing. |
1106 | 5309 ;; If we succeed in getting a listing, then we will assume that the minidisk |
5310 ;; exists. file is bound by the call to ange-ftp-ls. This doesn't work | |
5311 ;; because ange-ftp doesn't know that the root hashtable has only part of | |
5312 ;; the info. It will assume that if a minidisk isn't in it, then it doesn't | |
5313 ;; exist. It would be nice if completion worked for minidisks, as we | |
5314 ;; discover them. | |
5315 ; (let* ((dir-file (directory-file-name file)) | |
5316 ; (root (file-name-directory dir-file)) | |
5317 ; (minidisk (ange-ftp-get-file-part dir-file)) | |
5318 ; (root-tbl (ange-ftp-get-hash-entry root ange-ftp-files-hashtable))) | |
5319 ; (if root-tbl | |
5320 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5321 ; (setq root-tbl (ange-ftp-make-hashtable)) | |
5322 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5323 ; (ange-ftp-put-hash-entry "." t root-tbl) | |
5324 ; (ange-ftp-set-files root root-tbl))) | |
5325 ;; Now do the usual parsing | |
5326 (let ((tbl (ange-ftp-make-hashtable))) | |
5327 (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
5328 (save-match-data |
1106 | 5329 (while |
5330 (re-search-forward | |
5331 "^\\([-A-Z0-9$_]+\\) +\\([-A-Z0-9$_]+\\) +[VF] +[0-9]+ " nil t) | |
5332 (ange-ftp-put-hash-entry | |
5333 (concat (buffer-substring (match-beginning 1) | |
5334 (match-end 1)) | |
5335 "." | |
5336 (buffer-substring (match-beginning 2) | |
5337 (match-end 2))) | |
5338 nil tbl) | |
5339 (forward-line 1)) | |
5340 (ange-ftp-put-hash-entry "." t tbl)) | |
5341 tbl)) | |
5342 | |
5343 (or (assq 'cms ange-ftp-parse-list-func-alist) | |
5344 (setq ange-ftp-parse-list-func-alist | |
5345 (cons '(cms . ange-ftp-parse-cms-listing) | |
5346 ange-ftp-parse-list-func-alist))) | |
5347 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5348 ;;;;; Tree dired support: |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5349 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5350 ;;(defconst ange-ftp-dired-cms-re-exe |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5351 ;; "^. [-A-Z0-9$_]+ +EXEC " |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5352 ;; "Regular expression to use to search for CMS executables.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5353 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5354 ;;(or (assq 'cms ange-ftp-dired-re-exe-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5355 ;; (setq ange-ftp-dired-re-exe-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5356 ;; (cons (cons 'cms ange-ftp-dired-cms-re-exe) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5357 ;; ange-ftp-dired-re-exe-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5358 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5359 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5360 ;;(defun ange-ftp-dired-cms-insert-headerline (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5361 ;; ;; 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
|
5362 ;; ;; aesthetics. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5363 ;; (insert "\n") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5364 ;; (forward-char -1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5365 ;; (ange-ftp-real-dired-insert-headerline dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5366 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5367 ;;(or (assq 'cms ange-ftp-dired-insert-headerline-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5368 ;; (setq ange-ftp-dired-insert-headerline-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5369 ;; (cons '(cms . ange-ftp-dired-cms-insert-headerline) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5370 ;; ange-ftp-dired-insert-headerline-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5371 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5372 ;;(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
|
5373 ;; "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
|
5374 ;; ;; This is the CMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5375 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5376 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5377 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5378 ;; (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
|
5379 ;; (goto-char (1+ (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5380 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5381 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5382 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5383 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5384 ;;(or (assq 'cms ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5385 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5386 ;; (cons '(cms . ange-ftp-dired-cms-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5387 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5388 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5389 ;;(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
|
5390 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5391 ;; ;; 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
|
5392 ;; ;; case-fold-search must be nil, at least for VMS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5393 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5394 ;; ;; This is the CMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5395 ;; (let ((opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5396 ;; case-fold-search hidden) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5397 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5398 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5399 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5400 ;; (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5401 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5402 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5403 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5404 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5405 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5406 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5407 ;; (skip-chars-forward "-A-Z0-9$_" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5408 ;; (skip-chars-forward " " eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5409 ;; (skip-chars-forward "-A-Z0-9$_" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5410 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5411 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5412 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5413 ;; (error "No file on this line")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5414 ;; (point))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5415 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5416 ;;(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
|
5417 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5418 ;; (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
|
5419 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 5420 |
5421 (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
|
5422 (if (string-match "-Z$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5423 (list nil (substring name 0 -2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5424 (list t (concat name "-Z")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5425 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5426 (or (assq 'cms ange-ftp-make-compressed-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5427 (setq ange-ftp-make-compressed-filename-alist |
1106 | 5428 (cons '(cms . ange-ftp-cms-make-compressed-filename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5429 ange-ftp-make-compressed-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5430 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5431 ;;(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
|
5432 ;; (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
|
5433 ;; (and name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5434 ;; (if (string-match "^\\([^ ]+\\) +\\([^ ]+\\)$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5435 ;; (concat (substring name 0 (match-end 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5436 ;; "." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5437 ;; (substring name (match-beginning 2) (match-end 2))) |
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 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5440 ;;(or (assq 'cms ange-ftp-dired-get-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5441 ;; (setq ange-ftp-dired-get-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5442 ;; (cons '(cms . ange-ftp-dired-cms-get-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5443 ;; ange-ftp-dired-get-filename-alist))) |
1106 | 5444 |
5445 ;;;; ------------------------------------------------------------ | |
5446 ;;;; Finally provide package. | |
5447 ;;;; ------------------------------------------------------------ | |
5448 | |
5449 (provide 'ange-ftp) | |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
5450 |
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
5451 ;;; ange-ftp.el ends here |