Mercurial > emacs
annotate lisp/ange-ftp.el @ 24960:00d2eba70774
(mouse-major-mode-menu): Default to menu-bar-edit-menu
for modes which don't define menus.
author | Dave Love <fx@gnu.org> |
---|---|
date | Mon, 19 Jul 1999 21:49:13 +0000 |
parents | 15cba2bd779a |
children | b245d837503b |
rev | line source |
---|---|
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
1 ;;; ange-ftp.el --- transparent FTP support for GNU Emacs |
1106 | 2 |
21278 | 3 ;; Copyright (C) 1989,90,91,92,93,94,95,96,98 Free Software Foundation, Inc. |
14169 | 4 |
2258 | 5 ;; Author: Andy Norman (ange@hplb.hpl.hp.com) |
14734 | 6 ;; Maintainer: FSF |
2258 | 7 ;; Keywords: comm |
14169 | 8 |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
1106 | 25 |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
26 ;;; Commentary: |
14169 | 27 |
28 ;; This package attempts to make accessing files and directories using FTP | |
29 ;; from within GNU Emacs as simple and transparent as possible. A subset of | |
30 ;; the common file-handling routines are extended to interact with FTP. | |
31 | |
32 ;; Usage: | |
33 ;; | |
34 ;; Some of the common GNU Emacs file-handling operations have been made | |
35 ;; FTP-smart. If one of these routines is given a filename that matches | |
36 ;; '/user@host:name' then it will spawn an FTP process connecting to machine | |
37 ;; 'host' as account 'user' and perform its operation on the file 'name'. | |
38 ;; | |
39 ;; For example: if find-file is given a filename of: | |
40 ;; | |
41 ;; /ange@anorman:/tmp/notes | |
42 ;; | |
43 ;; then ange-ftp spawns an FTP process, connect to the host 'anorman' as | |
44 ;; user 'ange', get the file '/tmp/notes' and pop up a buffer containing the | |
45 ;; contents of that file as if it were on the local filesystem. If ange-ftp | |
46 ;; needs a password to connect then it reads one in the echo area. | |
47 | |
48 ;; Extended filename syntax: | |
49 ;; | |
50 ;; The default extended filename syntax is '/user@host:name', where the | |
51 ;; 'user@' part may be omitted. This syntax can be customised to a certain | |
52 ;; extent by changing ange-ftp-name-format. There are limitations. | |
53 ;; | |
54 ;; If the user part is omitted then ange-ftp generates a default user | |
55 ;; instead whose value depends on the variable ange-ftp-default-user. | |
56 | |
57 ;; Passwords: | |
58 ;; | |
59 ;; A password is required for each host/user pair. Ange-ftp reads passwords | |
60 ;; as needed. You can also specify a password with ange-ftp-set-passwd, or | |
61 ;; in a *valid* ~/.netrc file. | |
62 | |
63 ;; Passwords for user "anonymous": | |
64 ;; | |
65 ;; Passwords for the user "anonymous" (or "ftp") are handled | |
66 ;; specially. The variable `ange-ftp-generate-anonymous-password' | |
67 ;; controls what happens: if the value of this variable is a string, | |
68 ;; then this is used as the password; if non-nil (the default), then | |
69 ;; the value of `user-mail-address' is used; if nil then the user | |
70 ;; is prompted for a password as normal. | |
71 | |
72 ;; "Dumb" UNIX hosts: | |
73 ;; | |
74 ;; The FTP servers on some UNIX machines have problems if the 'ls' command is | |
75 ;; used. | |
76 ;; | |
77 ;; The routine ange-ftp-add-dumb-unix-host can be called to tell ange-ftp to | |
78 ;; limit itself to the DIR command and not 'ls' for a given UNIX host. Note | |
79 ;; that this change will take effect for the current GNU Emacs session only. | |
80 ;; See below for a discussion of non-UNIX hosts. If a large number of | |
81 ;; machines with similar hostnames have this problem then it is easier to set | |
82 ;; the value of ange-ftp-dumb-unix-host-regexp in your .emacs file. ange-ftp | |
83 ;; is unable to automatically recognize dumb unix hosts. | |
84 | |
85 ;; File name completion: | |
86 ;; | |
87 ;; Full file-name completion is supported on UNIX, VMS, CMS, and MTS hosts. | |
88 ;; To do filename completion, ange-ftp needs a listing from the remote host. | |
89 ;; Therefore, for very slow connections, it might not save any time. | |
90 | |
91 ;; FTP processes: | |
92 ;; | |
93 ;; When ange-ftp starts up an FTP process, it leaves it running for speed | |
94 ;; purposes. Some FTP servers will close the connection after a period of | |
95 ;; time, but ange-ftp should be able to quietly reconnect the next time that | |
96 ;; the process is needed. | |
97 ;; | |
98 ;; Killing the "*ftp user@host*" buffer also kills the ftp process. | |
99 ;; This should not cause ange-ftp any grief. | |
100 | |
101 ;; Binary file transfers: | |
102 ;; | |
103 ;; By default ange-ftp transfers files in ASCII mode. If a file being | |
104 ;; transferred matches the value of ange-ftp-binary-file-name-regexp then | |
105 ;; binary mode is used for that transfer. | |
106 | |
107 ;; Account passwords: | |
108 ;; | |
109 ;; Some FTP servers require an additional password which is sent by the | |
110 ;; ACCOUNT command. ange-ftp partially supports this by allowing the user to | |
111 ;; specify an account password by either calling ange-ftp-set-account, or by | |
112 ;; specifying an account token in the .netrc file. If the account password | |
113 ;; is set by either of these methods then ange-ftp will issue an ACCOUNT | |
114 ;; command upon starting the FTP process. | |
115 | |
116 ;; Preloading: | |
117 ;; | |
118 ;; ange-ftp can be preloaded, but must be put in the site-init.el file and | |
119 ;; not the site-load.el file in order for the documentation strings for the | |
120 ;; functions being overloaded to be available. | |
121 | |
122 ;; Status reports: | |
123 ;; | |
124 ;; Most ange-ftp commands that talk to the FTP process output a status | |
125 ;; message on what they are doing. In addition, ange-ftp can take advantage | |
126 ;; of the FTP client's HASH command to display the status of transferring | |
127 ;; files and listing directories. See the documentation for the variables | |
128 ;; ange-ftp-{ascii,binary}-hash-mark-size, ange-ftp-send-hash and | |
129 ;; ange-ftp-process-verbose for more details. | |
130 | |
131 ;; Gateways: | |
132 ;; | |
133 ;; Sometimes it is necessary for the FTP process to be run on a different | |
134 ;; machine than the machine running GNU Emacs. This can happen when the | |
135 ;; local machine has restrictions on what hosts it can access. | |
136 ;; | |
137 ;; ange-ftp has support for running the ftp process on a different (gateway) | |
138 ;; machine. The way it works is as follows: | |
139 ;; | |
140 ;; 1) Set the variable 'ange-ftp-gateway-host' to the name of a machine | |
141 ;; that doesn't have the access restrictions. | |
142 ;; | |
143 ;; 2) Set the variable 'ange-ftp-local-host-regexp' to a regular expression | |
144 ;; that matches hosts that can be contacted from running a local ftp | |
145 ;; process, but fails to match hosts that can't be accessed locally. For | |
146 ;; example: | |
147 ;; | |
148 ;; "\\.hp\\.com$\\|^[^.]*$" | |
149 ;; | |
150 ;; will match all hosts that are in the .hp.com domain, or don't have an | |
151 ;; explicit domain in their name, but will fail to match hosts with | |
152 ;; explicit domains or that are specified by their ip address. | |
153 ;; | |
154 ;; 3) Using NFS and symlinks, make sure that there is a shared directory with | |
155 ;; the *same* name between the local machine and the gateway machine. | |
156 ;; This directory is necessary for temporary files created by ange-ftp. | |
157 ;; | |
158 ;; 4) Set the variable 'ange-ftp-gateway-tmp-name-template' to the name of | |
159 ;; this directory plus an identifying filename prefix. For example: | |
160 ;; | |
161 ;; "/nfs/hplose/ange/ange-ftp" | |
162 ;; | |
163 ;; where /nfs/hplose/ange is a directory that is shared between the | |
164 ;; gateway machine and the local machine. | |
165 ;; | |
166 ;; The simplest way of getting a ftp process running on the gateway machine | |
167 ;; is if you can spawn a remote shell using either 'rsh' or 'remsh'. If you | |
168 ;; can't do this for some reason such as security then points 7 onwards will | |
169 ;; discuss an alternative approach. | |
170 ;; | |
171 ;; 5) Set the variable ange-ftp-gateway-program to the name of the remote | |
172 ;; shell process such as 'remsh' or 'rsh' if the default isn't correct. | |
173 ;; | |
174 ;; 6) Set the variable ange-ftp-gateway-program-interactive to nil if it | |
175 ;; isn't already. This tells ange-ftp that you are using a remote shell | |
176 ;; rather than logging in using telnet or rlogin. | |
177 ;; | |
178 ;; That should be all you need to allow ange-ftp to spawn a ftp process on | |
179 ;; the gateway machine. If you have to use telnet or rlogin to get to the | |
180 ;; gateway machine then follow the instructions below. | |
181 ;; | |
182 ;; 7) Set the variable ange-ftp-gateway-program to the name of the program | |
183 ;; that lets you log onto the gateway machine. This may be something like | |
184 ;; telnet or rlogin. | |
185 ;; | |
186 ;; 8) Set the variable ange-ftp-gateway-prompt-pattern to a regular | |
187 ;; expression that matches the prompt you get when you login to the | |
188 ;; gateway machine. Be very specific here; this regexp must not match | |
189 ;; *anything* in your login banner except this prompt. | |
190 ;; shell-prompt-pattern is far too general as it appears to match some | |
191 ;; login banners from Sun machines. For example: | |
192 ;; | |
193 ;; "^$*$ *" | |
194 ;; | |
195 ;; 9) Set the variable ange-ftp-gateway-program-interactive to 't' to let | |
196 ;; ange-ftp know that it has to "hand-hold" the login to the gateway | |
197 ;; machine. | |
198 ;; | |
199 ;; 10) Set the variable ange-ftp-gateway-setup-term-command to a UNIX command | |
200 ;; that will put the pty connected to the gateway machine into a | |
201 ;; no-echoing mode, and will strip off carriage-returns from output from | |
202 ;; the gateway machine. For example: | |
203 ;; | |
204 ;; "stty -onlcr -echo" | |
205 ;; | |
206 ;; will work on HP-UX machines, whereas: | |
207 ;; | |
208 ;; "stty -echo nl" | |
209 ;; | |
210 ;; appears to work for some Sun machines. | |
211 ;; | |
212 ;; That's all there is to it. | |
213 | |
214 ;; Smart gateways: | |
215 ;; | |
216 ;; If you have a "smart" ftp program that allows you to issue commands like | |
217 ;; "USER foo@bar" which do nice proxy things, then look at the variables | |
218 ;; ange-ftp-smart-gateway and ange-ftp-smart-gateway-port. | |
219 ;; | |
220 ;; Otherwise, if there is an alternate ftp program that implements proxy in | |
221 ;; a transparent way (i.e. w/o specifying the proxy host), that will | |
222 ;; connect you directly to the desired destination host: | |
223 ;; Set ange-ftp-gateway-ftp-program-name to that program's name. | |
224 ;; Set ange-ftp-local-host-regexp to a value as stated earlier on. | |
225 ;; Leave ange-ftp-gateway-host set to nil. | |
226 ;; Set ange-ftp-smart-gateway to t. | |
227 | |
228 ;; Tips for using ange-ftp: | |
229 ;; | |
230 ;; 1. For dired to work on a host which marks symlinks with a trailing @ in | |
231 ;; an ls -alF listing, you need to (setq dired-ls-F-marks-symlinks t). | |
232 ;; Most UNIX systems do not do this, but ULTRIX does. If you think that | |
233 ;; there is a chance you might connect to an ULTRIX machine (such as | |
234 ;; prep.ai.mit.edu), then set this variable accordingly. This will have | |
235 ;; the side effect that dired will have problems with symlinks whose names | |
236 ;; end in an @. If you get yourself into this situation then editing | |
237 ;; dired's ls-switches to remove "F", will temporarily fix things. | |
238 ;; | |
239 ;; 2. If you know that you are connecting to a certain non-UNIX machine | |
240 ;; frequently, and ange-ftp seems to be unable to guess its host-type, | |
241 ;; then setting the appropriate host-type regexp | |
242 ;; (ange-ftp-vms-host-regexp, ange-ftp-mts-host-regexp, or | |
243 ;; ange-ftp-cms-host-regexp) accordingly should help. Also, please report | |
244 ;; ange-ftp's inability to recognize the host-type as a bug. | |
245 ;; | |
246 ;; 3. For slow connections, you might get "listing unreadable" error | |
247 ;; messages, or get an empty buffer for a file that you know has something | |
248 ;; in it. The solution is to increase the value of ange-ftp-retry-time. | |
249 ;; Its default value is 5 which is plenty for reasonable connections. | |
250 ;; However, for some transatlantic connections I set this to 20. | |
251 ;; | |
252 ;; 4. Beware of compressing files on non-UNIX hosts. Ange-ftp will do it by | |
253 ;; copying the file to the local machine, compressing it there, and then | |
254 ;; sending it back. Binary file transfers between machines of different | |
255 ;; architectures can be a risky business. Test things out first on some | |
256 ;; test files. See "Bugs" below. Also, note that ange-ftp copies files by | |
257 ;; moving them through the local machine. Again, be careful when doing | |
258 ;; this with binary files on non-Unix machines. | |
259 ;; | |
260 ;; 5. Beware that dired over ftp will use your setting of dired-no-confirm | |
261 ;; (list of dired commands for which confirmation is not asked). You | |
262 ;; might want to reconsider your setting of this variable, because you | |
263 ;; might want confirmation for more commands on remote direds than on | |
264 ;; local direds. For example, I strongly recommend that you not include | |
265 ;; compress and uncompress in this list. If there is enough demand it | |
266 ;; might be a good idea to have an alist ange-ftp-dired-no-confirm of | |
267 ;; pairs ( TYPE . LIST ), where TYPE is an operating system type and LIST | |
268 ;; is a list of commands for which confirmation would be suppressed. Then | |
269 ;; remote dired listings would take their (buffer-local) value of | |
270 ;; dired-no-confirm from this alist. Who votes for this? | |
271 | |
272 ;; --------------------------------------------------------------------- | |
273 ;; Non-UNIX support: | |
274 ;; --------------------------------------------------------------------- | |
275 | |
276 ;; VMS support: | |
277 ;; | |
278 ;; Ange-ftp has full support for VMS hosts. It | |
279 ;; should be able to automatically recognize any VMS machine. However, if it | |
280 ;; fails to do this, you can use the command ange-ftp-add-vms-host. As well, | |
281 ;; you can set the variable ange-ftp-vms-host-regexp in your .emacs file. We | |
282 ;; would be grateful if you would report any failures to automatically | |
283 ;; recognize a VMS host as a bug. | |
284 ;; | |
285 ;; Filename Syntax: | |
286 ;; | |
287 ;; For ease of *implementation*, the user enters the VMS filename syntax in a | |
288 ;; UNIX-y way. For example: | |
289 ;; PUB$:[ANONYMOUS.SDSCPUB.NEXT]README.TXT;1 | |
290 ;; would be entered as: | |
291 ;; /PUB$$:/ANONYMOUS/SDSCPUB/NEXT/README.TXT;1 | |
292 ;; i.e. to log in as anonymous on ymir.claremont.edu and grab the file: | |
293 ;; [.CSV.POLICY]RULES.MEM | |
294 ;; you would type: | |
295 ;; C-x C-f /anonymous@ymir.claremont.edu:CSV/POLICY/RULES.MEM | |
296 ;; | |
297 ;; A legal VMS filename is of the form: FILE.TYPE;## | |
298 ;; where FILE can be up to 39 characters | |
299 ;; TYPE can be up to 39 characters | |
300 ;; ## is a version number (an integer between 1 and 32,767) | |
301 ;; Valid characters in FILE and TYPE are A-Z 0-9 _ - $ | |
302 ;; $ cannot begin a filename, and - cannot be used as the first or last | |
303 ;; character. | |
304 ;; | |
305 ;; Tips: | |
306 ;; 1. Although VMS is not case sensitive, EMACS running under UNIX is. | |
307 ;; Therefore, to access a VMS file, you must enter the filename with upper | |
308 ;; case letters. | |
309 ;; 2. To access the latest version of file under VMS, you use the filename | |
310 ;; without the ";" and version number. You should always edit the latest | |
311 ;; version of a file. If you want to edit an earlier version, copy it to a | |
312 ;; new file first. This has nothing to do with ange-ftp, but is simply | |
313 ;; good VMS operating practice. Therefore, to edit FILE.TXT;3 (say 3 is | |
314 ;; latest version), do C-x C-f /ymir.claremont.edu:FILE.TXT. If you | |
315 ;; inadvertently do C-x C-f /ymir.claremont.edu:FILE.TXT;3, you will find | |
316 ;; that VMS will not allow you to save the file because it will refuse to | |
317 ;; overwrite FILE.TXT;3, but instead will want to create FILE.TXT;4, and | |
318 ;; attach the buffer to this file. To get out of this situation, M-x | |
319 ;; write-file /ymir.claremont.edu:FILE.TXT will attach the buffer to | |
320 ;; latest version of the file. For this reason, in dired "f" | |
321 ;; (dired-find-file), always loads the file sans version, whereas "v", | |
322 ;; (dired-view-file), always loads the explicit version number. The | |
323 ;; reasoning being that it reasonable to view old versions of a file, but | |
324 ;; not to edit them. | |
325 ;; 3. EMACS has a feature in which it does environment variable substitution | |
326 ;; in filenames. Therefore, to enter a $ in a filename, you must quote it | |
327 ;; by typing $$. | |
328 | |
329 ;; MTS support: | |
330 ;; | |
331 ;; Ange-ftp has full support for hosts running | |
332 ;; the Michigan terminal system. It should be able to automatically | |
333 ;; recognize any MTS machine. However, if it fails to do this, you can use | |
334 ;; the command ange-ftp-add-mts-host. As well, you can set the variable | |
335 ;; ange-ftp-mts-host-regexp in your .emacs file. We would be grateful if you | |
336 ;; would report any failures to automatically recognize a MTS host as a bug. | |
337 ;; | |
338 ;; Filename syntax: | |
339 ;; | |
340 ;; MTS filenames are entered in a UNIX-y way. For example, if your account | |
341 ;; was YYYY, the file FILE in the account XXXX: on mtsg.ubc.ca would be | |
342 ;; entered as | |
343 ;; /YYYY@mtsg.ubc.ca:/XXXX:/FILE | |
344 ;; In other words, MTS accounts are treated as UNIX directories. Of course, | |
345 ;; to access a file in another account, you must have access permission for | |
346 ;; it. If FILE were in your own account, then you could enter it in a | |
347 ;; relative name fashion as | |
348 ;; /YYYY@mtsg.ubc.ca:FILE | |
349 ;; MTS filenames can be up to 12 characters. Like UNIX, the structure of the | |
350 ;; filename does not contain a TYPE (i.e. it can have as many "."'s as you | |
351 ;; like.) MTS filenames are always in upper case, and hence be sure to enter | |
352 ;; them as such! MTS is not case sensitive, but an EMACS running under UNIX | |
353 ;; is. | |
354 | |
355 ;; CMS support: | |
356 ;; | |
357 ;; Ange-ftp has full support for hosts running | |
358 ;; CMS. It should be able to automatically recognize any CMS machine. | |
359 ;; However, if it fails to do this, you can use the command | |
360 ;; ange-ftp-add-cms-host. As well, you can set the variable | |
361 ;; ange-ftp-cms-host-regexp in your .emacs file. We would be grateful if you | |
362 ;; would report any failures to automatically recognize a CMS host as a bug. | |
363 ;; | |
364 ;; Filename syntax: | |
365 ;; | |
366 ;; CMS filenames are entered in a UNIX-y way. In otherwords, minidisks are | |
367 ;; treated as UNIX directories. For example to access the file READ.ME in | |
368 ;; minidisk *.311 on cuvmb.cc.columbia.edu, you would enter | |
369 ;; /anonymous@cuvmb.cc.columbia.edu:/*.311/READ.ME | |
370 ;; If *.301 is the default minidisk for this account, you could access | |
371 ;; FOO.BAR on this minidisk as | |
372 ;; /anonymous@cuvmb.cc.columbia.edu:FOO.BAR | |
373 ;; CMS filenames are of the form FILE.TYPE, where both FILE and TYPE can be | |
374 ;; up to 8 characters. Again, beware that CMS filenames are always upper | |
375 ;; case, and hence must be entered as such. | |
376 ;; | |
377 ;; Tips: | |
378 ;; 1. CMS machines, with the exception of anonymous accounts, nearly always | |
379 ;; need an account password. To have ange-ftp send an account password, | |
380 ;; you can either include it in your .netrc file, or use | |
381 ;; ange-ftp-set-account. | |
382 ;; 2. Ange-ftp cannot send "write passwords" for a minidisk. Hopefully, we | |
383 ;; can fix this. | |
384 ;; | |
385 ;; ------------------------------------------------------------------ | |
386 ;; Bugs: | |
387 ;; ------------------------------------------------------------------ | |
388 ;; | |
389 ;; 1. Umask problems: | |
390 ;; Be warned that files created by using ange-ftp will take account of the | |
391 ;; umask of the ftp daemon process rather than the umask of the creating | |
392 ;; user. This is particularly important when logging in as the root user. | |
393 ;; The way that I tighten up the ftp daemon's umask under HP-UX is to make | |
394 ;; sure that the umask is changed to 027 before I spawn /etc/inetd. I | |
395 ;; suspect that there is something similar on other systems. | |
396 ;; | |
397 ;; 2. Some combinations of FTP clients and servers break and get out of sync | |
398 ;; when asked to list a non-existent directory. Some of the ai.mit.edu | |
399 ;; machines cause this problem for some FTP clients. Using | |
400 ;; ange-ftp-kill-ftp-process can restart the ftp process, which | |
401 ;; should get things back in sync. | |
402 ;; | |
403 ;; 3. Ange-ftp does not check to make sure that when creating a new file, | |
404 ;; you provide a valid filename for the remote operating system. | |
405 ;; If you do not, then the remote FTP server will most likely | |
406 ;; translate your filename in some way. This may cause ange-ftp to | |
407 ;; get confused about what exactly is the name of the file. The | |
408 ;; most common causes of this are using lower case filenames on systems | |
409 ;; which support only upper case, and using filenames which are too | |
410 ;; long. | |
411 ;; | |
412 ;; 4. Null (blank) passwords confuse both ange-ftp and some FTP daemons. | |
413 ;; | |
414 ;; 5. Ange-ftp likes to use pty's to talk to its FTP processes. If GNU Emacs | |
415 ;; for some reason creates a FTP process that only talks via pipes then | |
416 ;; ange-ftp won't be getting the information it requires at the time that | |
417 ;; it wants it since pipes flush at different times to pty's. One | |
418 ;; disgusting way around this problem is to talk to the FTP process via | |
419 ;; rlogin which does the 'right' things with pty's. | |
420 ;; | |
421 ;; 6. For CMS support, we send too many cd's. Since cd's are cheap, I haven't | |
422 ;; worried about this too much. Eventually, we should have some caching | |
423 ;; of the current minidisk. | |
424 ;; | |
425 ;; 7. Some CMS machines do not assign a default minidisk when you ftp them as | |
426 ;; anonymous. It is then necessary to guess a valid minidisk name, and cd | |
427 ;; to it. This is (understandably) beyond ange-ftp. | |
428 ;; | |
429 ;; 8. Remote to remote copying of files on non-Unix machines can be risky. | |
430 ;; Depending on the variable ange-ftp-binary-file-name-regexp, ange-ftp | |
431 ;; will use binary mode for the copy. Between systems of different | |
432 ;; architecture, this still may not be enough to guarantee the integrity | |
433 ;; of binary files. Binary file transfers from VMS machines are | |
434 ;; particularly problematical. Should ange-ftp-binary-file-name-regexp be | |
435 ;; an alist of OS type, regexp pairs? | |
436 ;; | |
437 ;; 9. The code to do compression of files over ftp is not as careful as it | |
438 ;; should be. It deletes the old remote version of the file, before | |
439 ;; actually checking if the local to remote transfer of the compressed | |
440 ;; file succeeds. Of course to delete the original version of the file | |
441 ;; after transferring the compressed version back is also dangerous, | |
442 ;; because some OS's have severe restrictions on the length of filenames, | |
443 ;; and when the compressed version is copied back the "-Z" or ".Z" may be | |
444 ;; truncated. Then, ange-ftp would delete the only remaining version of | |
445 ;; the file. Maybe ange-ftp should make backups when it compresses files | |
446 ;; (of course, the backup "~" could also be truncated off, sigh...). | |
447 ;; Suggestions? | |
448 ;; | |
449 ;; 10. If a dir listing is attempted for an empty directory on (at least | |
450 ;; some) VMS hosts, an ftp error is given. This is really an ftp bug, and | |
451 ;; I don't know how to get ange-ftp work to around it. | |
452 ;; | |
453 ;; 11. Bombs on filenames that start with a space. Deals well with filenames | |
454 ;; containing spaces, but beware that the remote ftpd may not like them | |
455 ;; much. | |
456 ;; | |
457 ;; 12. The dired support for non-Unix-like systems does not currently work. | |
458 ;; It needs to be reimplemented by modifying the parse-...-listing | |
459 ;; functions to convert the directory listing to ls -l format. | |
460 ;; | |
461 ;; 13. The famous @ bug. As mentioned above in TIPS, ULTRIX marks symlinks | |
462 ;; with a trailing @ in a ls -alF listing. In order to account for this | |
463 ;; ange-ftp looks to chop trailing @'s off of symlink names when it is | |
464 ;; parsing a listing with the F switch. This will cause ange-ftp to | |
465 ;; incorrectly get the name of a symlink on a non-ULTRIX host if its name | |
466 ;; ends in an @. ange-ftp will correct itself if you take F out of the | |
467 ;; dired ls switches (C-u s will allow you to edit the switches). The | |
468 ;; dired buffer will be automatically reverted, which will allow ange-ftp | |
469 ;; to fix its files hashtable. A cookie to anyone who can think of a | |
470 ;; fast, sure-fire way to recognize ULTRIX over ftp. | |
471 | |
472 ;; If you find any bugs or problems with this package, PLEASE either e-mail | |
473 ;; the above author, or send a message to the ange-ftp-lovers mailing list | |
474 ;; below. Ideas and constructive comments are especially welcome. | |
475 | |
476 ;; ange-ftp-lovers: | |
477 ;; | |
478 ;; ange-ftp has its own mailing list modestly called ange-ftp-lovers. All | |
479 ;; users of ange-ftp are welcome to subscribe (see below) and to discuss | |
480 ;; aspects of ange-ftp. New versions of ange-ftp are posted periodically to | |
481 ;; the mailing list. | |
482 ;; | |
483 ;; To [un]subscribe to ange-ftp-lovers, or to report mailer problems with the | |
484 ;; list, please mail one of the following addresses: | |
485 ;; | |
486 ;; ange-ftp-lovers-request@anorman.hpl.hp.com | |
487 ;; or | |
488 ;; ange-ftp-lovers-request%anorman.hpl.hp.com@hplb.hpl.hp.com | |
489 ;; | |
490 ;; Please don't forget the -request part. | |
491 ;; | |
492 ;; For mail to be posted directly to ange-ftp-lovers, send to one of the | |
493 ;; following addresses: | |
494 ;; | |
495 ;; ange-ftp-lovers@anorman.hpl.hp.com | |
496 ;; or | |
497 ;; ange-ftp-lovers%anorman.hpl.hp.com@hplb.hpl.hp.com | |
498 ;; | |
499 ;; Alternatively, there is a mailing list that only gets announcements of new | |
500 ;; ange-ftp releases. This is called ange-ftp-lovers-announce, and can be | |
501 ;; subscribed to by e-mailing to the -request address as above. Please make | |
502 ;; it clear in the request which mailing list you wish to join. | |
503 | |
504 ;; The latest version of ange-ftp can usually be obtained via anonymous ftp | |
505 ;; from: | |
506 ;; alpha.gnu.ai.mit.edu:ange-ftp/ange-ftp.tar.Z | |
507 ;; or: | |
508 ;; ugle.unit.no:/pub/gnu/emacs-lisp/ange-ftp.tar.Z | |
509 ;; or: | |
510 ;; archive.cis.ohio-state.edu:pub/gnu/emacs/elisp-archive/packages/ange-ftp.tar.Z | |
511 | |
512 ;; The archives for ange-ftp-lovers can be found via anonymous ftp under: | |
513 ;; | |
514 ;; ftp.reed.edu:pub/mailing-lists/ange-ftp/ | |
1106 | 515 |
14169 | 516 ;; ----------------------------------------------------------- |
517 ;; Technical information on this package: | |
518 ;; ----------------------------------------------------------- | |
519 | |
520 ;; ange-ftp works by putting a handler on file-name-handler-alist | |
521 ;; which is called by many primitives, and a few non-primitives, | |
522 ;; whenever they see a file name of the appropriate sort. | |
523 | |
524 ;; Checklist for adding non-UNIX support for TYPE | |
525 ;; | |
526 ;; The following functions may need TYPE versions: | |
527 ;; (not all functions will be needed for every OS) | |
528 ;; | |
529 ;; ange-ftp-fix-name-for-TYPE | |
530 ;; ange-ftp-fix-dir-name-for-TYPE | |
531 ;; ange-ftp-TYPE-host | |
532 ;; ange-ftp-TYPE-add-host | |
533 ;; ange-ftp-parse-TYPE-listing | |
534 ;; ange-ftp-TYPE-delete-file-entry | |
535 ;; ange-ftp-TYPE-add-file-entry | |
536 ;; ange-ftp-TYPE-file-name-as-directory | |
537 ;; ange-ftp-TYPE-make-compressed-filename | |
538 ;; ange-ftp-TYPE-file-name-sans-versions | |
539 ;; | |
540 ;; Variables: | |
541 ;; | |
542 ;; ange-ftp-TYPE-host-regexp | |
543 ;; May need to add TYPE to ange-ftp-dumb-host-types | |
544 ;; | |
545 ;; Check the following functions for OS dependent coding: | |
546 ;; | |
547 ;; ange-ftp-host-type | |
548 ;; ange-ftp-guess-host-type | |
549 ;; ange-ftp-allow-child-lookup | |
550 | |
551 ;; Host type conventions: | |
552 ;; | |
553 ;; The function ange-ftp-host-type and the variable ange-ftp-dired-host-type | |
554 ;; (mostly) follow the following conventions for remote host types. At | |
555 ;; least, I think that future code should try to follow these conventions, | |
556 ;; and the current code should eventually be made compliant. | |
557 ;; | |
558 ;; nil = local host type, whatever that is (probably unix). | |
559 ;; Think nil as in "not a remote host". This value is used by | |
560 ;; ange-ftp-dired-host-type for local buffers. | |
561 ;; | |
16427 | 562 ;; t = a remote host of unknown type. Think t as in true, it's remote. |
23231
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
563 ;; Currently, `unix' is used as the default remote host type. |
14169 | 564 ;; Maybe we should use t. |
565 ;; | |
23231
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
566 ;; TYPE = a remote host of TYPE type. |
14169 | 567 ;; |
23231
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
568 ;; TYPE:LIST = a remote host of TYPE type, using a specialized ftp listing |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
569 ;; program called list. This is currently only used for Unix |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
570 ;; dl (descriptive listings), when ange-ftp-dired-host-type |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
571 ;; is set to `unix:dl'. |
14169 | 572 |
573 ;; Bug report codes: | |
574 ;; | |
575 ;; Because of their naive faith in this code, there are certain situations | |
576 ;; which the writers of this program believe could never happen. However, | |
577 ;; being realists they have put calls to `error' in the program at these | |
578 ;; points. These errors provide a code, which is an integer, greater than 1. | |
579 ;; To aid debugging. the error codes, and the functions in which they reside | |
580 ;; are listed below. | |
581 ;; | |
582 ;; 1: See ange-ftp-ls | |
583 ;; | |
1106 | 584 |
14169 | 585 ;; ----------------------------------------------------------- |
586 ;; Hall of fame: | |
587 ;; ----------------------------------------------------------- | |
588 ;; | |
589 ;; Thanks to Roland McGrath for improving the filename syntax handling, | |
590 ;; for suggesting many enhancements and for numerous cleanups to the code. | |
591 ;; | |
592 ;; Thanks to Jamie Zawinski for bugfixes and for ideas such as gateways. | |
593 ;; | |
594 ;; Thanks to Ken Laprade for improved .netrc parsing, password reading, and | |
595 ;; dired / shell auto-loading. | |
596 ;; | |
597 ;; Thanks to Sebastian Kremer for dired support and for many ideas and | |
598 ;; bugfixes. | |
599 ;; | |
600 ;; Thanks to Joe Wells for bugfixes, the original non-UNIX system support, | |
601 ;; VOS support, and hostname completion. | |
602 ;; | |
603 ;; Thanks to Nakagawa Takayuki for many good ideas, filename-completion, help | |
604 ;; with file-name expansion, efficiency worries, stylistic concerns and many | |
605 ;; bugfixes. | |
606 ;; | |
607 ;; Thanks to Sandy Rutherford who re-wrote most of ange-ftp to support VMS, | |
608 ;; MTS, CMS and UNIX-dls. Sandy also added dired-support for non-UNIX OS and | |
609 ;; auto-recognition of the host type. | |
610 ;; | |
611 ;; Thanks to Dave Smith who wrote the info file for ange-ftp. | |
612 ;; | |
613 ;; Finally, thanks to Keith Waclena, Mark D. Baushke, Terence Kelleher, Ping | |
614 ;; Zhou, Edward Vielmetti, Jack Repenning, Mike Balenger, Todd Kaufmann, | |
615 ;; Kjetil Svarstad, Tom Wurgler, Linus Tolke, Niko Makila, Carl Edman, Bill | |
616 ;; Trost, Dave Brennan, Dan Jacobson, Andy Scott, Steve Anderson, Sanjay | |
617 ;; Mathur, the folks on the ange-ftp-lovers mailing list and many others | |
618 ;; whose names I've forgotten who have helped to debug and fix problems with | |
619 ;; ange-ftp.el. | |
1106 | 620 |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
621 ;;; Code: |
14169 | 622 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
623 (require 'comint) |
21278 | 624 ;; Silence compiler: |
625 (eval-when-compile | |
626 (defvar comint-last-output-start nil) | |
627 (defvar comint-last-input-start nil) | |
628 (defvar comint-last-input-end nil)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
629 |
1106 | 630 ;;;; ------------------------------------------------------------ |
631 ;;;; User customization variables. | |
632 ;;;; ------------------------------------------------------------ | |
633 | |
18956 | 634 (defgroup ange-ftp nil |
635 "Accessing remote files and directories using FTP | |
636 made as simple and transparent as possible." | |
637 :group 'files | |
638 :prefix "ange-ftp-") | |
639 | |
640 (defcustom ange-ftp-name-format | |
14138
9856174aa877
(ange-ftp-name-format): Don't match "/:" or "/.:".
Karl Heuer <kwzh@gnu.org>
parents:
14040
diff
changeset
|
641 '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*[^@/:.]\\):\\(.*\\)" . (3 2 4)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
642 "*Format of a fully expanded remote file name. |
18956 | 643 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
644 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
|
645 where REGEXP is a regular expression matching |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
646 the full remote name, and HOST, USER, and NAME are the numbers of |
18956 | 647 parenthesized expressions in REGEXP for the components (in that order)." |
648 :group 'ange-ftp | |
20015
d5c245242a88
(ange-ftp-name-format): Fix customize type.
Karl Heuer <kwzh@gnu.org>
parents:
18956
diff
changeset
|
649 :type '(list regexp |
d5c245242a88
(ange-ftp-name-format): Fix customize type.
Karl Heuer <kwzh@gnu.org>
parents:
18956
diff
changeset
|
650 (integer :tag "Host group") |
d5c245242a88
(ange-ftp-name-format): Fix customize type.
Karl Heuer <kwzh@gnu.org>
parents:
18956
diff
changeset
|
651 (integer :tag "User group") |
d5c245242a88
(ange-ftp-name-format): Fix customize type.
Karl Heuer <kwzh@gnu.org>
parents:
18956
diff
changeset
|
652 (integer :tag "Name group"))) |
1106 | 653 |
654 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of | |
655 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs. | |
656 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out. | |
657 | |
658 (defvar ange-ftp-multi-msgs | |
3620
219ff1cb76f4
(ange-ftp-multi-msgs): Add 331-.
Richard M. Stallman <rms@gnu.org>
parents:
3611
diff
changeset
|
659 "^220-\\|^230-\\|^226\\|^25.-\\|^221-\\|^200-\\|^331-\\|^4[25]1-\\|^530-" |
7042 | 660 "*Regular expression matching the start of a multiline ftp reply.") |
1106 | 661 |
662 (defvar ange-ftp-good-msgs | |
663 "^220 \\|^230 \\|^226 \\|^25. \\|^221 \\|^200 \\|^[Hh]ash mark" | |
7042 | 664 "*Regular expression matching ftp \"success\" messages.") |
1106 | 665 |
666 ;; CMS and the odd VMS machine say 200 Port rather than 200 PORT. | |
667 ;; Also CMS machines use a multiline 550- reply to say that you | |
668 ;; don't have write permission. ange-ftp gets into multi-line skip | |
669 ;; mode and hangs. Have it ignore 550- instead. It will then barf | |
670 ;; when it gets the 550 line, as it should. | |
671 | |
18956 | 672 (defcustom ange-ftp-skip-msgs |
1106 | 673 (concat "^200 \\(PORT\\|Port\\) \\|^331 \\|^150 \\|^350 \\|^[0-9]+ bytes \\|" |
674 "^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
|
675 "^Data connection \\|" |
16353
07d7ce35e1be
(ange-ftp-skip-msgs): Recognize `passive'.
Richard M. Stallman <rms@gnu.org>
parents:
15958
diff
changeset
|
676 "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye\\|" |
07d7ce35e1be
(ange-ftp-skip-msgs): Recognize `passive'.
Richard M. Stallman <rms@gnu.org>
parents:
15958
diff
changeset
|
677 "^227 .*[Pp]assive") |
18956 | 678 "*Regular expression matching ftp messages that can be ignored." |
679 :group 'ange-ftp | |
680 :type 'regexp) | |
681 | |
682 (defcustom ange-ftp-fatal-msgs | |
1106 | 683 (concat "^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|" |
684 "^No control connection\\|unknown host\\|^lost connection") | |
7042 | 685 "*Regular expression matching ftp messages that indicate serious errors. |
18956 | 686 |
687 These mean that the FTP process should (or already has) been killed." | |
688 :group 'ange-ftp | |
689 :type 'regexp) | |
690 | |
691 (defcustom ange-ftp-gateway-fatal-msgs | |
1106 | 692 "No route to host\\|Connection closed\\|No such host\\|Login incorrect" |
18956 | 693 "*Regular expression matching login failure messages from rlogin/telnet." |
694 :group 'ange-ftp | |
695 :type 'regexp) | |
696 | |
697 (defcustom ange-ftp-xfer-size-msgs | |
1106 | 698 "^150 .* connection for .* (\\([0-9]+\\) bytes)" |
18956 | 699 "*Regular expression used to determine the number of bytes in a FTP transfer." |
700 :group 'ange-ftp | |
701 :type 'regexp) | |
702 | |
22085
e8163732f7b4
(ange-ftp-tmp-name-template): Use system-tmp-directory.
Richard M. Stallman <rms@gnu.org>
parents:
22076
diff
changeset
|
703 (defcustom ange-ftp-tmp-name-template |
22095
dfe597287db1
(ange-ftp-tmp-name-template): Use temporary-file-directory.
Richard M. Stallman <rms@gnu.org>
parents:
22085
diff
changeset
|
704 (expand-file-name "ange-ftp" temporary-file-directory) |
18956 | 705 "*Template used to create temporary files." |
706 :group 'ange-ftp | |
707 :type 'directory) | |
708 | |
709 (defcustom ange-ftp-gateway-tmp-name-template "/tmp/ange-ftp" | |
1106 | 710 "*Template used to create temporary files when ftp-ing through a gateway. |
18956 | 711 |
1106 | 712 Files starting with this prefix need to be accessible from BOTH the local |
713 machine and the gateway machine, and need to have the SAME name on both | |
714 machines, that is, /tmp is probably NOT what you want, since that is rarely | |
18956 | 715 cross-mounted." |
716 :group 'ange-ftp | |
717 :type 'directory) | |
718 | |
719 (defcustom ange-ftp-netrc-filename "~/.netrc" | |
720 "*File in .netrc format to search for passwords." | |
721 :group 'ange-ftp | |
722 :type 'file) | |
723 | |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
724 (defcustom ange-ftp-disable-netrc-security-check (eq system-type 'windows-nt) |
18956 | 725 "*If non-nil avoid checking permissions on the .netrc file." |
726 :group 'ange-ftp | |
727 :type 'boolean) | |
728 | |
729 (defcustom ange-ftp-default-user nil | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
730 "*User name to use when none is specified in a file name. |
18956 | 731 |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
732 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
|
733 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
|
734 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
|
735 |
14572
c64371c0dbb9
(ange-ftp-default-user): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14466
diff
changeset
|
736 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
|
737 and password information for that host are cached and re-used by |
18956 | 738 ange-ftp. Use \\[ange-ftp-set-user] to change the cached values, |
14572
c64371c0dbb9
(ange-ftp-default-user): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14466
diff
changeset
|
739 since setting `ange-ftp-default-user' directly does not affect |
18956 | 740 the cached information." |
741 :group 'ange-ftp | |
742 :type '(choice (const :tag "Default" nil) | |
22566 | 743 string |
744 (other :tag "Prompt" t))) | |
18956 | 745 |
746 (defcustom ange-ftp-netrc-default-user nil | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
747 "Alternate default user name to use when none is specified. |
18956 | 748 |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
749 This variable is set from the `default' command in your `.netrc' file, |
18956 | 750 if there is one." |
751 :group 'ange-ftp | |
752 :type '(choice (const :tag "Default" nil) | |
753 string)) | |
754 | |
755 (defcustom ange-ftp-default-password nil | |
756 "*Password to use when the user name equals `ange-ftp-default-user'." | |
757 :group 'ange-ftp | |
758 :type '(choice (const :tag "Default" nil) | |
759 string)) | |
760 | |
761 (defcustom ange-ftp-default-account nil | |
762 "*Account to use when the user name equals `ange-ftp-default-user'." | |
763 :group 'ange-ftp | |
764 :type '(choice (const :tag "Default" nil) | |
765 string)) | |
766 | |
767 (defcustom ange-ftp-netrc-default-password nil | |
768 "*Password to use when the user name equals `ange-ftp-netrc-default-user'." | |
769 :group 'ange-ftp | |
770 :type '(choice (const :tag "Default" nil) | |
771 string)) | |
772 | |
773 (defcustom ange-ftp-netrc-default-account nil | |
774 "*Account to use when the user name equals `ange-ftp-netrc-default-user'." | |
775 :group 'ange-ftp | |
776 :type '(choice (const :tag "Default" nil) | |
777 string)) | |
778 | |
779 (defcustom ange-ftp-generate-anonymous-password t | |
9627
449fc86a0f4f
(ange-ftp-get-passwd): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
9070
diff
changeset
|
780 "*If t, use value of `user-mail-address' as password for anonymous ftp. |
18956 | 781 |
9627
449fc86a0f4f
(ange-ftp-get-passwd): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
9070
diff
changeset
|
782 If a string, then use that string as the password. |
18956 | 783 If nil, prompt the user for a password." |
784 :group 'ange-ftp | |
22566 | 785 :type '(choice (const :tag "Prompt" nil) |
786 string | |
787 (other :tag "User address" t))) | |
18956 | 788 |
789 (defcustom ange-ftp-dumb-unix-host-regexp nil | |
790 "*If non-nil, regexp matching hosts on which `dir' command lists directory." | |
791 :group 'ange-ftp | |
792 :type '(choice (const :tag "Default" nil) | |
793 string)) | |
794 | |
795 (defcustom ange-ftp-binary-file-name-regexp | |
2560
50d7841854b3
(ange-ftp-binary-file-name-regexp): Match .z and .z-part-?? files.
Roland McGrath <roland@gnu.org>
parents:
2258
diff
changeset
|
796 (concat "\\.[zZ]$\\|\\.lzh$\\|\\.arc$\\|\\.zip$\\|\\.zoo$\\|\\.tar$\\|" |
1106 | 797 "\\.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
|
798 "\\.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
|
799 "\\.taz$\\|\\.tgz$") |
18956 | 800 "*If a file matches this regexp then it is transferred in binary mode." |
801 :group 'ange-ftp | |
802 :type 'regexp) | |
803 | |
804 (defcustom ange-ftp-gateway-host nil | |
805 "*Name of host to use as gateway machine when local FTP isn't possible." | |
806 :group 'ange-ftp | |
807 :type '(choice (const :tag "Default" nil) | |
808 string)) | |
809 | |
810 (defcustom ange-ftp-local-host-regexp ".*" | |
7042 | 811 "*Regexp selecting hosts which can be reached directly with ftp. |
18956 | 812 |
7042 | 813 For other hosts the FTP process is started on \`ange-ftp-gateway-host\' |
18956 | 814 instead, and/or reached via \`ange-ftp-gateway-ftp-program-name\'." |
815 :group 'ange-ftp | |
816 :type 'regexp) | |
817 | |
818 (defcustom ange-ftp-gateway-program-interactive nil | |
7042 | 819 "*If non-nil then the gateway program should give a shell prompt. |
18956 | 820 |
821 Both telnet and rlogin do something like this." | |
822 :group 'ange-ftp | |
823 :type 'boolean) | |
824 | |
825 (defcustom ange-ftp-gateway-program remote-shell-program | |
7042 | 826 "*Name of program to spawn a shell on the gateway machine. |
18956 | 827 |
10451
bc83756f19ad
(ange-ftp-gateway-program, ange-ftp-shell-command): Use new global
Karl Heuer <kwzh@gnu.org>
parents:
10407
diff
changeset
|
828 Valid candidates are rsh (remsh on some systems), telnet and rlogin. See |
18956 | 829 also the gateway variable above." |
830 :group 'ange-ftp | |
831 :type '(choice (const "rsh") | |
832 (const "telnet") | |
833 (const "rlogin") | |
834 string)) | |
835 | |
836 (defcustom ange-ftp-gateway-prompt-pattern "^[^#$%>;\n]*[#$%>;] *" | |
7042 | 837 "*Regexp matching prompt after complete login sequence on gateway machine. |
18956 | 838 |
7042 | 839 A match for this means the shell is now awaiting input. Make this regexp as |
1106 | 840 strict as possible; it shouldn't match *anything* at all except the user's |
841 initial prompt. The above string will fail under most SUN-3's since it | |
18956 | 842 matches the login banner." |
843 :group 'ange-ftp | |
844 :type 'regexp) | |
1106 | 845 |
846 (defvar ange-ftp-gateway-setup-term-command | |
847 (if (eq system-type 'hpux) | |
848 "stty -onlcr -echo\n" | |
849 "stty -echo nl\n") | |
7042 | 850 "*Set up terminal after logging in to the gateway machine. |
851 This command should stop the terminal from echoing each command, and | |
852 arrange to strip out trailing ^M characters.") | |
1106 | 853 |
18956 | 854 (defcustom ange-ftp-smart-gateway nil |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
855 "*Non-nil means the ftp gateway and/or the gateway ftp program is smart. |
18956 | 856 |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
857 Don't bother telnetting, etc., already connected to desired host transparently, |
18956 | 858 or just issue a user@host command in case \`ange-ftp-gateway-host\' is non-nil." |
859 :group 'ange-ftp | |
860 :type 'boolean) | |
861 | |
862 (defcustom ange-ftp-smart-gateway-port "21" | |
863 "*Port on gateway machine to use when smart gateway is in operation." | |
864 :group 'ange-ftp | |
20015
d5c245242a88
(ange-ftp-name-format): Fix customize type.
Karl Heuer <kwzh@gnu.org>
parents:
18956
diff
changeset
|
865 :type 'string) |
18956 | 866 |
867 (defcustom ange-ftp-send-hash t | |
868 "*If non-nil, send the HASH command to the FTP client." | |
869 :group 'ange-ftp | |
870 :type 'boolean) | |
871 | |
872 (defcustom ange-ftp-binary-hash-mark-size nil | |
1106 | 873 "*Default size, in bytes, between hash-marks when transferring a binary file. |
18956 | 874 If nil, this variable will be locally overridden if the FTP client outputs a |
875 suitable response to the HASH command. If non-nil, this value takes | |
876 precedence over the local value." | |
877 :group 'ange-ftp | |
878 :type '(choice (const :tag "Overridden" nil) | |
879 integer)) | |
880 | |
881 (defcustom ange-ftp-ascii-hash-mark-size 1024 | |
1106 | 882 "*Default size, in bytes, between hash-marks when transferring an ASCII file. |
883 This variable is buffer-local and will be locally overridden if the FTP client | |
18956 | 884 outputs a suitable response to the HASH command." |
885 :group 'ange-ftp | |
886 :type 'integer) | |
887 | |
888 (defcustom ange-ftp-process-verbose t | |
889 "*If non-nil then be chatty about interaction with the FTP process." | |
890 :group 'ange-ftp | |
891 :type 'boolean) | |
892 | |
893 (defcustom ange-ftp-ftp-program-name "ftp" | |
894 "*Name of FTP program to run." | |
895 :group 'ange-ftp | |
896 :type 'string) | |
897 | |
898 (defcustom ange-ftp-gateway-ftp-program-name "ftp" | |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
899 "*Name of FTP program to run when accessing non-local hosts. |
18956 | 900 |
901 Some AT&T folks claim to use something called `pftp' here." | |
902 :group 'ange-ftp | |
903 :type 'string) | |
904 | |
905 (defcustom ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v") | |
906 "*A list of arguments passed to the FTP program when started." | |
907 :group 'ange-ftp | |
908 :type '(repeat string)) | |
909 | |
910 (defcustom ange-ftp-nslookup-program nil | |
911 "*If non-nil, this is a string naming the nslookup program." | |
912 :group 'ange-ftp | |
913 :type '(choice (const :tag "None" nil) | |
914 string)) | |
915 | |
916 (defcustom ange-ftp-make-backup-files () | |
917 "*Non-nil means make backup files for \"magic\" remote files." | |
918 :group 'ange-ftp | |
919 :type 'boolean) | |
920 | |
921 (defcustom ange-ftp-retry-time 5 | |
7042 | 922 "*Number of seconds to wait before retry if file or listing doesn't arrive. |
18956 | 923 This might need to be increased for very slow connections." |
924 :group 'ange-ftp | |
925 :type 'integer) | |
926 | |
927 (defcustom ange-ftp-auto-save 0 | |
928 "If 1, allow ange-ftp files to be auto-saved. | |
929 If 0, inhibit auto-saving of ange-ftp files. | |
930 Don't use any other value." | |
931 :group 'ange-ftp | |
932 :type '(choice (const :tag "Suppress" 0) | |
933 (const :tag "Allow" 1))) | |
1106 | 934 |
935 ;;;; ------------------------------------------------------------ | |
936 ;;;; Hash table support. | |
937 ;;;; ------------------------------------------------------------ | |
938 | |
939 (require 'backquote) | |
940 | |
941 (defun ange-ftp-make-hashtable (&optional size) | |
942 "Make an obarray suitable for use as a hashtable. | |
943 SIZE, if supplied, should be a prime number." | |
944 (make-vector (or size 31) 0)) | |
945 | |
946 (defun ange-ftp-map-hashtable (fun tbl) | |
947 "Call FUNCTION on each key and value in HASHTABLE." | |
948 (mapatoms | |
949 (function | |
950 (lambda (sym) | |
951 (funcall fun (get sym 'key) (get sym 'val)))) | |
952 tbl)) | |
953 | |
954 (defmacro ange-ftp-make-hash-key (key) | |
955 "Convert KEY into a suitable key for a hashtable." | |
956 (` (if (stringp (, key)) | |
957 (, key) | |
958 (prin1-to-string (, key))))) | |
959 | |
960 (defun ange-ftp-get-hash-entry (key tbl) | |
961 "Return the value associated with KEY in HASHTABLE." | |
962 (let ((sym (intern-soft (ange-ftp-make-hash-key key) tbl))) | |
963 (and sym (get sym 'val)))) | |
964 | |
965 (defun ange-ftp-put-hash-entry (key val tbl) | |
966 "Record an association between KEY and VALUE in HASHTABLE." | |
967 (let ((sym (intern (ange-ftp-make-hash-key key) tbl))) | |
968 (put sym 'val val) | |
969 (put sym 'key key))) | |
970 | |
971 (defun ange-ftp-del-hash-entry (key tbl) | |
972 "Copy all symbols except KEY in HASHTABLE and return modified hashtable." | |
973 (let* ((len (length tbl)) | |
974 (new-tbl (ange-ftp-make-hashtable len)) | |
975 (i (1- len))) | |
976 (ange-ftp-map-hashtable | |
977 (function | |
978 (lambda (k v) | |
979 (or (equal k key) | |
980 (ange-ftp-put-hash-entry k v new-tbl)))) | |
981 tbl) | |
982 (while (>= i 0) | |
983 (aset tbl i (aref new-tbl i)) | |
984 (setq i (1- i))) | |
985 tbl)) | |
986 | |
987 (defun ange-ftp-hash-entry-exists-p (key tbl) | |
988 "Return whether there is an association for KEY in TABLE." | |
989 (intern-soft (ange-ftp-make-hash-key key) tbl)) | |
990 | |
991 (defun ange-ftp-hash-table-keys (tbl) | |
1233 | 992 "Return a sorted list of all the active keys in TABLE, as strings." |
1106 | 993 (sort (all-completions "" tbl) |
994 (function string-lessp))) | |
995 | |
996 ;;;; ------------------------------------------------------------ | |
997 ;;;; Internal variables. | |
998 ;;;; ------------------------------------------------------------ | |
999 | |
1000 (defvar ange-ftp-data-buffer-name " *ftp data*" | |
1001 "Buffer name to hold directory listing data received from ftp process.") | |
1002 | |
1003 (defvar ange-ftp-netrc-modtime nil | |
1004 "Last modified time of the netrc file from file-attributes.") | |
1005 | |
1006 (defvar ange-ftp-user-hashtable (ange-ftp-make-hashtable) | |
1007 "Hash table holding associations between HOST, USER pairs.") | |
1008 | |
1009 (defvar ange-ftp-passwd-hashtable (ange-ftp-make-hashtable) | |
20327
5f8d36dfb126
(ange-ftp-generate-passwd-key):
Karl Heuer <kwzh@gnu.org>
parents:
20272
diff
changeset
|
1010 "Mapping between a HOST, USER pair and a PASSWORD for them. |
5f8d36dfb126
(ange-ftp-generate-passwd-key):
Karl Heuer <kwzh@gnu.org>
parents:
20272
diff
changeset
|
1011 All HOST values should be in lower case.") |
1106 | 1012 |
1013 (defvar ange-ftp-account-hashtable (ange-ftp-make-hashtable) | |
1014 "Mapping between a HOST, USER pair and a ACCOUNT password for them.") | |
1015 | |
1016 (defvar ange-ftp-files-hashtable (ange-ftp-make-hashtable 97) | |
1017 "Hash table for storing directories and their respective files.") | |
1018 | |
20656
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
1019 (defvar ange-ftp-inodes-hashtable (ange-ftp-make-hashtable 97) |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
1020 "Hash table for storing file names and their \"inode numbers\".") |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
1021 |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
1022 (defvar ange-ftp-next-inode-number 1 |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
1023 "Next \"inode number\" value. We give each file name a unique number.") |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
1024 |
1106 | 1025 (defvar ange-ftp-ls-cache-lsargs nil |
1026 "Last set of args used by ange-ftp-ls.") | |
1027 | |
1028 (defvar ange-ftp-ls-cache-file nil | |
1029 "Last file passed to ange-ftp-ls.") | |
1030 | |
1031 (defvar ange-ftp-ls-cache-res nil | |
1032 "Last result returned from ange-ftp-ls.") | |
1033 | |
1034 (defconst ange-ftp-expand-dir-hashtable (ange-ftp-make-hashtable)) | |
1035 | |
1036 (defconst ange-ftp-expand-dir-regexp "^5.0 \\([^: ]+\\):") | |
1037 | |
1038 ;; These are local variables in each FTP process buffer. | |
1039 (defvar ange-ftp-hash-mark-unit nil) | |
1040 (defvar ange-ftp-hash-mark-count nil) | |
1041 (defvar ange-ftp-xfer-size nil) | |
1042 (defvar ange-ftp-process-string nil) | |
1043 (defvar ange-ftp-process-result-line nil) | |
1044 (defvar ange-ftp-process-busy nil) | |
1045 (defvar ange-ftp-process-result nil) | |
1046 (defvar ange-ftp-process-multi-skip nil) | |
1047 (defvar ange-ftp-process-msg nil) | |
1048 (defvar ange-ftp-process-continue nil) | |
1049 (defvar ange-ftp-last-percent nil) | |
1050 | |
1051 ;; These variables are bound by one function and examined by another. | |
1052 ;; Leave them void globally for error checking. | |
1053 (defvar ange-ftp-this-file) | |
1054 (defvar ange-ftp-this-dir) | |
1055 (defvar ange-ftp-this-user) | |
1056 (defvar ange-ftp-this-host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1057 (defvar ange-ftp-this-msg) |
1106 | 1058 (defvar ange-ftp-completion-ignored-pattern) |
1059 (defvar ange-ftp-trample-marker) | |
1060 | |
1061 ;; New error symbols. | |
1062 (put 'ftp-error 'error-conditions '(ftp-error file-error error)) | |
1063 ;; (put 'ftp-error 'error-message "FTP error") | |
1064 | |
1065 ;;; ------------------------------------------------------------ | |
1066 ;;; Enhanced message support. | |
1067 ;;; ------------------------------------------------------------ | |
1068 | |
1069 (defun ange-ftp-message (fmt &rest args) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1070 "Display message in echo area, but indicate if truncated. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1071 Args are as in `message': a format string, plus arguments to be formatted." |
1106 | 1072 (let ((msg (apply (function format) fmt args)) |
1073 (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
|
1074 (if noninteractive |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1075 msg |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1076 (if (>= (length msg) max) |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1077 ;; 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
|
1078 (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
|
1079 (message "%s" msg)))) |
1106 | 1080 |
1081 (defun ange-ftp-abbreviate-filename (file &optional new) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1082 "Abbreviate the file name FILE relative to the default-directory. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1083 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
|
1084 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
|
1085 (save-match-data |
1106 | 1086 (if (and default-directory |
1087 (string-match (concat "^" | |
1088 (regexp-quote default-directory) | |
1089 ".") file)) | |
1090 (setq file (substring file (1- (match-end 0))))) | |
1091 (if (and new | |
1092 (string-equal (file-name-nondirectory file) | |
1093 (file-name-nondirectory new))) | |
1094 (setq file (file-name-directory file))) | |
1095 (or file "./"))) | |
1096 | |
1097 ;;;; ------------------------------------------------------------ | |
1098 ;;;; User / Host mapping support. | |
1099 ;;;; ------------------------------------------------------------ | |
1100 | |
1101 (defun ange-ftp-set-user (host user) | |
1102 "For a given HOST, set or change the default USER." | |
1103 (interactive "sHost: \nsUser: ") | |
1104 (ange-ftp-put-hash-entry host user ange-ftp-user-hashtable)) | |
1105 | |
1106 (defun ange-ftp-get-user (host) | |
1107 "Given a HOST, return the default USER." | |
1108 (ange-ftp-parse-netrc) | |
1109 (let ((user (ange-ftp-get-hash-entry host ange-ftp-user-hashtable))) | |
1110 (or user | |
1111 (prog1 | |
1112 (setq user | |
1113 (cond ((stringp ange-ftp-default-user) | |
1114 ;; We have a default name. Use it. | |
1115 ange-ftp-default-user) | |
1116 (ange-ftp-default-user | |
1117 ;; Ask the user. | |
1118 (let ((enable-recursive-minibuffers t)) | |
1119 (read-string (format "User for %s: " host) | |
1120 (user-login-name)))) | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1121 (ange-ftp-netrc-default-user) |
1106 | 1122 ;; Default to the user's login name. |
1123 (t | |
1124 (user-login-name)))) | |
1125 (ange-ftp-set-user host user))))) | |
1126 | |
1127 ;;;; ------------------------------------------------------------ | |
1128 ;;;; Password support. | |
1129 ;;;; ------------------------------------------------------------ | |
1130 | |
1131 (defmacro ange-ftp-generate-passwd-key (host user) | |
20327
5f8d36dfb126
(ange-ftp-generate-passwd-key):
Karl Heuer <kwzh@gnu.org>
parents:
20272
diff
changeset
|
1132 (` (concat (downcase (, host)) "/" (, user)))) |
1106 | 1133 |
1134 (defmacro ange-ftp-lookup-passwd (host user) | |
1135 (` (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key (, host) (, user)) | |
1136 ange-ftp-passwd-hashtable))) | |
1137 | |
1138 (defun ange-ftp-set-passwd (host user passwd) | |
1139 "For a given HOST and USER, set or change the associated PASSWORD." | |
1140 (interactive (list (read-string "Host: ") | |
1141 (read-string "User: ") | |
23464
7fb0a3c74e1d
(ange-ftp-read-passwd): Function deleted.
Dave Love <fx@gnu.org>
parents:
23246
diff
changeset
|
1142 (read-passwd "Password: "))) |
1106 | 1143 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) |
1144 passwd | |
1145 ange-ftp-passwd-hashtable)) | |
1146 | |
1147 (defun ange-ftp-get-host-with-passwd (user) | |
1148 "Given a USER, return a host we know the password for." | |
1149 (ange-ftp-parse-netrc) | |
1150 (catch 'found-one | |
1151 (ange-ftp-map-hashtable | |
1152 (function (lambda (host val) | |
1153 (if (ange-ftp-lookup-passwd host user) | |
1154 (throw 'found-one host)))) | |
1155 ange-ftp-user-hashtable) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1156 (save-match-data |
1106 | 1157 (ange-ftp-map-hashtable |
1158 (function | |
1159 (lambda (key value) | |
1160 (if (string-match "^[^/]*\\(/\\).*$" key) | |
1161 (let ((host (substring key 0 (match-beginning 1)))) | |
1162 (if (and (string-equal user (substring key (match-end 1))) | |
1163 value) | |
1164 (throw 'found-one host)))))) | |
1165 ange-ftp-passwd-hashtable)) | |
1166 nil)) | |
1167 | |
1168 (defun ange-ftp-get-passwd (host user) | |
1169 "Return the password for specified HOST and USER, asking user if necessary." | |
1170 (ange-ftp-parse-netrc) | |
1171 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
1172 ;; look up password in the hash table first; user might have overridden the |
1106 | 1173 ;; defaults. |
1174 (cond ((ange-ftp-lookup-passwd host user)) | |
1175 | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1176 ;; See if default user and password set. |
1106 | 1177 ((and (stringp ange-ftp-default-user) |
1178 ange-ftp-default-password | |
1179 (string-equal user ange-ftp-default-user)) | |
1180 ange-ftp-default-password) | |
1181 | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1182 ;; 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
|
1183 ((and (stringp ange-ftp-netrc-default-user) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1184 ange-ftp-netrc-default-password |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1185 (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
|
1186 ange-ftp-netrc-default-password) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1187 |
1106 | 1188 ;; anonymous ftp password is handled specially since there is an |
1189 ;; unwritten rule about how that is used on the Internet. | |
1190 ((and (or (string-equal user "anonymous") | |
1191 (string-equal user "ftp")) | |
1192 ange-ftp-generate-anonymous-password) | |
1193 (if (stringp ange-ftp-generate-anonymous-password) | |
1194 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
|
1195 user-mail-address)) |
1106 | 1196 |
1197 ;; see if same user has logged in to other hosts; if so then prompt | |
1198 ;; with the password that was used there. | |
1199 (t | |
1200 (let* ((other (ange-ftp-get-host-with-passwd user)) | |
1201 (passwd (if other | |
1202 | |
1203 ;; found another machine with the same user. | |
1204 ;; Try that account. | |
23464
7fb0a3c74e1d
(ange-ftp-read-passwd): Function deleted.
Dave Love <fx@gnu.org>
parents:
23246
diff
changeset
|
1205 (read-passwd |
15798
a745f54990f5
(ange-ftp-read-passwd): Let first input override
Richard M. Stallman <rms@gnu.org>
parents:
15449
diff
changeset
|
1206 (format "passwd for %s@%s (default same as %s@%s): " |
1106 | 1207 user host user other) |
23464
7fb0a3c74e1d
(ange-ftp-read-passwd): Function deleted.
Dave Love <fx@gnu.org>
parents:
23246
diff
changeset
|
1208 nil |
1106 | 1209 (ange-ftp-lookup-passwd other user)) |
1210 | |
1211 ;; I give up. Ask the user for the password. | |
23464
7fb0a3c74e1d
(ange-ftp-read-passwd): Function deleted.
Dave Love <fx@gnu.org>
parents:
23246
diff
changeset
|
1212 (read-passwd |
1106 | 1213 (format "Password for %s@%s: " user host))))) |
1214 (ange-ftp-set-passwd host user passwd) | |
1215 passwd)))) | |
1216 | |
1217 ;;;; ------------------------------------------------------------ | |
1218 ;;;; Account support | |
1219 ;;;; ------------------------------------------------------------ | |
1220 | |
1221 ;; Account passwords must be either specified in the .netrc file, or set | |
1222 ;; manually by calling ange-ftp-set-account. For the moment, ange-ftp doesn't | |
1223 ;; check to see whether the FTP process is actually prompting for an account | |
1224 ;; password. | |
1225 | |
1226 (defun ange-ftp-set-account (host user account) | |
1227 "For a given HOST and USER, set or change the associated ACCOUNT password." | |
1228 (interactive (list (read-string "Host: ") | |
1229 (read-string "User: ") | |
23464
7fb0a3c74e1d
(ange-ftp-read-passwd): Function deleted.
Dave Love <fx@gnu.org>
parents:
23246
diff
changeset
|
1230 (read-passwd "Account password: "))) |
1106 | 1231 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) |
1232 account | |
1233 ange-ftp-account-hashtable)) | |
1234 | |
1235 (defun ange-ftp-get-account (host user) | |
1236 "Given a HOST and USER, return the FTP account." | |
1237 (ange-ftp-parse-netrc) | |
1238 (or (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key host user) | |
1239 ange-ftp-account-hashtable) | |
1240 (and (stringp ange-ftp-default-user) | |
1241 (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
|
1242 ange-ftp-default-account) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1243 (and (stringp ange-ftp-netrc-default-user) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1244 (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
|
1245 ange-ftp-netrc-default-account))) |
1106 | 1246 |
1247 ;;;; ------------------------------------------------------------ | |
1248 ;;;; ~/.netrc support | |
1249 ;;;; ------------------------------------------------------------ | |
1250 | |
1251 (defun ange-ftp-chase-symlinks (file) | |
1233 | 1252 "Return the filename that FILE references, following all symbolic links." |
1106 | 1253 (let (temp) |
1254 (while (setq temp (ange-ftp-real-file-symlink-p file)) | |
1255 (setq file | |
1256 (if (file-name-absolute-p temp) | |
1257 temp | |
1258 (concat (file-name-directory file) temp))))) | |
1259 file) | |
1260 | |
7042 | 1261 ;; Move along current line looking for the value of the TOKEN. |
1262 ;; Valid separators between TOKEN and its value are commas and | |
1263 ;; whitespace. Second arg LIMIT is a limit for the search. | |
1264 | |
1106 | 1265 (defun ange-ftp-parse-netrc-token (token limit) |
1266 (if (search-forward token limit t) | |
1267 (let (beg) | |
1268 (skip-chars-forward ", \t\r\n" limit) | |
1269 (if (eq (following-char) ?\") ;quoted token value | |
1270 (progn (forward-char 1) | |
1271 (setq beg (point)) | |
1272 (skip-chars-forward "^\"" limit) | |
1273 (forward-char 1) | |
1274 (buffer-substring beg (1- (point)))) | |
1275 (setq beg (point)) | |
1276 (skip-chars-forward "^, \t\r\n" limit) | |
1277 (buffer-substring beg (point)))))) | |
1278 | |
7042 | 1279 ;; Extract the values for the tokens `machine', `login', |
1280 ;; `password' and `account' in the current buffer. If successful, | |
1281 ;; record the information found. | |
1282 | |
1106 | 1283 (defun ange-ftp-parse-netrc-group () |
1284 (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
|
1285 (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
|
1286 (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
|
1287 ;; 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
|
1288 (progn |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
1289 (skip-chars-forward "^ \t\r\n") |
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
1290 (skip-chars-forward " \t\r\n") |
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
1291 (skip-chars-forward "^ \t\r\n")) |
8397
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1292 ;; Skip `default'. |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
1293 (skip-chars-forward "^ \t\r\n")) |
8397
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1294 ;; 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
|
1295 ;; 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
|
1296 (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
|
1297 (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
|
1298 (point-max)))) |
1106 | 1299 machine login password account) |
1300 (setq machine (ange-ftp-parse-netrc-token "machine" end) | |
1301 login (ange-ftp-parse-netrc-token "login" end) | |
1302 password (ange-ftp-parse-netrc-token "password" end) | |
1303 account (ange-ftp-parse-netrc-token "account" end)) | |
1304 (if (and machine login) | |
1305 ;; found a `machine` token. | |
1306 (progn | |
1307 (ange-ftp-set-user machine login) | |
1308 (ange-ftp-set-passwd machine login password) | |
1309 (and account | |
1310 (ange-ftp-set-account machine login account))) | |
1311 (goto-char start) | |
1312 (if (search-forward "default" end t) | |
1313 ;; found a `default' token | |
1314 (progn | |
1315 (setq login (ange-ftp-parse-netrc-token "login" end) | |
1316 password (ange-ftp-parse-netrc-token "password" end) | |
1317 account (ange-ftp-parse-netrc-token "account" end)) | |
1318 (and login | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1319 (setq ange-ftp-netrc-default-user login)) |
1106 | 1320 (and password |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1321 (setq ange-ftp-netrc-default-password password)) |
1106 | 1322 (and account |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1323 (setq ange-ftp-netrc-default-account account))))) |
1106 | 1324 (goto-char end))) |
1325 | |
7042 | 1326 ;; Read in ~/.netrc, if one exists. If ~/.netrc file exists and has |
1327 ;; the correct permissions then extract the \`machine\', \`login\', | |
1328 ;; \`password\' and \`account\' information from within. | |
1329 | |
1106 | 1330 (defun ange-ftp-parse-netrc () |
1331 ;; We set this before actually doing it to avoid the possibility | |
1332 ;; of an infinite loop if ange-ftp-netrc-filename is an FTP file. | |
1333 (interactive) | |
11315
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1334 (let (file attr) |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1335 (let ((default-directory "/")) |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1336 (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
|
1337 (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
|
1338 (setq attr (ange-ftp-real-file-attributes file))) |
1106 | 1339 (if (and attr ; file exists. |
1340 (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
|
1341 (save-match-data |
1106 | 1342 (if (or ange-ftp-disable-netrc-security-check |
1343 (and (eq (nth 2 attr) (user-uid)) ; Same uids. | |
1344 (string-match ".r..------" (nth 8 attr)))) | |
1345 (save-excursion | |
1346 ;; we are cheating a bit here. I'm trying to do the equivalent | |
1347 ;; of find-file on the .netrc file, but then nuke it afterwards. | |
1348 ;; with the bit of logic below we should be able to have | |
1349 ;; encrypted .netrc files. | |
1350 (set-buffer (generate-new-buffer "*ftp-.netrc*")) | |
1351 (ange-ftp-real-insert-file-contents file) | |
1352 (setq buffer-file-name file) | |
1353 (setq default-directory (file-name-directory file)) | |
1354 (normal-mode t) | |
1355 (mapcar 'funcall find-file-hooks) | |
1356 (setq buffer-file-name nil) | |
1357 (goto-char (point-min)) | |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
1358 (skip-chars-forward " \t\r\n") |
1106 | 1359 (while (not (eobp)) |
1360 (ange-ftp-parse-netrc-group)) | |
1361 (kill-buffer (current-buffer))) | |
1362 (ange-ftp-message "%s either not owned by you or badly protected." | |
1363 ange-ftp-netrc-filename) | |
1364 (sit-for 1)) | |
1365 (setq ange-ftp-netrc-modtime (nth 5 attr)))))) | |
1366 | |
7042 | 1367 ;; Return a list of prefixes of the form 'user@host:' to be used when |
1368 ;; completion is done in the root directory. | |
1369 | |
1106 | 1370 (defun ange-ftp-generate-root-prefixes () |
1371 (ange-ftp-parse-netrc) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1372 (save-match-data |
1106 | 1373 (let (res) |
1374 (ange-ftp-map-hashtable | |
1375 (function | |
1376 (lambda (key value) | |
1377 (if (string-match "^[^/]*\\(/\\).*$" key) | |
1378 (let ((host (substring key 0 (match-beginning 1))) | |
1379 (user (substring key (match-end 1)))) | |
1380 (setq res (cons (list (concat user "@" host ":")) | |
1381 res)))))) | |
1382 ange-ftp-passwd-hashtable) | |
1383 (ange-ftp-map-hashtable | |
1384 (function (lambda (host user) | |
1385 (setq res (cons (list (concat host ":")) | |
1386 res)))) | |
1387 ange-ftp-user-hashtable) | |
1388 (or res (list nil))))) | |
1389 | |
1390 ;;;; ------------------------------------------------------------ | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1391 ;;;; Remote file name syntax support. |
1106 | 1392 ;;;; ------------------------------------------------------------ |
1393 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1394 (defmacro ange-ftp-ftp-name-component (n ns name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1395 "Extract the Nth ftp file name component from NS." |
1106 | 1396 (` (let ((elt (nth (, n) (, ns)))) |
1397 (if (match-beginning elt) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1398 (substring (, name) (match-beginning elt) (match-end elt)))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1399 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1400 (defvar ange-ftp-ftp-name-arg "") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1401 (defvar ange-ftp-ftp-name-res nil) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1402 |
7042 | 1403 ;; Parse NAME according to `ange-ftp-name-format' (which see). |
1404 ;; 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
|
1405 (defun ange-ftp-ftp-name (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1406 (if (string-equal name ange-ftp-ftp-name-arg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1407 ange-ftp-ftp-name-res |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1408 (setq ange-ftp-ftp-name-arg name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1409 ange-ftp-ftp-name-res |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1410 (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
|
1411 (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
|
1412 (let* ((ns (cdr ange-ftp-name-format)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1413 (host (ange-ftp-ftp-name-component 0 ns name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1414 (user (ange-ftp-ftp-name-component 1 ns name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1415 (name (ange-ftp-ftp-name-component 2 ns name))) |
1106 | 1416 (if (zerop (length user)) |
1417 (setq user (ange-ftp-get-user host))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1418 (list host user name)) |
1106 | 1419 nil))))) |
1420 | |
7042 | 1421 ;; Take a FULLNAME that matches according to ange-ftp-name-format and |
1422 ;; replace the name component with NAME. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1423 (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
|
1424 (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
|
1425 (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
|
1426 (let* ((ns (cdr ange-ftp-name-format)) |
1106 | 1427 (elt (nth 2 ns))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1428 (concat (substring fullname 0 (match-beginning elt)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1429 name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1430 (substring fullname (match-end elt))))))) |
1106 | 1431 |
1432 ;;;; ------------------------------------------------------------ | |
1433 ;;;; Miscellaneous utils. | |
1434 ;;;; ------------------------------------------------------------ | |
1435 | |
1436 ;; (setq ange-ftp-tmp-keymap (make-sparse-keymap)) | |
1437 ;; (define-key ange-ftp-tmp-keymap "\C-m" 'exit-minibuffer) | |
1438 | |
1603
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1439 (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
|
1440 "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
|
1441 (message nil)) |
1106 | 1442 |
7042 | 1443 ;; Return the name of the buffer that collects output from the ftp process |
1444 ;; connected to the given HOST and USER pair. | |
1106 | 1445 (defun ange-ftp-ftp-process-buffer (host user) |
1446 (concat "*ftp " user "@" host "*")) | |
1447 | |
7042 | 1448 ;; Display the last chunk of output from the ftp process for the given HOST |
1449 ;; USER pair, and signal an error including MSG in the text. | |
1106 | 1450 (defun ange-ftp-error (host user msg) |
1451 (let ((cur (selected-window)) | |
1452 (pop-up-windows t)) | |
1453 (pop-to-buffer | |
1454 (get-buffer-create | |
1455 (ange-ftp-ftp-process-buffer host user))) | |
1456 (goto-char (point-max)) | |
1457 (select-window cur)) | |
1458 (signal 'ftp-error (list (format "FTP Error: %s" msg)))) | |
1459 | |
1460 (defun ange-ftp-set-buffer-mode () | |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
1461 "Set correct modes for the current buffer if visiting a remote file." |
1106 | 1462 (if (and (stringp buffer-file-name) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1463 (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
|
1464 (auto-save-mode ange-ftp-auto-save))) |
1106 | 1465 |
15449
8e6b770317a5
(ange-ftp-kill-ftp-process): Really use the BUFFER arg. Make it optional.
Richard M. Stallman <rms@gnu.org>
parents:
14887
diff
changeset
|
1466 (defun ange-ftp-kill-ftp-process (&optional buffer) |
8e6b770317a5
(ange-ftp-kill-ftp-process): Really use the BUFFER arg. Make it optional.
Richard M. Stallman <rms@gnu.org>
parents:
14887
diff
changeset
|
1467 "Kill the FTP process associated with BUFFER (the current buffer, if nil). |
1233 | 1468 If the BUFFER's visited filename or default-directory is an ftp filename |
1106 | 1469 then kill the related ftp process." |
1470 (interactive "bKill FTP process associated with buffer: ") | |
1471 (if (null buffer) | |
15861
4bc8e9119883
(ange-ftp-kill-ftp-process): Handle buffer name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
15798
diff
changeset
|
1472 (setq buffer (current-buffer)) |
4bc8e9119883
(ange-ftp-kill-ftp-process): Handle buffer name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
15798
diff
changeset
|
1473 (setq buffer (get-buffer buffer))) |
15449
8e6b770317a5
(ange-ftp-kill-ftp-process): Really use the BUFFER arg. Make it optional.
Richard M. Stallman <rms@gnu.org>
parents:
14887
diff
changeset
|
1474 (let ((file (or (buffer-file-name buffer) |
8e6b770317a5
(ange-ftp-kill-ftp-process): Really use the BUFFER arg. Make it optional.
Richard M. Stallman <rms@gnu.org>
parents:
14887
diff
changeset
|
1475 (save-excursion (set-buffer buffer) default-directory)))) |
1106 | 1476 (if file |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1477 (let ((parsed (ange-ftp-ftp-name (expand-file-name file)))) |
1106 | 1478 (if parsed |
1479 (let ((host (nth 0 parsed)) | |
1480 (user (nth 1 parsed))) | |
21313
47c514f3eed4
(ange-ftp-kill-ftp-process): Convert buffer name to the buffer.
Richard M. Stallman <rms@gnu.org>
parents:
21278
diff
changeset
|
1481 (kill-buffer (get-buffer (ange-ftp-ftp-process-buffer host user))))))))) |
1106 | 1482 |
1483 (defun ange-ftp-quote-string (string) | |
1484 "Quote any characters in STRING that may confuse the ftp process." | |
1485 (apply (function concat) | |
1486 (mapcar (function | |
16933
c6d12d67e2b5
(ange-ftp-get-process): Call delete-process.
Richard M. Stallman <rms@gnu.org>
parents:
16916
diff
changeset
|
1487 ;; This is said to be wrong; ftp is said to |
c6d12d67e2b5
(ange-ftp-get-process): Call delete-process.
Richard M. Stallman <rms@gnu.org>
parents:
16916
diff
changeset
|
1488 ;; need quoting only for ", and that by doubling it. |
c6d12d67e2b5
(ange-ftp-get-process): Call delete-process.
Richard M. Stallman <rms@gnu.org>
parents:
16916
diff
changeset
|
1489 ;; But experiment says this kind of quoting is correct |
c6d12d67e2b5
(ange-ftp-get-process): Call delete-process.
Richard M. Stallman <rms@gnu.org>
parents:
16916
diff
changeset
|
1490 ;; when talking to ftp on GNU/Linux systems. |
1106 | 1491 (lambda (char) |
1492 (if (or (<= char ? ) | |
1493 (> char ?\~) | |
1494 (= char ?\") | |
1495 (= char ?\\)) | |
1496 (vector ?\\ char) | |
1497 (vector char)))) | |
1498 string))) | |
1499 | |
1500 (defun ange-ftp-barf-if-not-directory (directory) | |
1501 (or (file-directory-p directory) | |
1502 (signal 'file-error | |
1503 (list "Opening directory" | |
1504 (if (file-exists-p directory) | |
1505 "not a directory" | |
1506 "no such file or directory") | |
1507 directory)))) | |
1508 | |
1509 ;;;; ------------------------------------------------------------ | |
1510 ;;;; FTP process filter support. | |
1511 ;;;; ------------------------------------------------------------ | |
1512 | |
1513 (defun ange-ftp-process-handle-line (line proc) | |
7042 | 1514 "Look at the given LINE from the ftp process PROC. |
1515 Try to categorize it into one of four categories: | |
1516 good, skip, fatal, or unknown." | |
1106 | 1517 (cond ((string-match ange-ftp-xfer-size-msgs line) |
1518 (setq ange-ftp-xfer-size | |
1519 (ash (string-to-int (substring line | |
1520 (match-beginning 1) | |
1521 (match-end 1))) | |
1522 -10))) | |
1523 ((string-match ange-ftp-skip-msgs line) | |
1524 t) | |
1525 ((string-match ange-ftp-good-msgs line) | |
1526 (setq ange-ftp-process-busy nil | |
1527 ange-ftp-process-result t | |
1528 ange-ftp-process-result-line line)) | |
9664 | 1529 ;; Check this before checking for errors. |
1530 ;; Otherwise the last line of these three seems to be an error: | |
1531 ;; 230-see a significant impact from the move. For those of you who can't | |
1532 ;; 230-use DNS to resolve hostnames and get an error message like | |
1533 ;; 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
|
1534 ((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
|
1535 (setq ange-ftp-process-multi-skip t)) |
1106 | 1536 ((string-match ange-ftp-fatal-msgs line) |
1537 (delete-process proc) | |
1538 (setq ange-ftp-process-busy nil | |
1539 ange-ftp-process-result-line line)) | |
1540 (ange-ftp-process-multi-skip | |
1541 t) | |
1542 (t | |
1543 (setq ange-ftp-process-busy nil | |
1544 ange-ftp-process-result-line line)))) | |
1545 | |
1546 (defun ange-ftp-set-xfer-size (host user bytes) | |
1547 "Set the size of the next FTP transfer in bytes." | |
1548 (let ((proc (ange-ftp-get-process host user))) | |
1549 (if proc | |
1550 (let ((buf (process-buffer proc))) | |
1551 (if buf | |
1552 (save-excursion | |
1553 (set-buffer buf) | |
1554 (setq ange-ftp-xfer-size (ash bytes -10)))))))) | |
1555 | |
1556 (defun ange-ftp-process-handle-hash (str) | |
1557 "Remove hash marks from STRING and display count so far." | |
1558 (setq str (concat (substring str 0 (match-beginning 0)) | |
1559 (substring str (match-end 0))) | |
1560 ange-ftp-hash-mark-count (+ (- (match-end 0) | |
1561 (match-beginning 0)) | |
1562 ange-ftp-hash-mark-count)) | |
13594
b7cb31d324cf
(ange-ftp-process-handle-hash): If
Richard M. Stallman <rms@gnu.org>
parents:
13311
diff
changeset
|
1563 (and ange-ftp-hash-mark-unit |
b7cb31d324cf
(ange-ftp-process-handle-hash): If
Richard M. Stallman <rms@gnu.org>
parents:
13311
diff
changeset
|
1564 ange-ftp-process-msg |
1106 | 1565 ange-ftp-process-verbose |
1566 (not (eq (selected-window) (minibuffer-window))) | |
1567 (not (boundp 'search-message)) ;screws up isearch otherwise | |
1568 (not cursor-in-echo-area) ;screws up y-or-n-p otherwise | |
1569 (let ((kbytes (ash (* ange-ftp-hash-mark-unit | |
1570 ange-ftp-hash-mark-count) | |
1571 -6))) | |
1572 (if (zerop ange-ftp-xfer-size) | |
1573 (ange-ftp-message "%s...%dk" ange-ftp-process-msg kbytes) | |
1574 (let ((percent (/ (* 100 kbytes) ange-ftp-xfer-size))) | |
1575 ;; cut out the redisplay of identical %-age messages. | |
1576 (if (not (eq percent ange-ftp-last-percent)) | |
1577 (progn | |
1578 (setq ange-ftp-last-percent percent) | |
1579 (ange-ftp-message "%s...%d%%" ange-ftp-process-msg percent))))))) | |
1580 str) | |
1581 | |
7042 | 1582 ;; Call the function specified by CONT. CONT can be either a function |
1583 ;; or a list of a function and some args. The first two parameters | |
1584 ;; passed to the function will be RESULT and LINE. The remaining args | |
1585 ;; will be taken from CONT if a list was passed. | |
1586 | |
1106 | 1587 (defun ange-ftp-call-cont (cont result line) |
1588 (if cont | |
1589 (if (and (listp cont) | |
1590 (not (eq (car cont) 'lambda))) | |
1591 (apply (car cont) result line (cdr cont)) | |
1592 (funcall cont result line)))) | |
1593 | |
7042 | 1594 ;; Build up a complete line of output from the ftp PROCESS and pass it |
1595 ;; on to ange-ftp-process-handle-line to deal with. | |
1596 | |
1106 | 1597 (defun ange-ftp-process-filter (proc str) |
1598 (let ((buffer (process-buffer proc)) | |
1599 (old-buffer (current-buffer))) | |
1600 | |
15872
244a4779d1b5
(ange-ftp-process-filter): Discard nulls.
Richard M. Stallman <rms@gnu.org>
parents:
15861
diff
changeset
|
1601 ;; Eliminate nulls. |
244a4779d1b5
(ange-ftp-process-filter): Discard nulls.
Richard M. Stallman <rms@gnu.org>
parents:
15861
diff
changeset
|
1602 (while (string-match "\000+" str) |
244a4779d1b5
(ange-ftp-process-filter): Discard nulls.
Richard M. Stallman <rms@gnu.org>
parents:
15861
diff
changeset
|
1603 (setq str (replace-match "" nil nil str))) |
244a4779d1b5
(ange-ftp-process-filter): Discard nulls.
Richard M. Stallman <rms@gnu.org>
parents:
15861
diff
changeset
|
1604 |
1106 | 1605 ;; see if the buffer is still around... it could have been deleted. |
1606 (if (buffer-name buffer) | |
1607 (unwind-protect | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1608 (progn |
1106 | 1609 (set-buffer (process-buffer proc)) |
1610 | |
1611 ;; handle hash mark printing | |
13594
b7cb31d324cf
(ange-ftp-process-handle-hash): If
Richard M. Stallman <rms@gnu.org>
parents:
13311
diff
changeset
|
1612 (and ange-ftp-process-busy |
1106 | 1613 (string-match "^#+$" str) |
1614 (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
|
1615 (comint-output-filter proc str) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1616 ;; 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
|
1617 (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
|
1618 (process-mark proc))) |
1106 | 1619 (if ange-ftp-process-busy |
1620 (progn | |
1621 (setq ange-ftp-process-string (concat ange-ftp-process-string | |
1622 str)) | |
1623 | |
1624 ;; if we gave an empty password to the USER command earlier | |
1625 ;; then we should send a null password now. | |
1626 (if (string-match "Password: *$" ange-ftp-process-string) | |
1627 (send-string proc "\n")))) | |
1628 (while (and ange-ftp-process-busy | |
1629 (string-match "\n" ange-ftp-process-string)) | |
1630 (let ((line (substring ange-ftp-process-string | |
1631 0 | |
1632 (match-beginning 0)))) | |
1633 (setq ange-ftp-process-string (substring ange-ftp-process-string | |
1634 (match-end 0))) | |
1635 (while (string-match "^ftp> *" line) | |
1636 (setq line (substring line (match-end 0)))) | |
1637 (ange-ftp-process-handle-line line proc))) | |
1638 | |
1639 ;; has the ftp client finished? if so then do some clean-up | |
1640 ;; actions. | |
1641 (if (not ange-ftp-process-busy) | |
1642 (progn | |
1643 ;; reset the xfer size | |
1644 (setq ange-ftp-xfer-size 0) | |
1645 | |
1646 ;; issue the "done" message since we've finished. | |
1647 (if (and ange-ftp-process-msg | |
1648 ange-ftp-process-verbose | |
1649 ange-ftp-process-result) | |
1650 (progn | |
1651 (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
|
1652 (ange-ftp-repaint-minibuffer) |
1106 | 1653 (setq ange-ftp-process-msg nil))) |
1654 | |
1655 ;; is there a continuation we should be calling? if so, | |
1656 ;; we'd better call it, making sure we only call it once. | |
1657 (if ange-ftp-process-continue | |
1658 (let ((cont ange-ftp-process-continue)) | |
1659 (setq ange-ftp-process-continue nil) | |
1660 (ange-ftp-call-cont cont | |
1661 ange-ftp-process-result | |
1662 ange-ftp-process-result-line)))))) | |
1663 (set-buffer old-buffer))))) | |
1664 | |
1665 (defun ange-ftp-process-sentinel (proc str) | |
1666 "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
|
1667 (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
|
1668 (if (string-match "\\*ftp \\([^@]+\\)@\\([^*]+\\)\\*" name) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1669 (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
|
1670 (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
|
1671 (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
|
1672 (setq ange-ftp-ls-cache-file nil)) |
1106 | 1673 |
1674 ;;;; ------------------------------------------------------------ | |
1675 ;;;; Gateway support. | |
1676 ;;;; ------------------------------------------------------------ | |
1677 | |
1678 (defun ange-ftp-use-gateway-p (host) | |
1679 "Returns whether to access this host via a normal (non-smart) gateway." | |
1680 ;; yes, I know that I could simplify the following expression, but it is | |
1681 ;; clearer (to me at least) this way. | |
1682 (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
|
1683 (save-match-data |
1106 | 1684 (not (string-match ange-ftp-local-host-regexp host))))) |
1685 | |
1686 (defun ange-ftp-use-smart-gateway-p (host) | |
1687 "Returns whether to access this host via a smart gateway." | |
1688 (and ange-ftp-smart-gateway | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1689 (save-match-data |
1106 | 1690 (not (string-match ange-ftp-local-host-regexp host))))) |
1691 | |
1692 | |
1693 ;;; ------------------------------------------------------------ | |
1694 ;;; Temporary file location and deletion... | |
1695 ;;; ------------------------------------------------------------ | |
1696 | |
1697 (defvar ange-ftp-tmp-name-files ()) | |
1698 (defvar ange-ftp-tmp-name-hashtable (ange-ftp-make-hashtable 10)) | |
1699 (defvar ange-ftp-pid nil) | |
1700 | |
1701 (defun ange-ftp-get-pid () | |
1702 "Half-hearted attempt to get the current process's id." | |
1703 (setq ange-ftp-pid (substring (make-temp-name "") 1))) | |
1704 | |
1705 (defun ange-ftp-make-tmp-name (host) | |
1706 "This routine will return the name of a new file." | |
1707 (let* ((template (if (ange-ftp-use-gateway-p host) | |
1708 ange-ftp-gateway-tmp-name-template | |
1709 ange-ftp-tmp-name-template)) | |
1710 (pid (or ange-ftp-pid (ange-ftp-get-pid))) | |
1711 (start ?a) | |
1712 file entry) | |
1713 (while | |
1714 (progn | |
1715 (setq file (format "%s%c%s" template start pid)) | |
1716 (setq entry (intern file ange-ftp-tmp-name-hashtable)) | |
1717 (or (memq entry ange-ftp-tmp-name-files) | |
1718 (ange-ftp-real-file-exists-p file))) | |
1719 (if (> (setq start (1+ start)) ?z) | |
1720 (progn | |
1721 (setq template (concat template "X")) | |
1722 (setq start ?a)))) | |
1723 (setq ange-ftp-tmp-name-files | |
1724 (cons entry ange-ftp-tmp-name-files)) | |
1725 file)) | |
1726 | |
1727 (defun ange-ftp-del-tmp-name (temp) | |
1728 (setq ange-ftp-tmp-name-files | |
1729 (delq (intern temp ange-ftp-tmp-name-hashtable) | |
1730 ange-ftp-tmp-name-files)) | |
1731 (condition-case () | |
1732 (ange-ftp-real-delete-file temp) | |
1733 (error nil))) | |
1734 | |
1735 ;;;; ------------------------------------------------------------ | |
1736 ;;;; Interactive gateway program support. | |
1737 ;;;; ------------------------------------------------------------ | |
1738 | |
1739 (defvar ange-ftp-gwp-running t) | |
1740 (defvar ange-ftp-gwp-status nil) | |
1741 | |
1742 (defun ange-ftp-gwp-sentinel (proc str) | |
1743 (setq ange-ftp-gwp-running nil)) | |
1744 | |
1745 (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
|
1746 (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
|
1747 (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
|
1748 (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
|
1749 ;; 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
|
1750 (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
|
1751 (cond ((string-match "login: *$" str) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1752 (send-string proc |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1753 (concat |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1754 (let ((ange-ftp-default-user t)) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1755 (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
|
1756 "\n"))) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1757 ((string-match "Password: *$" str) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1758 (send-string proc |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1759 (concat |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1760 (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
|
1761 (ange-ftp-get-user |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1762 ange-ftp-gateway-host)) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1763 "\n"))) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1764 ((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
|
1765 (delete-process proc) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1766 (setq ange-ftp-gwp-running nil)) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1767 ((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
|
1768 (setq ange-ftp-gwp-running nil |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1769 ange-ftp-gwp-status t)))) |
1106 | 1770 |
1771 (defun ange-ftp-gwp-start (host user name args) | |
1772 "Login to the gateway machine and fire up an ftp process." | |
1773 (let* ((gw-user (ange-ftp-get-user ange-ftp-gateway-host)) | |
7042 | 1774 ;; It would be nice to make process-connection-type nil, |
1775 ;; but that doesn't work: ftp never responds. | |
1776 ;; Can anyone find a fix for that? | |
1777 (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
|
1778 (start-process name name |
7042 | 1779 ange-ftp-gateway-program |
1780 ange-ftp-gateway-host))) | |
1106 | 1781 (ftp (mapconcat (function identity) args " "))) |
1782 (process-kill-without-query proc) | |
1783 (set-process-sentinel proc (function ange-ftp-gwp-sentinel)) | |
1784 (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
|
1785 (save-excursion |
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1786 (set-buffer (process-buffer proc)) |
17739
1b0a4e406ba2
(ange-ftp-start-process): Create the buffer
Richard M. Stallman <rms@gnu.org>
parents:
17651
diff
changeset
|
1787 (goto-char (point-max)) |
7664
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1788 (set-marker (process-mark proc) (point))) |
1106 | 1789 (setq ange-ftp-gwp-running t |
1790 ange-ftp-gwp-status nil) | |
1791 (ange-ftp-message "Connecting to gateway %s..." ange-ftp-gateway-host) | |
1792 (while ange-ftp-gwp-running ;perform login sequence | |
1793 (accept-process-output proc)) | |
1794 (if (not ange-ftp-gwp-status) | |
1795 (ange-ftp-error host user "unable to login to gateway")) | |
1796 (ange-ftp-message "Connecting to gateway %s...done" ange-ftp-gateway-host) | |
1797 (setq ange-ftp-gwp-running t | |
1798 ange-ftp-gwp-status nil) | |
1799 (process-send-string proc ange-ftp-gateway-setup-term-command) | |
1800 (while ange-ftp-gwp-running ;zap ^M's and double echoing. | |
1801 (accept-process-output proc)) | |
1802 (if (not ange-ftp-gwp-status) | |
1803 (ange-ftp-error host user "unable to set terminal modes on gateway")) | |
1804 (setq ange-ftp-gwp-running t | |
1805 ange-ftp-gwp-status nil) | |
1806 (process-send-string proc (concat "exec " ftp "\n")) ;spawn ftp process | |
1807 proc)) | |
1808 | |
1809 ;;;; ------------------------------------------------------------ | |
1810 ;;;; Support for sending commands to the ftp process. | |
1811 ;;;; ------------------------------------------------------------ | |
1812 | |
1813 (defun ange-ftp-raw-send-cmd (proc cmd &optional msg cont nowait) | |
1814 "Low-level routine to send the given ftp CMD to the ftp PROCESS. | |
1815 MSG is an optional message to output before and after the command. | |
18956 | 1816 If CONT is non-nil then it is either a function or a list of function and |
1106 | 1817 some arguments. The function will be called when the ftp command has completed. |
18956 | 1818 If CONT is nil then this routine will return \( RESULT . LINE \) where RESULT |
1106 | 1819 is whether the command was successful, and LINE is the line from the FTP |
1820 process that caused the command to complete. | |
1821 If NOWAIT is given then the routine will return immediately the command has | |
1822 been queued with no result. CONT will still be called, however." | |
1823 (if (memq (process-status proc) '(run open)) | |
1824 (save-excursion | |
1825 (set-buffer (process-buffer proc)) | |
14887
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1826 (ange-ftp-wait-not-busy proc) |
1106 | 1827 (setq ange-ftp-process-string "" |
1828 ange-ftp-process-result-line "" | |
1829 ange-ftp-process-busy t | |
1830 ange-ftp-process-result nil | |
1831 ange-ftp-process-multi-skip nil | |
1832 ange-ftp-process-msg msg | |
1833 ange-ftp-process-continue cont | |
1834 ange-ftp-hash-mark-count 0 | |
1835 ange-ftp-last-percent -1 | |
1836 cmd (concat cmd "\n")) | |
1837 (and msg ange-ftp-process-verbose (ange-ftp-message "%s..." msg)) | |
1838 (goto-char (point-max)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1839 (move-marker comint-last-input-start (point)) |
1106 | 1840 ;; 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
|
1841 (save-match-data |
1106 | 1842 (if (string-match "^user \"[^\"]*\"" cmd) |
1843 (insert (substring cmd 0 (match-end 0)) " Turtle Power!\n") | |
1844 (insert cmd))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1845 (move-marker comint-last-input-end (point)) |
1106 | 1846 (send-string proc cmd) |
1847 (set-marker (process-mark proc) (point)) | |
1848 (if nowait | |
1849 nil | |
14887
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1850 (ange-ftp-wait-not-busy proc) |
1106 | 1851 (if cont |
1852 nil ;cont has already been called | |
1853 (cons ange-ftp-process-result ange-ftp-process-result-line)))))) | |
1854 | |
14887
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1855 ;; Wait for the ange-ftp process PROC not to be busy. |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1856 (defun ange-ftp-wait-not-busy (proc) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1857 (save-excursion |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1858 (set-buffer (process-buffer proc)) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1859 (condition-case nil |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1860 ;; This is a kludge to let user quit in case ftp gets hung. |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1861 ;; It matters because this function can be called from the filter. |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1862 ;; It is bad to allow quitting in a filter, but getting hung |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1863 ;; is worse. By binding quit-flag to nil, we might avoid |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1864 ;; most of the probability of getting screwed because the user |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1865 ;; wants to quit some command. |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1866 (let ((quit-flag nil) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1867 (inhibit-quit nil)) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1868 (while ange-ftp-process-busy |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1869 (accept-process-output proc))) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1870 (quit |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1871 ;; If the user does quit out of this, |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1872 ;; kill the process. That stops any transfer in progress. |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1873 ;; The next operation will open a new ftp connection. |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1874 (delete-process proc) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1875 (signal 'quit nil))))) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1876 |
1106 | 1877 (defun ange-ftp-nslookup-host (host) |
1878 "Attempt to resolve the given HOSTNAME using nslookup if possible." | |
1879 (interactive "sHost: ") | |
1880 (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
|
1881 (let ((default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1882 (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
|
1883 default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1884 exec-directory)) |
7042 | 1885 ;; It would be nice to make process-connection-type nil, |
1886 ;; but that doesn't work: ftp never responds. | |
1887 ;; Can anyone find a fix for that? | |
1888 (proc (let ((process-connection-type t)) | |
1889 (start-process " *nslookup*" " *nslookup*" | |
1890 ange-ftp-nslookup-program host))) | |
1106 | 1891 (res host)) |
1892 (process-kill-without-query proc) | |
1893 (save-excursion | |
1894 (set-buffer (process-buffer proc)) | |
1895 (while (memq (process-status proc) '(run open)) | |
1896 (accept-process-output proc)) | |
1897 (goto-char (point-min)) | |
1898 (if (re-search-forward "Name:.*\nAddress: *\\(.*\\)$" nil t) | |
1899 (setq res (buffer-substring (match-beginning 1) | |
1900 (match-end 1)))) | |
1901 (kill-buffer (current-buffer))) | |
1902 res) | |
1903 host)) | |
1904 | |
1905 (defun ange-ftp-start-process (host user name) | |
1906 "Spawn a new ftp process ready to connect to machine HOST and give it NAME. | |
1907 If HOST is only ftp-able through a gateway machine then spawn a shell | |
1908 on the gateway machine to do the ftp instead." | |
1909 (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
|
1910 (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
|
1911 (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
|
1912 (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
|
1913 use-smart-ftp) |
1106 | 1914 ange-ftp-gateway-ftp-program-name |
1915 ange-ftp-ftp-program-name)) | |
1916 (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
|
1917 ;; 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
|
1918 ;; 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
|
1919 ;; 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
|
1920 ;; default-directory. |
26587880d2b4
(ange-ftp-start-process): Bind file-name-handler-alist to nil
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1921 (file-name-handler-alist) |
6192
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1922 (default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1923 (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
|
1924 default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1925 exec-directory)) |
1106 | 1926 proc) |
7042 | 1927 ;; It would be nice to make process-connection-type nil, |
1928 ;; but that doesn't work: ftp never responds. | |
1929 ;; 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
|
1930 (let ((process-connection-type t) |
17739
1b0a4e406ba2
(ange-ftp-start-process): Create the buffer
Richard M. Stallman <rms@gnu.org>
parents:
17651
diff
changeset
|
1931 (process-environment process-environment) |
1b0a4e406ba2
(ange-ftp-start-process): Create the buffer
Richard M. Stallman <rms@gnu.org>
parents:
17651
diff
changeset
|
1932 (buffer (get-buffer-create name))) |
1b0a4e406ba2
(ange-ftp-start-process): Create the buffer
Richard M. Stallman <rms@gnu.org>
parents:
17651
diff
changeset
|
1933 (save-excursion |
1b0a4e406ba2
(ange-ftp-start-process): Create the buffer
Richard M. Stallman <rms@gnu.org>
parents:
17651
diff
changeset
|
1934 (set-buffer buffer) |
1b0a4e406ba2
(ange-ftp-start-process): Create the buffer
Richard M. Stallman <rms@gnu.org>
parents:
17651
diff
changeset
|
1935 (internal-ange-ftp-mode)) |
13789
7ccb22bca972
(ange-ftp-load): Added missing form to `cdr' down
Karl Heuer <kwzh@gnu.org>
parents:
13594
diff
changeset
|
1936 ;; 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
|
1937 (setenv "TERM" "dumb") |
7042 | 1938 (if use-gateway |
1939 (if ange-ftp-gateway-program-interactive | |
1940 (setq proc (ange-ftp-gwp-start host user name args)) | |
1941 (setq proc (apply 'start-process name name | |
1942 (append (list ange-ftp-gateway-program | |
1943 ange-ftp-gateway-host) | |
1944 args)))) | |
1945 (setq proc (apply 'start-process name name args)))) | |
1106 | 1946 (save-excursion |
1947 (set-buffer (process-buffer proc)) | |
17739
1b0a4e406ba2
(ange-ftp-start-process): Create the buffer
Richard M. Stallman <rms@gnu.org>
parents:
17651
diff
changeset
|
1948 (goto-char (point-max)) |
1b0a4e406ba2
(ange-ftp-start-process): Create the buffer
Richard M. Stallman <rms@gnu.org>
parents:
17651
diff
changeset
|
1949 (set-marker (process-mark proc) (point))) |
1b0a4e406ba2
(ange-ftp-start-process): Create the buffer
Richard M. Stallman <rms@gnu.org>
parents:
17651
diff
changeset
|
1950 (process-kill-without-query proc) |
1106 | 1951 (set-process-sentinel proc (function ange-ftp-process-sentinel)) |
1952 (set-process-filter proc (function ange-ftp-process-filter)) | |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1953 ;; On Windows, the standard ftp client buffers its output (because |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1954 ;; stdout is a pipe handle) so the startup message may never appear: |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1955 ;; `accept-process-output' at this point would hang indefinitely. |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1956 ;; However, sending an innocuous command ("help foo") forces some |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1957 ;; output that will be ignored, which is just as good. Once we |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1958 ;; start sending normal commands, the output no longer appears to be |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1959 ;; buffered, and everything works correctly. My guess is that the |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1960 ;; output of interest is being sent to stderr which is not buffered. |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1961 (when (eq system-type 'windows-nt) |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1962 ;; force ftp output to be treated as DOS text, otherwise the |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1963 ;; output of "help foo" confuses the EOL detection logic. |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1964 (set-process-coding-system proc 'raw-text-dos) |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1965 (process-send-string proc "help foo\n")) |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
1966 (accept-process-output proc) ;wait for ftp startup message |
1106 | 1967 proc)) |
1968 | |
17651
9670cdb28032
(internal-ange-ftp-mode): Add a mode-class property.
Richard M. Stallman <rms@gnu.org>
parents:
17584
diff
changeset
|
1969 (put 'internal-ange-ftp-mode 'mode-class 'special) |
9670cdb28032
(internal-ange-ftp-mode): Add a mode-class property.
Richard M. Stallman <rms@gnu.org>
parents:
17584
diff
changeset
|
1970 |
3502
c2b4a5b9c8d5
(internal-ange-ftp-mode): Renamed from ange-ftp-mode. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
3441
diff
changeset
|
1971 (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
|
1972 "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
|
1973 |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1974 \\{comint-mode-map}" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1975 (interactive) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1976 (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
|
1977 (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
|
1978 (setq mode-name "Internal Ange-ftp") |
1106 | 1979 (let ((proc (get-buffer-process (current-buffer)))) |
1980 (make-local-variable 'ange-ftp-process-string) | |
1981 (setq ange-ftp-process-string "") | |
1982 (make-local-variable 'ange-ftp-process-busy) | |
1983 (make-local-variable 'ange-ftp-process-result) | |
1984 (make-local-variable 'ange-ftp-process-msg) | |
1985 (make-local-variable 'ange-ftp-process-multi-skip) | |
1986 (make-local-variable 'ange-ftp-process-result-line) | |
1987 (make-local-variable 'ange-ftp-process-continue) | |
1988 (make-local-variable 'ange-ftp-hash-mark-count) | |
1989 (make-local-variable 'ange-ftp-binary-hash-mark-size) | |
1990 (make-local-variable 'ange-ftp-ascii-hash-mark-size) | |
1991 (make-local-variable 'ange-ftp-hash-mark-unit) | |
1992 (make-local-variable 'ange-ftp-xfer-size) | |
1993 (make-local-variable 'ange-ftp-last-percent) | |
1994 (setq ange-ftp-hash-mark-count 0) | |
1995 (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
|
1996 (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
|
1997 |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1998 (setq comint-prompt-regexp "^ftp> ") |
13278
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
1999 (make-local-variable 'comint-password-prompt-regexp) |
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
2000 ;; This is a regexp that can't match anything. |
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
2001 ;; ange-ftp has its own ways of handling passwords. |
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
2002 (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
|
2003 (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
|
2004 (setq paragraph-start comint-prompt-regexp))) |
1106 | 2005 |
2006 (defun ange-ftp-smart-login (host user pass account proc) | |
2007 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
2008 PROC is the FTP-client's process. This routine uses the smart-gateway | |
2009 host specified in ``ange-ftp-gateway-host''." | |
2010 (let ((result (ange-ftp-raw-send-cmd | |
2011 proc | |
2012 (format "open %s %s" | |
2013 (ange-ftp-nslookup-host ange-ftp-gateway-host) | |
2014 ange-ftp-smart-gateway-port) | |
2015 (format "Opening FTP connection to %s via %s" | |
2016 host | |
2017 ange-ftp-gateway-host)))) | |
2018 (or (car result) | |
2019 (ange-ftp-error host user | |
2020 (concat "OPEN request failed: " | |
2021 (cdr result)))) | |
2022 (setq result (ange-ftp-raw-send-cmd | |
2023 proc (format "user \"%s\"@%s %s %s" | |
2024 user | |
2025 (ange-ftp-nslookup-host host) | |
2026 pass | |
2027 account) | |
2028 (format "Logging in as user %s@%s" | |
2029 user host))) | |
2030 (or (car result) | |
2031 (progn | |
2032 (ange-ftp-set-passwd host user nil) ; reset password | |
2033 (ange-ftp-set-account host user nil) ; reset account | |
2034 (ange-ftp-error host user | |
2035 (concat "USER request failed: " | |
2036 (cdr result))))))) | |
2037 | |
2038 (defun ange-ftp-normal-login (host user pass account proc) | |
2039 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
2040 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
|
2041 (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
|
2042 (result (ange-ftp-raw-send-cmd |
1106 | 2043 proc |
12441
597f9723ddf6
(ange-ftp-normal-login): if ange-ftp-smart-gateway
Richard M. Stallman <rms@gnu.org>
parents:
11315
diff
changeset
|
2044 (format "open %s" nshost) |
1106 | 2045 (format "Opening FTP connection to %s" host)))) |
2046 (or (car result) | |
2047 (ange-ftp-error host user | |
2048 (concat "OPEN request failed: " | |
2049 (cdr result)))) | |
2050 (setq result (ange-ftp-raw-send-cmd | |
2051 proc | |
16611
e746a7bd6376
(ange-ftp-normal-login): If using a smart gateway,
Karl Heuer <kwzh@gnu.org>
parents:
16427
diff
changeset
|
2052 (if (and (ange-ftp-use-smart-gateway-p host) |
e746a7bd6376
(ange-ftp-normal-login): If using a smart gateway,
Karl Heuer <kwzh@gnu.org>
parents:
16427
diff
changeset
|
2053 ange-ftp-gateway-host) |
12441
597f9723ddf6
(ange-ftp-normal-login): if ange-ftp-smart-gateway
Richard M. Stallman <rms@gnu.org>
parents:
11315
diff
changeset
|
2054 (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
|
2055 (format "user \"%s\" %s %s" user pass account)) |
1106 | 2056 (format "Logging in as user %s@%s" user host))) |
2057 (or (car result) | |
2058 (progn | |
2059 (ange-ftp-set-passwd host user nil) ;reset password. | |
2060 (ange-ftp-set-account host user nil) ;reset account. | |
2061 (ange-ftp-error host user | |
2062 (concat "USER request failed: " | |
2063 (cdr result))))))) | |
2064 | |
5480
f193f880c524
(ange-ftp-hash-mark-msgs): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5350
diff
changeset
|
2065 ;; ange@hplb.hpl.hp.com says this should not be changed. |
1106 | 2066 (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
|
2067 "[hH]ash mark [^0-9]*\\([0-9]+\\)" |
1106 | 2068 "*Regexp matching the FTP client's output upon doing a HASH command.") |
2069 | |
2070 (defun ange-ftp-guess-hash-mark-size (proc) | |
2071 (if ange-ftp-send-hash | |
2072 (save-excursion | |
2073 (set-buffer (process-buffer proc)) | |
2074 (let* ((status (ange-ftp-raw-send-cmd proc "hash")) | |
2075 (result (car status)) | |
2076 (line (cdr status))) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2077 (save-match-data |
1106 | 2078 (if (string-match ange-ftp-hash-mark-msgs line) |
2079 (let ((size (string-to-int | |
2080 (substring line | |
2081 (match-beginning 1) | |
2082 (match-end 1))))) | |
2083 (setq ange-ftp-ascii-hash-mark-size size | |
2084 ange-ftp-hash-mark-unit (ash size -4)) | |
2085 | |
2086 ;; if a default value for this is set, use that value. | |
2087 (or ange-ftp-binary-hash-mark-size | |
2088 (setq ange-ftp-binary-hash-mark-size size))))))))) | |
2089 | |
2090 (defun ange-ftp-get-process (host user) | |
7042 | 2091 "Return an FTP subprocess connected to HOST and logged in as USER. |
2092 Create a new process if needed." | |
1106 | 2093 (let* ((name (ange-ftp-ftp-process-buffer host user)) |
2094 (proc (get-process name))) | |
2095 (if (and proc (memq (process-status proc) '(run open))) | |
2096 proc | |
16933
c6d12d67e2b5
(ange-ftp-get-process): Call delete-process.
Richard M. Stallman <rms@gnu.org>
parents:
16916
diff
changeset
|
2097 ;; Must delete dead process so that new process can reuse the name. |
c6d12d67e2b5
(ange-ftp-get-process): Call delete-process.
Richard M. Stallman <rms@gnu.org>
parents:
16916
diff
changeset
|
2098 (if proc (delete-process proc)) |
1106 | 2099 (let ((pass (ange-ftp-quote-string |
2100 (ange-ftp-get-passwd host user))) | |
2101 (account (ange-ftp-quote-string | |
2102 (ange-ftp-get-account host user)))) | |
2103 ;; grab a suitable process. | |
2104 (setq proc (ange-ftp-start-process host user name)) | |
2105 | |
2106 ;; 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
|
2107 (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
|
2108 ange-ftp-gateway-host) |
1106 | 2109 (ange-ftp-smart-login host user pass account proc) |
2110 (ange-ftp-normal-login host user pass account proc)) | |
2111 | |
2112 ;; Tell client to send back hash-marks as progress. It isn't usually | |
2113 ;; fatal if this command fails. | |
2114 (ange-ftp-guess-hash-mark-size proc) | |
2115 | |
2116 ;; Guess at the host type. | |
2117 (ange-ftp-guess-host-type host user) | |
2118 | |
2119 ;; Run any user-specified hooks. Note that proc, host and user are | |
2120 ;; dynamically bound at this point. | |
2121 (run-hooks 'ange-ftp-process-startup-hook)) | |
2122 proc))) | |
2123 | |
2124 ;; Variables for caching host and host-type | |
2125 (defvar ange-ftp-host-cache nil) | |
2126 (defvar ange-ftp-host-type-cache nil) | |
2127 | |
2128 ;; If ange-ftp-host-type is called with the optional user | |
2129 ;; argument, it will attempt to guess the host type by connecting | |
2130 ;; as user, if necessary. For efficiency, I have tried to give this | |
2131 ;; optional second argument only when necessary. Have I missed any calls | |
2132 ;; to ange-ftp-host-type where it should have been supplied? | |
2133 | |
2134 (defun ange-ftp-host-type (host &optional user) | |
2135 "Return a symbol which represents the type of the HOST given. | |
2136 If the optional argument USER is given, attempts to guess the | |
2137 host-type by logging in as USER." | |
23231
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2138 (cond ((null host) 'unix) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2139 ;; Return `unix' if HOST is nil, since that's the most vanilla |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2140 ;; possible return value. |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2141 ((eq host ange-ftp-host-cache) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2142 ange-ftp-host-type-cache) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2143 ;; Trigger an ftp connection, in case we need to guess at the host type. |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2144 ((and user (ange-ftp-get-process host user) (eq host ange-ftp-host-cache)) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2145 ange-ftp-host-type-cache) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2146 (t |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2147 (setq ange-ftp-host-cache host |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2148 ange-ftp-host-type-cache |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2149 (cond ((ange-ftp-dumb-unix-host host) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2150 'dumb-unix) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2151 ;; ((and (fboundp 'ange-ftp-vos-host) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2152 ;; (ange-ftp-vos-host host)) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2153 ;; 'vos) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2154 ((and (fboundp 'ange-ftp-vms-host) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2155 (ange-ftp-vms-host host)) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2156 'vms) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2157 ((and (fboundp 'ange-ftp-mts-host) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2158 (ange-ftp-mts-host host)) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2159 'mts) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2160 ((and (fboundp 'ange-ftp-cms-host) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2161 (ange-ftp-cms-host host)) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2162 'cms) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2163 (t |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
2164 'unix)))))) |
1106 | 2165 |
2166 ;; It would be nice to abstract the functions ange-ftp-TYPE-host and | |
2167 ;; ange-ftp-add-TYPE-host. The trick is to abstract these functions | |
2168 ;; without sacrificing speed. Also, having separate variables | |
2169 ;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to | |
2170 ;; set an alist to indicate that a host is of a given type. Even with | |
2171 ;; automatic host type recognition, setting a regexp is still a good idea | |
2172 ;; (for efficiency) if you log into a particular non-UNIX host frequently. | |
2173 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2174 (defvar ange-ftp-fix-name-func-alist nil |
7042 | 2175 "Alist saying how to convert file name to the host's syntax. |
2176 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
|
2177 which can change a UNIX file name into a name more suitable for a host of type |
1106 | 2178 TYPE.") |
2179 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2180 (defvar ange-ftp-fix-dir-name-func-alist nil |
7042 | 2181 "Alist saying how to convert directory name to the host's syntax. |
2182 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
|
2183 which can change UNIX directory name into a directory name more suitable |
1106 | 2184 for a host of type TYPE.") |
2185 | |
2186 ;; *** Perhaps the sense of this variable should be inverted, since there | |
2187 ;; *** is only 1 host type that can take ls-style listing options. | |
2188 (defvar ange-ftp-dumb-host-types '(dumb-unix) | |
2189 "List of host types that can't take UNIX ls-style listing options.") | |
2190 | |
2191 (defun ange-ftp-send-cmd (host user cmd &optional msg cont nowait) | |
2192 "Find an ftp process connected to HOST logged in as USER and send it CMD. | |
2193 MSG is an optional status message to be output before and after issuing the | |
2194 command. | |
2195 See the documentation for ange-ftp-raw-send-cmd for a description of CONT | |
2196 and NOWAIT." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2197 ;; Handle conversion to remote file name syntax and remote ls option |
1106 | 2198 ;; capability. |
2199 (let ((cmd0 (car cmd)) | |
2200 (cmd1 (nth 1 cmd)) | |
4498
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2201 (ange-ftp-this-user user) |
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2202 (ange-ftp-this-host host) |
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2203 (ange-ftp-this-msg msg) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2204 cmd2 cmd3 host-type fix-name-func) |
1106 | 2205 |
2206 (cond | |
2207 | |
2208 ;; pwd case (We don't care what host-type.) | |
2209 ((null cmd1)) | |
2210 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2211 ;; cmd == 'dir "remote-name" "local-name" "ls-switches" |
1106 | 2212 ((progn |
2213 (setq cmd2 (nth 2 cmd) | |
2214 host-type (ange-ftp-host-type host user)) | |
2215 ;; This will trigger an FTP login, if one doesn't exist | |
2216 (eq cmd0 'dir)) | |
2217 (setq cmd1 (funcall | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2218 (or (cdr (assq host-type ange-ftp-fix-dir-name-func-alist)) |
1106 | 2219 'identity) |
2220 cmd1) | |
2221 cmd3 (nth 3 cmd)) | |
2222 ;; Need to deal with the HP-UX ftp bug. This should also allow | |
2223 ;; us to resolve symlinks to directories on SysV machines. (Sebastian will | |
2224 ;; be happy.) | |
2225 (and (eq host-type 'unix) | |
2226 (string-match "/$" cmd1) | |
2227 (not (string-match "R" cmd3)) | |
2228 (setq cmd1 (concat cmd1 "."))) | |
22642
f392093d562d
(ange-ftp-send-cmd): When listing a directory that
Richard M. Stallman <rms@gnu.org>
parents:
22566
diff
changeset
|
2229 |
f392093d562d
(ange-ftp-send-cmd): When listing a directory that
Richard M. Stallman <rms@gnu.org>
parents:
22566
diff
changeset
|
2230 ;; If the dir name contains a space, some ftp servers will |
f392093d562d
(ange-ftp-send-cmd): When listing a directory that
Richard M. Stallman <rms@gnu.org>
parents:
22566
diff
changeset
|
2231 ;; refuse to list it. We instead change directory to the |
f392093d562d
(ange-ftp-send-cmd): When listing a directory that
Richard M. Stallman <rms@gnu.org>
parents:
22566
diff
changeset
|
2232 ;; directory in question and ls ".". |
f392093d562d
(ange-ftp-send-cmd): When listing a directory that
Richard M. Stallman <rms@gnu.org>
parents:
22566
diff
changeset
|
2233 (when (string-match " " cmd1) |
f392093d562d
(ange-ftp-send-cmd): When listing a directory that
Richard M. Stallman <rms@gnu.org>
parents:
22566
diff
changeset
|
2234 (ange-ftp-cd host user (nth 1 cmd)) |
f392093d562d
(ange-ftp-send-cmd): When listing a directory that
Richard M. Stallman <rms@gnu.org>
parents:
22566
diff
changeset
|
2235 (setq cmd1 ".")) |
f392093d562d
(ange-ftp-send-cmd): When listing a directory that
Richard M. Stallman <rms@gnu.org>
parents:
22566
diff
changeset
|
2236 |
1106 | 2237 ;; If the remote ls can take switches, put them in |
2238 (or (memq host-type ange-ftp-dumb-host-types) | |
2239 (setq cmd0 'ls | |
2240 cmd1 (format "\"%s %s\"" cmd3 cmd1)))) | |
2241 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2242 ;; 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
|
2243 ((progn |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2244 (setq fix-name-func (or (cdr (assq host-type |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2245 ange-ftp-fix-name-func-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2246 'identity)) |
1106 | 2247 (memq cmd0 '(get delete mkdir rmdir cd))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2248 (setq cmd1 (funcall fix-name-func cmd1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2249 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2250 ;; Second argument is the remote name |
1106 | 2251 ((memq cmd0 '(append put chmod)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2252 (setq cmd2 (funcall fix-name-func cmd2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2253 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2254 ;; Both arguments are remote names |
1106 | 2255 ((eq cmd0 'rename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2256 (setq cmd1 (funcall fix-name-func cmd1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2257 cmd2 (funcall fix-name-func cmd2)))) |
1106 | 2258 |
2259 ;; Turn the command into one long string | |
2260 (setq cmd0 (symbol-name cmd0)) | |
2261 (setq cmd (concat cmd0 | |
2262 (and cmd1 (concat " " cmd1)) | |
2263 (and cmd2 (concat " " cmd2)))) | |
2264 | |
2265 ;; Actually send the resulting command. | |
2266 (let (afsc-result | |
2267 afsc-line) | |
2268 (ange-ftp-raw-send-cmd | |
2269 (ange-ftp-get-process host user) | |
2270 cmd | |
2271 msg | |
2272 (list | |
2273 (function (lambda (result line host user | |
2274 cmd msg cont nowait) | |
2275 (or cont | |
2276 (setq afsc-result result | |
2277 afsc-line line)) | |
2278 (if result | |
2279 (ange-ftp-call-cont cont result line) | |
2280 (ange-ftp-raw-send-cmd | |
2281 (ange-ftp-get-process host user) | |
2282 cmd | |
2283 msg | |
2284 (list | |
2285 (function (lambda (result line cont) | |
2286 (or cont | |
2287 (setq afsc-result result | |
2288 afsc-line line)) | |
2289 (ange-ftp-call-cont cont result line))) | |
2290 cont) | |
2291 nowait)))) | |
2292 host user cmd msg cont nowait) | |
2293 nowait) | |
2294 | |
2295 (if nowait | |
2296 nil | |
2297 (if cont | |
2298 nil | |
2299 (cons afsc-result afsc-line)))))) | |
2300 | |
2301 ;; It might be nice to message users about the host type identified, | |
2302 ;; but there is so much other messaging going on, it would not be | |
2303 ;; seen. No point in slowing things down just so users can read | |
2304 ;; a host type message. | |
2305 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2306 (defconst ange-ftp-cms-name-template |
1106 | 2307 (concat |
2308 "^[-A-Z0-9$*][-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?" | |
2309 "[-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
|
2310 (defconst ange-ftp-vms-name-template |
1106 | 2311 "^[-A-Z0-9_$]+:\\[[-A-Z0-9_$]+\\(\\.[-A-Z0-9_$]+\\)*\\]$") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2312 (defconst ange-ftp-mts-name-template |
1106 | 2313 "^[A-Z0-9._][A-Z0-9._][A-Z0-9._][A-Z0-9._]:$") |
2314 | |
2315 (defun ange-ftp-guess-host-type (host user) | |
7042 | 2316 "Guess at the the host type of HOST. |
2317 Works by doing a pwd and examining the directory syntax." | |
1106 | 2318 (let ((host-type (ange-ftp-host-type host)) |
2319 (key (concat host "/" user "/~"))) | |
2320 (if (eq host-type 'unix) | |
2321 ;; 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
|
2322 (save-match-data |
1106 | 2323 (let* ((result (ange-ftp-get-pwd host user)) |
2324 (dir (car result)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2325 fix-name-func) |
1106 | 2326 (cond ((null dir) |
2327 (message "Warning! Unable to get home directory") | |
2328 (sit-for 1) | |
2329 (if (string-match | |
2330 "^450 No current working directory defined$" | |
2331 (cdr result)) | |
2332 | |
2333 ;; We'll assume that if pwd bombs with this | |
2334 ;; error message, then it's CMS. | |
2335 (progn | |
2336 (ange-ftp-add-cms-host host) | |
2337 (setq ange-ftp-host-cache host | |
2338 ange-ftp-host-type-cache 'cms)))) | |
2339 | |
2340 ;; try for VMS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2341 ((string-match ange-ftp-vms-name-template dir) |
1106 | 2342 (ange-ftp-add-vms-host host) |
2343 ;; The add-host functions clear the host type cache. | |
2344 ;; Therefore, need to set the cache afterwards. | |
2345 (setq ange-ftp-host-cache host | |
2346 ange-ftp-host-type-cache 'vms)) | |
2347 | |
2348 ;; try for MTS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2349 ((string-match ange-ftp-mts-name-template dir) |
1106 | 2350 (ange-ftp-add-mts-host host) |
2351 (setq ange-ftp-host-cache host | |
2352 ange-ftp-host-type-cache 'mts)) | |
2353 | |
2354 ;; try for CMS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2355 ((string-match ange-ftp-cms-name-template dir) |
1106 | 2356 (ange-ftp-add-cms-host host) |
2357 (setq ange-ftp-host-cache host | |
2358 ange-ftp-host-type-cache 'cms)) | |
2359 | |
2360 ;; assume UN*X | |
2361 (t | |
2362 (setq ange-ftp-host-cache host | |
2363 ange-ftp-host-type-cache 'unix))) | |
2364 | |
2365 ;; Now that we have done a pwd, might as well put it in | |
2366 ;; the expand-dir hashtable. | |
2367 (let ((ange-ftp-this-user user) | |
2368 (ange-ftp-this-host host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2369 (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
|
2370 ange-ftp-fix-name-func-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2371 (if fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2372 (setq dir (funcall fix-name-func dir 'reverse)))) |
1106 | 2373 (ange-ftp-put-hash-entry key dir |
2374 ange-ftp-expand-dir-hashtable)))) | |
2375 | |
2376 ;; In the special case of CMS make sure that know the | |
2377 ;; expansion of the home minidisk now, because we will | |
2378 ;; be doing a lot of cd's. | |
2379 (if (and (eq host-type 'cms) | |
2380 (not (ange-ftp-hash-entry-exists-p | |
2381 key ange-ftp-expand-dir-hashtable))) | |
2382 (let ((dir (car (ange-ftp-get-pwd host user)))) | |
2383 (if dir | |
2384 (ange-ftp-put-hash-entry key (concat "/" dir) | |
2385 ange-ftp-expand-dir-hashtable) | |
2386 (message "Warning! Unable to get home directory") | |
2387 (sit-for 1)))))) | |
2388 | |
2389 | |
2390 ;;;; ------------------------------------------------------------ | |
2391 ;;;; Remote file and directory listing support. | |
2392 ;;;; ------------------------------------------------------------ | |
2393 | |
7042 | 2394 ;; Returns whether HOST's FTP server doesn't like \'ls\' or \'dir\' commands |
2395 ;; to take switch arguments. | |
1106 | 2396 (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
|
2397 (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
|
2398 (save-match-data |
1106 | 2399 (string-match ange-ftp-dumb-unix-host-regexp host)))) |
2400 | |
2401 (defun ange-ftp-add-dumb-unix-host (host) | |
2402 "Interactively adds a given HOST to ange-ftp-dumb-unix-host-regexp." | |
2403 (interactive | |
2404 (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
|
2405 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2406 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 2407 (if (not (ange-ftp-dumb-unix-host host)) |
2408 (setq ange-ftp-dumb-unix-host-regexp | |
2409 (concat "^" (regexp-quote host) "$" | |
2410 (and ange-ftp-dumb-unix-host-regexp "\\|") | |
2411 ange-ftp-dumb-unix-host-regexp) | |
2412 ange-ftp-host-cache nil))) | |
2413 | |
2414 (defvar ange-ftp-parse-list-func-alist nil | |
7042 | 2415 "Alist saying how to parse directory listings for certain OS types. |
2416 Association list of \( TYPE \. FUNC \) pairs. The FUNC is a routine | |
1106 | 2417 which can parse the output from a DIR listing for a host of type TYPE.") |
2418 | |
2419 ;; With no-error nil, this function returns: | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2420 ;; an error if file is not an ange-ftp-name |
1106 | 2421 ;; (This should never happen.) |
2422 ;; an error if either the listing is unreadable or there is an ftp error. | |
2423 ;; the listing (a string), if everything works. | |
2424 ;; | |
2425 ;; With no-error t, it returns: | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2426 ;; an error if not an ange-ftp-name |
14040 | 2427 ;; error if listing is unreadable (most likely caused by a slow connection) |
1106 | 2428 ;; nil if ftp error (this is because although asking to list a nonexistent |
2429 ;; directory on a remote unix machine usually (except | |
2430 ;; maybe for dumb hosts) returns an ls error, but no | |
2431 ;; ftp error, if the same is done on a VMS machine, | |
2432 ;; an ftp error is returned. Need to trap the error | |
2433 ;; so we can go on and try to list the parent.) | |
2434 ;; the listing, if everything works. | |
2435 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2436 ;; 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
|
2437 ;; 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
|
2438 ;; of FILE within the directory specified by `default-directory'. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2439 |
15958
58742d1b996a
(ange-ftp-ls): Run ange-ftp-before-parse-ls-hook.
Richard M. Stallman <rms@gnu.org>
parents:
15872
diff
changeset
|
2440 (defvar ange-ftp-before-parse-ls-hook nil |
58742d1b996a
(ange-ftp-ls): Run ange-ftp-before-parse-ls-hook.
Richard M. Stallman <rms@gnu.org>
parents:
15872
diff
changeset
|
2441 "Normal hook run before parsing the text of an ftp directory listing.") |
58742d1b996a
(ange-ftp-ls): Run ange-ftp-before-parse-ls-hook.
Richard M. Stallman <rms@gnu.org>
parents:
15872
diff
changeset
|
2442 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2443 (defun ange-ftp-ls (file lsargs parse &optional no-error wildcard) |
1106 | 2444 "Return the output of an `DIR' or `ls' command done over ftp. |
2445 FILE is the full name of the remote file, LSARGS is any args to pass to the | |
2446 `ls' command, and PARSE specifies that the output should be parsed and stored | |
2447 away in the internal cache." | |
2448 ;; If parse is t, we assume that file is a directory. i.e. we only parse | |
2449 ;; full directory listings. | |
2450 (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
|
2451 (parsed (ange-ftp-ftp-name ange-ftp-this-file))) |
1106 | 2452 (if parsed |
2453 (let* ((host (nth 0 parsed)) | |
2454 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2455 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2456 (key (directory-file-name ange-ftp-this-file)) |
2457 (host-type (ange-ftp-host-type host user)) | |
2458 (dumb (memq host-type ange-ftp-dumb-host-types)) | |
2459 result | |
2460 temp | |
2461 lscmd parse-func) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2462 (if (string-equal name "") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2463 (setq name |
1106 | 2464 (ange-ftp-real-file-name-as-directory |
2465 (ange-ftp-expand-dir host user "~")))) | |
2466 (if (and ange-ftp-ls-cache-file | |
2467 (string-equal key ange-ftp-ls-cache-file) | |
2468 ;; Don't care about lsargs for dumb hosts. | |
2469 (or dumb (string-equal lsargs ange-ftp-ls-cache-lsargs))) | |
2470 ange-ftp-ls-cache-res | |
2471 (setq temp (ange-ftp-make-tmp-name host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2472 (if wildcard |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2473 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2474 (ange-ftp-cd host user (file-name-directory name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2475 (setq lscmd (list 'dir file temp lsargs))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2476 (setq lscmd (list 'dir name temp lsargs))) |
1106 | 2477 (unwind-protect |
2478 (if (car (setq result (ange-ftp-send-cmd | |
2479 host | |
2480 user | |
2481 lscmd | |
2482 (format "Listing %s" | |
2483 (ange-ftp-abbreviate-filename | |
2484 ange-ftp-this-file))))) | |
2485 (save-excursion | |
2486 (set-buffer (get-buffer-create | |
2487 ange-ftp-data-buffer-name)) | |
2488 (erase-buffer) | |
2489 (if (ange-ftp-real-file-readable-p temp) | |
2490 (ange-ftp-real-insert-file-contents temp) | |
2491 (sleep-for ange-ftp-retry-time) | |
2492 ;wait for file to possibly appear | |
2493 (if (ange-ftp-real-file-readable-p temp) | |
2494 ;; Try again. | |
2495 (ange-ftp-real-insert-file-contents temp) | |
2496 (ange-ftp-error host user | |
2497 (format | |
2498 "list data file %s not readable" | |
2499 temp)))) | |
15958
58742d1b996a
(ange-ftp-ls): Run ange-ftp-before-parse-ls-hook.
Richard M. Stallman <rms@gnu.org>
parents:
15872
diff
changeset
|
2500 (run-hooks 'ange-ftp-before-parse-ls-hook) |
1106 | 2501 (if parse |
2502 (ange-ftp-set-files | |
2503 ange-ftp-this-file | |
2504 (if (setq | |
2505 parse-func | |
2506 (cdr (assq host-type | |
2507 ange-ftp-parse-list-func-alist))) | |
2508 (funcall parse-func) | |
2509 (ange-ftp-parse-dired-listing lsargs)))) | |
2510 (setq ange-ftp-ls-cache-file key | |
2511 ange-ftp-ls-cache-lsargs lsargs | |
2512 ; For dumb hosts-types this is | |
2513 ; meaningless but harmless. | |
2514 ange-ftp-ls-cache-res (buffer-string)) | |
2515 ;; (kill-buffer (current-buffer)) | |
2516 ange-ftp-ls-cache-res) | |
2517 (if no-error | |
2518 nil | |
2519 (ange-ftp-error host user | |
2520 (concat "DIR failed: " (cdr result))))) | |
2521 (ange-ftp-del-tmp-name temp)))) | |
2522 (error "Should never happen. Please report. Bug ref. no.: 1")))) | |
2523 | |
2524 ;;;; ------------------------------------------------------------ | |
2525 ;;;; Directory information caching support. | |
2526 ;;;; ------------------------------------------------------------ | |
2527 | |
2528 (defconst ange-ftp-date-regexp | |
20692
8af33d2de7b2
(ange-ftp-date-regexp): Make l pattern match any non-ASCII char.
Richard M. Stallman <rms@gnu.org>
parents:
20656
diff
changeset
|
2529 (let* ((l "\\([A-Za-z]\\|[^\0-\177]\\)") |
20453
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2530 ;; In some locales, month abbreviations are as short as 2 letters, |
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2531 ;; and they can be padded on the right with spaces. |
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2532 (month (concat l l "+ *")) |
20692
8af33d2de7b2
(ange-ftp-date-regexp): Make l pattern match any non-ASCII char.
Richard M. Stallman <rms@gnu.org>
parents:
20656
diff
changeset
|
2533 ;; Recognize any non-ASCII character. |
20453
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2534 ;; The purpose is to match a Kanji character. |
20692
8af33d2de7b2
(ange-ftp-date-regexp): Make l pattern match any non-ASCII char.
Richard M. Stallman <rms@gnu.org>
parents:
20656
diff
changeset
|
2535 (k "[^\0-\177]") |
20222
9823d1d05083
(ange-ftp-date-regexp): Handle Japanese-format dates.
Paul Eggert <eggert@twinsun.com>
parents:
20015
diff
changeset
|
2536 (s " ") |
9823d1d05083
(ange-ftp-date-regexp): Handle Japanese-format dates.
Paul Eggert <eggert@twinsun.com>
parents:
20015
diff
changeset
|
2537 (mm "[ 0-1][0-9]") |
9823d1d05083
(ange-ftp-date-regexp): Handle Japanese-format dates.
Paul Eggert <eggert@twinsun.com>
parents:
20015
diff
changeset
|
2538 (dd "[ 0-3][0-9]") |
20453
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2539 (western (concat "\\(" month s dd "\\|" dd s month "\\)")) |
20222
9823d1d05083
(ange-ftp-date-regexp): Handle Japanese-format dates.
Paul Eggert <eggert@twinsun.com>
parents:
20015
diff
changeset
|
2540 (japanese (concat mm k s dd k))) |
20453
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2541 ;; Require the previous column to end in a digit. |
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2542 ;; This avoids recognizing `1 may 1997' as a date in the line: |
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2543 ;; -r--r--r-- 1 may 1997 1168 Oct 19 16:49 README |
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2544 (concat "[0-9]" s "\\(" western "\\|" japanese "\\)" s)) |
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2545 "Regular expression to match up to the column before the file name in a |
a68e24bdc522
(ange-ftp-date-regexp): Fix the problem with misparsing
Paul Eggert <eggert@twinsun.com>
parents:
20327
diff
changeset
|
2546 directory listing. This regular expression is designed to recognize dates |
16709
3b6153697884
(ange-ftp-date-regexp): Recognize various languages.
Richard M. Stallman <rms@gnu.org>
parents:
16611
diff
changeset
|
2547 regardless of the language.") |
1106 | 2548 |
2549 (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
|
2550 "Alist saying how to add file entries on certain OS types. |
7042 | 2551 Association list of pairs \( TYPE \. FUNC \), where FUNC |
1106 | 2552 is a function to be used to add a file entry for the OS TYPE. The |
2553 main reason for this alist is to deal with file versions in VMS.") | |
2554 | |
2555 (defvar ange-ftp-delete-file-entry-alist nil | |
7042 | 2556 "Alist saying how to delete files on certain OS types. |
2557 Association list of pairs \( TYPE \. FUNC \), where FUNC | |
1106 | 2558 is a function to be used to delete a file entry for the OS TYPE. |
7042 | 2559 The main reason for this alist is to deal with file versions in VMS.") |
1106 | 2560 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2561 (defun ange-ftp-add-file-entry (name &optional dir-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2562 "Add a file entry for file NAME, if its directory info exists." |
1106 | 2563 (funcall (or (cdr (assq (ange-ftp-host-type |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2564 (car (ange-ftp-ftp-name name))) |
1106 | 2565 ange-ftp-add-file-entry-alist)) |
2566 'ange-ftp-internal-add-file-entry) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2567 name dir-p) |
1106 | 2568 (setq ange-ftp-ls-cache-file nil)) |
2569 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2570 (defun ange-ftp-delete-file-entry (name &optional dir-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2571 "Delete the file entry for file NAME, if its directory info exists." |
1106 | 2572 (funcall (or (cdr (assq (ange-ftp-host-type |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2573 (car (ange-ftp-ftp-name name))) |
1106 | 2574 ange-ftp-delete-file-entry-alist)) |
2575 'ange-ftp-internal-delete-file-entry) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2576 name dir-p) |
1106 | 2577 (setq ange-ftp-ls-cache-file nil)) |
2578 | |
2579 (defmacro ange-ftp-parse-filename () | |
2580 ;;Extract the filename from the current line of a dired-like listing. | |
2581 (` (let ((eol (progn (end-of-line) (point)))) | |
2582 (beginning-of-line) | |
2583 (if (re-search-forward ange-ftp-date-regexp eol t) | |
2584 (progn | |
2585 (skip-chars-forward " ") | |
2586 (skip-chars-forward "^ " eol) | |
2587 (skip-chars-forward " " eol) | |
2588 ;; We bomb on filenames starting with a space. | |
2589 (buffer-substring (point) eol)))))) | |
2590 | |
2591 ;; This deals with the F switch. Should also do something about | |
2592 ;; unquoting names obtained with the SysV b switch and the GNU Q | |
2593 ;; switch. See Sebastian's dired-get-filename. | |
2594 | |
2595 (defmacro ange-ftp-ls-parser () | |
2596 ;; Note that switches is dynamically bound. | |
2597 ;; Meant to be called by ange-ftp-parse-dired-listing | |
2598 (` (let ((tbl (ange-ftp-make-hashtable)) | |
2599 (used-F (and (stringp switches) | |
2600 (string-match "F" switches))) | |
2601 file-type symlink directory file) | |
2602 (while (setq file (ange-ftp-parse-filename)) | |
2603 (beginning-of-line) | |
2604 (skip-chars-forward "\t 0-9") | |
2605 (setq file-type (following-char) | |
2606 directory (eq file-type ?d)) | |
2607 (if (eq file-type ?l) | |
2608 (if (string-match " -> " file) | |
2609 (setq symlink (substring file (match-end 0)) | |
2610 file (substring file 0 (match-beginning 0))) | |
2611 ;; Shouldn't happen | |
2612 (setq symlink "")) | |
2613 (setq symlink nil)) | |
2614 ;; Only do a costly regexp search if the F switch was used. | |
2615 (if (and used-F | |
2616 (not (string-equal file "")) | |
2617 (looking-at | |
2618 ".[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)")) | |
2619 (let ((socket (eq file-type ?s)) | |
2620 (executable | |
2621 (and (not symlink) ; x bits don't mean a thing for symlinks | |
2622 (string-match "[xst]" | |
2623 (concat | |
2624 (buffer-substring | |
2625 (match-beginning 1) | |
2626 (match-end 1)) | |
2627 (buffer-substring | |
2628 (match-beginning 2) | |
2629 (match-end 2)) | |
2630 (buffer-substring | |
2631 (match-beginning 3) | |
2632 (match-end 3))))))) | |
2633 ;; Some ls's with the F switch mark symlinks with an @ (ULTRIX) | |
2634 ;; and others don't. (sigh...) Beware, that some Unix's don't | |
2635 ;; seem to believe in the F-switch | |
2636 (if (or (and symlink (string-match "@$" file)) | |
2637 (and directory (string-match "/$" file)) | |
2638 (and executable (string-match "*$" file)) | |
2639 (and socket (string-match "=$" file))) | |
2640 (setq file (substring file 0 -1))))) | |
2641 (ange-ftp-put-hash-entry file (or symlink directory) tbl) | |
2642 (forward-line 1)) | |
2643 (ange-ftp-put-hash-entry "." t tbl) | |
2644 (ange-ftp-put-hash-entry ".." t tbl) | |
2645 tbl))) | |
2646 | |
2647 ;;; The dl stuff for descriptive listings | |
2648 | |
2649 (defvar ange-ftp-dl-dir-regexp nil | |
7042 | 2650 "Regexp matching directories which are listed in dl format. |
2651 This regexp should not be anchored with a trailing `$', because it should | |
2652 match subdirectories as well.") | |
1106 | 2653 |
2654 (defun ange-ftp-add-dl-dir (dir) | |
1233 | 2655 "Interactively adds a DIR to ange-ftp-dl-dir-regexp." |
1106 | 2656 (interactive |
2657 (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
|
2658 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2659 (and name (ange-ftp-ftp-name name) |
1106 | 2660 (file-name-directory name)))))) |
2661 (if (not (and ange-ftp-dl-dir-regexp | |
2662 (string-match ange-ftp-dl-dir-regexp dir))) | |
2663 (setq ange-ftp-dl-dir-regexp | |
2664 (concat "^" (regexp-quote dir) | |
2665 (and ange-ftp-dl-dir-regexp "\\|") | |
2666 ange-ftp-dl-dir-regexp)))) | |
2667 | |
2668 (defmacro ange-ftp-dl-parser () | |
2669 ;; Parse the current buffer, which is assumed to be a descriptive | |
2670 ;; listing, and return a hashtable. | |
2671 (` (let ((tbl (ange-ftp-make-hashtable))) | |
2672 (while (not (eobp)) | |
2673 (ange-ftp-put-hash-entry | |
2674 (buffer-substring (point) | |
2675 (progn | |
2676 (skip-chars-forward "^ /\n") | |
2677 (point))) | |
2678 (eq (following-char) ?/) | |
2679 tbl) | |
2680 (forward-line 1)) | |
2681 (ange-ftp-put-hash-entry "." t tbl) | |
2682 (ange-ftp-put-hash-entry ".." t tbl) | |
2683 tbl))) | |
2684 | |
7042 | 2685 ;; Parse the current buffer which is assumed to be in a dired-like listing |
2686 ;; format, and return a hashtable as the result. If the listing is not really | |
2687 ;; a listing, then return nil. | |
2688 | |
1106 | 2689 (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
|
2690 (save-match-data |
1106 | 2691 (cond |
2692 ((looking-at "^total [0-9]+$") | |
2693 (forward-line 1) | |
5067
4854aff5c5b3
(ange-ftp-parse-dired-listing): Skip extra blank line
Richard M. Stallman <rms@gnu.org>
parents:
4912
diff
changeset
|
2694 ;; 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
|
2695 (if (eolp) (forward-line 1)) |
1106 | 2696 (ange-ftp-ls-parser)) |
2697 ((looking-at "[^\n]+\\( not found\\|: Not a directory\\)\n\\'") | |
2698 ;; It's an ls error message. | |
2699 nil) | |
2700 ((eobp) ; i.e. (zerop (buffer-size)) | |
2701 ;; This could be one of: | |
2702 ;; (1) An Ultrix ls error message | |
2703 ;; (2) A listing with the A switch of an empty directory | |
2704 ;; on a machine which doesn't give a total line. | |
2705 ;; (3) The twilight zone. | |
2706 ;; We'll assume (1) for now. | |
2707 nil) | |
2708 ((re-search-forward ange-ftp-date-regexp nil t) | |
2709 (beginning-of-line) | |
2710 (ange-ftp-ls-parser)) | |
2711 ((re-search-forward "^[^ \n\t]+ +\\([0-9]+\\|-\\|=\\) " nil t) | |
2712 ;; It's a dl listing (I hope). | |
2713 ;; file is bound by the call to ange-ftp-ls | |
2714 (ange-ftp-add-dl-dir ange-ftp-this-file) | |
2715 (beginning-of-line) | |
2716 (ange-ftp-dl-parser)) | |
2717 (t nil)))) | |
2718 | |
2719 (defun ange-ftp-set-files (directory files) | |
2720 "For a given DIRECTORY, set or change the associated FILES hashtable." | |
2721 (and files (ange-ftp-put-hash-entry (file-name-as-directory directory) | |
2722 files ange-ftp-files-hashtable))) | |
2723 | |
2724 (defun ange-ftp-get-files (directory &optional no-error) | |
2725 "Given a given DIRECTORY, return a hashtable of file entries. | |
2726 This will give an error or return nil, depending on the value of | |
2727 NO-ERROR, if a listing for DIRECTORY cannot be obtained." | |
2728 (setq directory (file-name-as-directory directory)) ;normalize | |
2729 (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
|
2730 (save-match-data |
1106 | 2731 (and (ange-ftp-ls directory |
2732 ;; This is an efficiency hack. We try to | |
2733 ;; anticipate what sort of listing dired | |
2734 ;; might want, and cache just such a listing. | |
2735 (if (and (boundp 'dired-actual-switches) | |
2736 (stringp dired-actual-switches) | |
2737 ;; We allow the A switch, which lists | |
2738 ;; all files except "." and "..". | |
2739 ;; This is OK because we manually | |
2740 ;; insert these entries | |
2741 ;; in the hash table. | |
2742 (string-match | |
2743 "[aA]" dired-actual-switches) | |
2744 (string-match | |
2745 "l" dired-actual-switches) | |
2746 (not (string-match | |
2747 "R" dired-actual-switches))) | |
2748 dired-actual-switches | |
2749 (if (and (boundp 'dired-listing-switches) | |
2750 (stringp dired-listing-switches) | |
2751 (string-match | |
2752 "[aA]" dired-listing-switches) | |
2753 (string-match | |
2754 "l" dired-listing-switches) | |
2755 (not (string-match | |
2756 "R" dired-listing-switches))) | |
2757 dired-listing-switches | |
2758 "-al")) | |
2759 t no-error) | |
2760 (ange-ftp-get-hash-entry | |
2761 directory ange-ftp-files-hashtable))))) | |
2762 | |
7042 | 2763 ;; Given NAME, return the file part that can be used for looking up the |
2764 ;; file's entry in a hashtable. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2765 (defmacro ange-ftp-get-file-part (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2766 (` (let ((file (file-name-nondirectory (, name)))) |
1106 | 2767 (if (string-equal file "") |
2768 "." | |
2769 file)))) | |
2770 | |
7042 | 2771 ;; Return whether ange-ftp-file-entry-p and ange-ftp-get-file-entry are |
2772 ;; allowed to determine if NAME is a sub-directory by listing it directly, | |
2773 ;; rather than listing its parent directory. This is used for efficiency so | |
2774 ;; that a wasted listing is not done: | |
2775 ;; 1. When looking for a .dired file in dired-x.el. | |
2776 ;; 2. The syntax of FILE and DIR make it impossible that FILE could be a valid | |
2777 ;; subdirectory. This is of course an OS dependent judgement. | |
2778 | |
1106 | 2779 (defmacro ange-ftp-allow-child-lookup (dir file) |
2780 (` (not | |
2781 (let* ((efile (, file)) ; expand once. | |
2782 (edir (, dir)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2783 (parsed (ange-ftp-ftp-name edir)) |
1106 | 2784 (host-type (ange-ftp-host-type |
2785 (car parsed)))) | |
2786 (or | |
23119 | 2787 ;; Deal with dired |
2788 (and (boundp 'dired-local-variables-file) ; in the dired-x package | |
2789 (stringp dired-local-variables-file) | |
2790 (string-equal dired-local-variables-file efile)) | |
1106 | 2791 ;; No dots in dir names in vms. |
2792 (and (eq host-type 'vms) | |
2793 (string-match "\\." efile)) | |
2794 ;; No subdirs in mts of cms. | |
2795 (and (memq host-type '(mts cms)) | |
2796 (not (string-equal "/" (nth 2 parsed))))))))) | |
2797 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2798 (defun ange-ftp-file-entry-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2799 "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
|
2800 (let* ((name (directory-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2801 (dir (file-name-directory name)) |
1106 | 2802 (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
|
2803 (file (ange-ftp-get-file-part name))) |
1106 | 2804 (if ent |
2805 (ange-ftp-hash-entry-exists-p file ent) | |
2806 (or (and (ange-ftp-allow-child-lookup dir file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2807 (setq ent (ange-ftp-get-files name t)) |
1106 | 2808 ;; Try a child lookup. i.e. try to list file as a |
2809 ;; subdirectory of dir. This is a good idea because | |
2810 ;; we may not have read permission for file's parent. Also, | |
2811 ;; people tend to work down directory trees anyway. We use | |
2812 ;; no-error ;; because if file does not exist as a subdir., | |
2813 ;; then dumb hosts will give an ftp error. Smart unix hosts | |
2814 ;; will simply send back the ls | |
2815 ;; error message. | |
2816 (ange-ftp-get-hash-entry "." ent)) | |
17584
53a369ac3d2c
(ange-ftp-file-entry-p): If ange-ftp-get-files returns
Richard M. Stallman <rms@gnu.org>
parents:
16933
diff
changeset
|
2817 ;; Child lookup failed, so try the parent. |
53a369ac3d2c
(ange-ftp-file-entry-p): If ange-ftp-get-files returns
Richard M. Stallman <rms@gnu.org>
parents:
16933
diff
changeset
|
2818 (let ((table (ange-ftp-get-files dir))) |
53a369ac3d2c
(ange-ftp-file-entry-p): If ange-ftp-get-files returns
Richard M. Stallman <rms@gnu.org>
parents:
16933
diff
changeset
|
2819 ;; If the dir doesn't exist, don't use it as a hash table. |
53a369ac3d2c
(ange-ftp-file-entry-p): If ange-ftp-get-files returns
Richard M. Stallman <rms@gnu.org>
parents:
16933
diff
changeset
|
2820 (and table |
53a369ac3d2c
(ange-ftp-file-entry-p): If ange-ftp-get-files returns
Richard M. Stallman <rms@gnu.org>
parents:
16933
diff
changeset
|
2821 (ange-ftp-hash-entry-exists-p file |
53a369ac3d2c
(ange-ftp-file-entry-p): If ange-ftp-get-files returns
Richard M. Stallman <rms@gnu.org>
parents:
16933
diff
changeset
|
2822 table))))))) |
1106 | 2823 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2824 (defun ange-ftp-get-file-entry (name) |
1233 | 2825 "Given NAME, return the given file entry. |
2826 The entry will be either t for a directory, nil for a normal file, | |
2827 or a string for a symlink. If the file isn't in the hashtable, | |
2828 this also returns nil." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2829 (let* ((name (directory-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2830 (dir (file-name-directory name)) |
1106 | 2831 (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
|
2832 (file (ange-ftp-get-file-part name))) |
1106 | 2833 (if ent |
2834 (ange-ftp-get-hash-entry file ent) | |
2835 (or (and (ange-ftp-allow-child-lookup dir file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2836 (setq ent (ange-ftp-get-files name t)) |
1106 | 2837 (ange-ftp-get-hash-entry "." ent)) |
2838 ;; i.e. it's a directory by child lookup | |
2839 (ange-ftp-get-hash-entry file | |
2840 (ange-ftp-get-files dir)))))) | |
2841 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2842 (defun ange-ftp-internal-delete-file-entry (name &optional dir-p) |
1106 | 2843 (if dir-p |
2844 (progn | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2845 (setq name (file-name-as-directory name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2846 (ange-ftp-del-hash-entry name ange-ftp-files-hashtable) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2847 (setq name (directory-file-name name)))) |
1106 | 2848 ;; Note that file-name-as-directory followed by directory-file-name |
2849 ;; serves to canonicalize directory file names to their unix form. | |
2850 ;; i.e. in VMS, FOO.DIR -> FOO/ -> FOO | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2851 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) |
1106 | 2852 ange-ftp-files-hashtable))) |
2853 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2854 (ange-ftp-del-hash-entry (ange-ftp-get-file-part name) |
1106 | 2855 files)))) |
2856 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2857 (defun ange-ftp-internal-add-file-entry (name &optional dir-p) |
1106 | 2858 (and dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2859 (setq name (directory-file-name name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2860 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) |
1106 | 2861 ange-ftp-files-hashtable))) |
2862 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2863 (ange-ftp-put-hash-entry (ange-ftp-get-file-part name) |
1106 | 2864 dir-p |
2865 files)))) | |
2866 | |
2867 (defun ange-ftp-wipe-file-entries (host user) | |
7042 | 2868 "Get rid of entry for HOST, USER pair from file entry information hashtable." |
1106 | 2869 (let ((new-tbl (ange-ftp-make-hashtable (length ange-ftp-files-hashtable)))) |
2870 (ange-ftp-map-hashtable | |
2871 (function | |
2872 (lambda (key val) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2873 (let ((parsed (ange-ftp-ftp-name key))) |
1106 | 2874 (if parsed |
2875 (let ((h (nth 0 parsed)) | |
2876 (u (nth 1 parsed))) | |
2877 (or (and (equal host h) (equal user u)) | |
2878 (ange-ftp-put-hash-entry key val new-tbl))))))) | |
2879 ange-ftp-files-hashtable) | |
2880 (setq ange-ftp-files-hashtable new-tbl))) | |
2881 | |
2882 ;;;; ------------------------------------------------------------ | |
2883 ;;;; File transfer mode support. | |
2884 ;;;; ------------------------------------------------------------ | |
2885 | |
2886 (defun ange-ftp-set-binary-mode (host user) | |
2887 "Tell the ftp process for the given HOST & USER to switch to binary mode." | |
2888 (let ((result (ange-ftp-send-cmd host user '(type "binary")))) | |
2889 (if (not (car result)) | |
2890 (ange-ftp-error host user (concat "BINARY failed: " (cdr result))) | |
2891 (save-excursion | |
2892 (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
|
2893 (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
|
2894 (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
|
2895 (ash ange-ftp-binary-hash-mark-size -4))))))) |
1106 | 2896 |
2897 (defun ange-ftp-set-ascii-mode (host user) | |
2898 "Tell the ftp process for the given HOST & USER to switch to ascii mode." | |
2899 (let ((result (ange-ftp-send-cmd host user '(type "ascii")))) | |
2900 (if (not (car result)) | |
2901 (ange-ftp-error host user (concat "ASCII failed: " (cdr result))) | |
2902 (save-excursion | |
2903 (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
|
2904 (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
|
2905 (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
|
2906 (ash ange-ftp-ascii-hash-mark-size -4))))))) |
1106 | 2907 |
2908 (defun ange-ftp-cd (host user dir) | |
2909 (let ((result (ange-ftp-send-cmd host user (list 'cd dir) "Doing CD"))) | |
2910 (or (car result) | |
2911 (ange-ftp-error host user (concat "CD failed: " (cdr result)))))) | |
2912 | |
2913 (defun ange-ftp-get-pwd (host user) | |
2914 "Attempts to get the current working directory for the given HOST/USER pair. | |
18956 | 2915 Returns \( DIR . LINE \) where DIR is either the directory or nil if not found, |
1106 | 2916 and LINE is the relevant success or fail line from the FTP-client." |
2917 (let* ((result (ange-ftp-send-cmd host user '(pwd) "Getting PWD")) | |
2918 (line (cdr result)) | |
2919 dir) | |
2920 (if (car result) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2921 (save-match-data |
1106 | 2922 (and (or (string-match "\"\\([^\"]*\\)\"" line) |
2923 (string-match " \\([^ ]+\\) " line)) ; stone-age VMS servers! | |
2924 (setq dir (substring line | |
2925 (match-beginning 1) | |
2926 (match-end 1)))))) | |
2927 (cons dir line))) | |
2928 | |
2929 ;;; ------------------------------------------------------------ | |
2930 ;;; expand-file-name and friends...which currently don't work | |
2931 ;;; ------------------------------------------------------------ | |
2932 | |
2933 (defun ange-ftp-expand-dir (host user dir) | |
7042 | 2934 "Return the result of doing a PWD in the current FTP session. |
2935 Use the connection to machine HOST | |
1106 | 2936 logged in as user USER and cd'd to directory DIR." |
2937 (let* ((host-type (ange-ftp-host-type host user)) | |
2938 ;; It is more efficient to call ange-ftp-host-type | |
2939 ;; before binding res, because ange-ftp-host-type sometimes | |
2940 ;; adds to the info in the expand-dir-hashtable. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2941 (fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2942 (cdr (assq host-type ange-ftp-fix-name-func-alist))) |
1106 | 2943 (key (concat host "/" user "/" dir)) |
2944 (res (ange-ftp-get-hash-entry key ange-ftp-expand-dir-hashtable))) | |
2945 (or res | |
2946 (progn | |
2947 (or | |
2948 (string-equal user "anonymous") | |
2949 (string-equal user "ftp") | |
2950 (not (eq host-type 'unix)) | |
2951 (let* ((ange-ftp-good-msgs (concat ange-ftp-expand-dir-regexp | |
2952 "\\|" | |
2953 ange-ftp-good-msgs)) | |
2954 (result (ange-ftp-send-cmd host user | |
22406
d893285c4d8a
(ange-ftp-expand-dir): Use null-device.
Richard M. Stallman <rms@gnu.org>
parents:
22401
diff
changeset
|
2955 (list 'get dir null-device) |
1106 | 2956 (format "expanding %s" dir))) |
2957 (line (cdr result))) | |
2958 (setq res | |
2959 (if (string-match ange-ftp-expand-dir-regexp line) | |
2960 (substring line | |
2961 (match-beginning 1) | |
2962 (match-end 1)))))) | |
2963 (or res | |
2964 (if (string-equal dir "~") | |
2965 (setq res (car (ange-ftp-get-pwd host user))) | |
2966 (let ((home (ange-ftp-expand-dir host user "~"))) | |
2967 (unwind-protect | |
2968 (and (ange-ftp-cd host user dir) | |
2969 (setq res (car (ange-ftp-get-pwd host user)))) | |
2970 (ange-ftp-cd host user home))))) | |
2971 (if res | |
2972 (let ((ange-ftp-this-user user) | |
2973 (ange-ftp-this-host host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2974 (if fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2975 (setq res (funcall fix-name-func res 'reverse))) |
1106 | 2976 (ange-ftp-put-hash-entry |
2977 key res ange-ftp-expand-dir-hashtable))) | |
2978 res)))) | |
2979 | |
2980 (defun ange-ftp-canonize-filename (n) | |
2981 "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
|
2982 (if (string-match "[^:]+//" n) ;don't upset Apollo users |
1106 | 2983 (setq n (substring n (1- (match-end 0))))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2984 (let ((parsed (ange-ftp-ftp-name n))) |
1106 | 2985 (if parsed |
2986 (let ((host (car parsed)) | |
2987 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2988 (name (nth 2 parsed))) |
1106 | 2989 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2990 ;; 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
|
2991 ;; replace the name component of the overall name. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2992 (cond ((string-match "^/" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2993 name) |
1106 | 2994 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2995 ;; Name starts with ~ or ~user. Resolve that part of the name |
1106 | 2996 ;; making it absolute then re-expand it. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2997 ((string-match "^~[^/]*" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2998 (let* ((tilda (substring name |
1106 | 2999 (match-beginning 0) |
3000 (match-end 0))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3001 (rest (substring name (match-end 0))) |
1106 | 3002 (dir (ange-ftp-expand-dir host user tilda))) |
3003 (if dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3004 (setq name (concat dir rest)) |
1106 | 3005 (error "User \"%s\" is not known" |
3006 (substring tilda 1))))) | |
3007 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3008 ;; relative name. Tack on homedir and re-expand. |
1106 | 3009 (t |
3010 (let ((dir (ange-ftp-expand-dir host user "~"))) | |
3011 (if dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3012 (setq name (concat |
1106 | 3013 (ange-ftp-real-file-name-as-directory dir) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3014 name)) |
1106 | 3015 (error "Unable to obtain CWD"))))) |
3016 | |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
3017 ;; 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
|
3018 (if (not (string-match "^//" name)) |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
3019 (progn |
23570
e782dce34a19
(ange-ftp-canonicalize-filename): Do not use a UNC
Geoff Voelker <voelker@cs.washington.edu>
parents:
23483
diff
changeset
|
3020 (if (not (eq system-type 'windows-nt)) |
e782dce34a19
(ange-ftp-canonicalize-filename): Do not use a UNC
Geoff Voelker <voelker@cs.washington.edu>
parents:
23483
diff
changeset
|
3021 (setq name (ange-ftp-real-expand-file-name name)) |
e782dce34a19
(ange-ftp-canonicalize-filename): Do not use a UNC
Geoff Voelker <voelker@cs.washington.edu>
parents:
23483
diff
changeset
|
3022 ;; Windows UNC default dirs do not make sense for ftp. |
e782dce34a19
(ange-ftp-canonicalize-filename): Do not use a UNC
Geoff Voelker <voelker@cs.washington.edu>
parents:
23483
diff
changeset
|
3023 (if (string-match "^//" default-directory) |
e782dce34a19
(ange-ftp-canonicalize-filename): Do not use a UNC
Geoff Voelker <voelker@cs.washington.edu>
parents:
23483
diff
changeset
|
3024 (setq name (ange-ftp-real-expand-file-name name "c:/")) |
e782dce34a19
(ange-ftp-canonicalize-filename): Do not use a UNC
Geoff Voelker <voelker@cs.washington.edu>
parents:
23483
diff
changeset
|
3025 (setq name (ange-ftp-real-expand-file-name name))) |
e782dce34a19
(ange-ftp-canonicalize-filename): Do not use a UNC
Geoff Voelker <voelker@cs.washington.edu>
parents:
23483
diff
changeset
|
3026 ;; Strip off possible drive specifier. |
e782dce34a19
(ange-ftp-canonicalize-filename): Do not use a UNC
Geoff Voelker <voelker@cs.washington.edu>
parents:
23483
diff
changeset
|
3027 (if (string-match "^[a-zA-Z]:" name) |
e782dce34a19
(ange-ftp-canonicalize-filename): Do not use a UNC
Geoff Voelker <voelker@cs.washington.edu>
parents:
23483
diff
changeset
|
3028 (setq name (substring name 2)))) |
7923
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
3029 (if (string-match "^//" name) |
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
3030 (setq name (substring name 1))))) |
1106 | 3031 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3032 ;; Now substitute the expanded name back into the overall filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3033 (ange-ftp-replace-name-component n name)) |
1106 | 3034 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3035 ;; non-ange-ftp name. Just expand normally. |
1106 | 3036 (if (eq (string-to-char n) ?/) |
3037 (ange-ftp-real-expand-file-name n) | |
3038 (ange-ftp-real-expand-file-name | |
3039 (ange-ftp-real-file-name-nondirectory n) | |
3040 (ange-ftp-real-file-name-directory n)))))) | |
3041 | |
3042 (defun ange-ftp-expand-file-name (name &optional default) | |
3043 "Documented as original." | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
3044 (save-match-data |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3045 (setq default (or default default-directory)) |
1106 | 3046 (cond ((eq (string-to-char name) ?~) |
3047 (ange-ftp-real-expand-file-name name)) | |
3048 ((eq (string-to-char name) ?/) | |
3049 (ange-ftp-canonize-filename name)) | |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3050 ((and (eq system-type 'windows-nt) |
23840
4a967683f653
(ange-ftp-expand-file-name) [windows-nt]: Handle
Geoff Voelker <voelker@cs.washington.edu>
parents:
23570
diff
changeset
|
3051 (eq (string-to-char name) ?\\)) |
4a967683f653
(ange-ftp-expand-file-name) [windows-nt]: Handle
Geoff Voelker <voelker@cs.washington.edu>
parents:
23570
diff
changeset
|
3052 (ange-ftp-canonize-filename name)) |
4a967683f653
(ange-ftp-expand-file-name) [windows-nt]: Handle
Geoff Voelker <voelker@cs.washington.edu>
parents:
23570
diff
changeset
|
3053 ((and (eq system-type 'windows-nt) |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3054 (or (string-match "^[a-zA-Z]:" name) |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3055 (string-match "^[a-zA-Z]:" default))) |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3056 (ange-ftp-real-expand-file-name name default)) |
1106 | 3057 ((zerop (length name)) |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3058 (ange-ftp-canonize-filename default)) |
1106 | 3059 ((ange-ftp-canonize-filename |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3060 (concat (file-name-as-directory default) name)))))) |
1106 | 3061 |
3062 ;;; These are problems--they are currently not enabled. | |
3063 | |
3064 (defvar ange-ftp-file-name-as-directory-alist nil | |
7042 | 3065 "Association list of \( TYPE \. FUNC \) pairs. |
1106 | 3066 FUNC converts a filename to a directory name for the operating |
3067 system TYPE.") | |
3068 | |
3069 (defun ange-ftp-file-name-as-directory (name) | |
3070 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3071 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 3072 (if parsed |
3073 (if (string-equal (nth 2 parsed) "") | |
3074 name | |
3075 (funcall (or (cdr (assq | |
3076 (ange-ftp-host-type (car parsed)) | |
3077 ange-ftp-file-name-as-directory-alist)) | |
3078 'ange-ftp-real-file-name-as-directory) | |
3079 name)) | |
3080 (ange-ftp-real-file-name-as-directory name)))) | |
3081 | |
3082 (defun ange-ftp-file-name-directory (name) | |
3083 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3084 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 3085 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3086 (let ((filename (nth 2 parsed))) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
3087 (if (save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3088 (string-match "^~[^/]*$" filename)) |
1106 | 3089 name |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3090 (ange-ftp-replace-name-component |
1106 | 3091 name |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3092 (ange-ftp-real-file-name-directory filename)))) |
1106 | 3093 (ange-ftp-real-file-name-directory name)))) |
3094 | |
3095 (defun ange-ftp-file-name-nondirectory (name) | |
3096 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3097 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 3098 (if parsed |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3099 (let ((filename (nth 2 parsed))) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
3100 (if (save-match-data |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3101 (string-match "^~[^/]*$" filename)) |
1106 | 3102 "" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3103 (ange-ftp-real-file-name-nondirectory name))) |
1106 | 3104 (ange-ftp-real-file-name-nondirectory name)))) |
3105 | |
3106 (defun ange-ftp-directory-file-name (dir) | |
3107 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3108 (let ((parsed (ange-ftp-ftp-name dir))) |
1106 | 3109 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3110 (ange-ftp-replace-name-component |
1106 | 3111 dir |
3112 (ange-ftp-real-directory-file-name (nth 2 parsed))) | |
3113 (ange-ftp-real-directory-file-name dir)))) | |
3114 | |
3115 | |
3116 ;;; Hooks that handle Emacs primitives. | |
3117 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3118 ;; Returns non-nil if should transfer FILE in binary mode. |
1106 | 3119 (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
|
3120 (save-match-data |
1106 | 3121 (string-match ange-ftp-binary-file-name-regexp file))) |
3122 | |
3123 (defun ange-ftp-write-region (start end filename &optional append visit) | |
3124 (setq filename (expand-file-name filename)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3125 (let ((parsed (ange-ftp-ftp-name filename))) |
1106 | 3126 (if parsed |
3127 (let* ((host (nth 0 parsed)) | |
3128 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3129 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 3130 (temp (ange-ftp-make-tmp-name host)) |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
3131 ;; What we REALLY need here is a way to determine if the mode |
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
3132 ;; of the transfer is irrelevant, i.e. we can use binary mode |
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
3133 ;; regardless. Maybe a system-type to host-type lookup? |
10748
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3134 (binary (or (ange-ftp-binary-file filename) |
23231
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
3135 (memq (ange-ftp-host-type host user) |
01c23b1e1c32
(ange-ftp-write-region): For `dumb-unix' host,
Karl Heuer <kwzh@gnu.org>
parents:
23119
diff
changeset
|
3136 '(unix dumb-unix)))) |
1106 | 3137 (cmd (if append 'append 'put)) |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3138 (abbr (ange-ftp-abbreviate-filename filename)) |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3139 ;; we need to reset `last-coding-system-used' to its |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3140 ;; value immediately after calling the real write-region, |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3141 ;; so that `basic-save-buffer' doesn't see whatever value |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3142 ;; might be used when communicating with the ftp process. |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3143 (coding-system-used last-coding-system-used)) |
1106 | 3144 (unwind-protect |
3145 (progn | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
3146 (let ((executing-kbd-macro t) |
1106 | 3147 (filename (buffer-file-name)) |
3148 (mod-p (buffer-modified-p))) | |
3149 (unwind-protect | |
3150 (ange-ftp-real-write-region start end temp nil visit) | |
3151 ;; cleanup forms | |
3152 (setq buffer-file-name filename) | |
3153 (set-buffer-modified-p mod-p))) | |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3154 ;; save value used by the real write-region |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3155 (setq coding-system-used last-coding-system-used) |
1106 | 3156 (if binary |
3157 (ange-ftp-set-binary-mode host user)) | |
3158 | |
3159 ;; tell the process filter what size the transfer will be. | |
3160 (let ((attr (file-attributes temp))) | |
3161 (if attr | |
3162 (ange-ftp-set-xfer-size host user (nth 7 attr)))) | |
3163 | |
3164 ;; put or append the file. | |
3165 (let ((result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3166 (list cmd temp name) |
1106 | 3167 (format "Writing %s" abbr)))) |
3168 (or (car result) | |
3169 (signal 'ftp-error | |
3170 (list | |
3171 "Opening output file" | |
3172 (format "FTP Error: \"%s\"" (cdr result)) | |
3173 filename))))) | |
3174 (ange-ftp-del-tmp-name temp) | |
3175 (if binary | |
3176 (ange-ftp-set-ascii-mode host user))) | |
3177 (if (eq visit t) | |
3178 (progn | |
5350
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
3179 (set-visited-file-modtime '(0 0)) |
1106 | 3180 (ange-ftp-set-buffer-mode) |
3181 (setq buffer-file-name filename) | |
3182 (set-buffer-modified-p nil))) | |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3183 ;; ensure `last-coding-system-used' has an appropriate value |
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
3184 (setq last-coding-system-used coding-system-used) |
1106 | 3185 (ange-ftp-message "Wrote %s" abbr) |
3186 (ange-ftp-add-file-entry filename)) | |
3187 (ange-ftp-real-write-region start end filename append visit)))) | |
3188 | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3189 (defun ange-ftp-insert-file-contents (filename &optional visit beg end replace) |
1106 | 3190 (barf-if-buffer-read-only) |
3191 (setq filename (expand-file-name filename)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3192 (let ((parsed (ange-ftp-ftp-name filename))) |
1106 | 3193 (if parsed |
3194 (progn | |
3195 (if visit | |
3196 (setq buffer-file-name filename)) | |
3197 (if (or (file-exists-p filename) | |
3198 (progn | |
3199 (setq ange-ftp-ls-cache-file nil) | |
3200 (ange-ftp-del-hash-entry (file-name-directory filename) | |
3201 ange-ftp-files-hashtable) | |
3202 (file-exists-p filename))) | |
3203 (let* ((host (nth 0 parsed)) | |
3204 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3205 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 3206 (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
|
3207 (binary (or (ange-ftp-binary-file filename) |
23246
3741d2ab743a
(ange-ftp-insert-file-contents):
Karl Heuer <kwzh@gnu.org>
parents:
23231
diff
changeset
|
3208 (memq (ange-ftp-host-type host user) |
3741d2ab743a
(ange-ftp-insert-file-contents):
Karl Heuer <kwzh@gnu.org>
parents:
23231
diff
changeset
|
3209 '(unix dumb-unix)))) |
1106 | 3210 (abbr (ange-ftp-abbreviate-filename filename)) |
3211 size) | |
3212 (unwind-protect | |
3213 (progn | |
3214 (if binary | |
3215 (ange-ftp-set-binary-mode host user)) | |
3216 (let ((result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3217 (list 'get name temp) |
1106 | 3218 (format "Retrieving %s" abbr)))) |
3219 (or (car result) | |
3220 (signal 'ftp-error | |
3221 (list | |
3222 "Opening input file" | |
3223 (format "FTP Error: \"%s\"" (cdr result)) | |
3224 filename)))) | |
3225 (if (or (ange-ftp-real-file-readable-p temp) | |
3226 (sleep-for ange-ftp-retry-time) | |
3227 ;; Wait for file to hopefully appear. | |
3228 (ange-ftp-real-file-readable-p temp)) | |
3229 (setq | |
3230 size | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3231 (nth 1 (ange-ftp-real-insert-file-contents |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
3232 temp visit beg end replace)) |
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
3233 ;; override autodetection of buffer file type |
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
3234 ;; to ensure buffer is saved in DOS format |
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
3235 buffer-file-type binary) |
1106 | 3236 (signal 'ftp-error |
3237 (list | |
3238 "Opening input file:" | |
3239 (format | |
3240 "FTP Error: %s not arrived or readable" | |
3241 filename))))) | |
3242 (if binary | |
3243 (ange-ftp-set-ascii-mode host user)) | |
3244 (ange-ftp-del-tmp-name temp)) | |
3245 (if visit | |
5350
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
3246 (progn |
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
3247 (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
|
3248 (setq buffer-file-name filename))) |
1106 | 3249 (list filename size)) |
3250 (signal 'file-error | |
3251 (list | |
3252 "Opening input file" | |
3253 filename)))) | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3254 (ange-ftp-real-insert-file-contents filename visit beg end replace)))) |
1106 | 3255 |
3256 (defun ange-ftp-expand-symlink (file dir) | |
3257 (if (file-name-absolute-p file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3258 (ange-ftp-replace-name-component dir file) |
1106 | 3259 (expand-file-name file dir))) |
3260 | |
3261 (defun ange-ftp-file-symlink-p (file) | |
3262 ;; call ange-ftp-expand-file-name rather than the normal | |
3263 ;; expand-file-name to stop loops when using a package that | |
3264 ;; redefines both file-symlink-p and expand-file-name. | |
3265 (setq file (ange-ftp-expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3266 (if (ange-ftp-ftp-name file) |
1106 | 3267 (let ((file-ent |
3268 (ange-ftp-get-hash-entry | |
3269 (ange-ftp-get-file-part file) | |
3270 (ange-ftp-get-files (file-name-directory file))))) | |
3271 (if (stringp file-ent) | |
3272 (if (file-name-absolute-p file-ent) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3273 (ange-ftp-replace-name-component |
1106 | 3274 (file-name-directory file) file-ent) |
3275 file-ent))) | |
3276 (ange-ftp-real-file-symlink-p file))) | |
3277 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3278 (defun ange-ftp-file-exists-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3279 (setq name (expand-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3280 (if (ange-ftp-ftp-name name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3281 (if (ange-ftp-file-entry-p name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3282 (let ((file-ent (ange-ftp-get-file-entry name))) |
1106 | 3283 (if (stringp file-ent) |
3284 (file-exists-p | |
3285 (ange-ftp-expand-symlink file-ent | |
3286 (file-name-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3287 (directory-file-name name)))) |
1106 | 3288 t))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3289 (ange-ftp-real-file-exists-p name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3290 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3291 (defun ange-ftp-file-directory-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3292 (setq name (expand-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3293 (if (ange-ftp-ftp-name name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3294 ;; We do a file-name-as-directory on name here because some |
1106 | 3295 ;; machines (VMS) use a .DIR to indicate the filename associated |
3296 ;; with a directory. This needs to be canonicalized. | |
3297 (let ((file-ent (ange-ftp-get-file-entry | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3298 (ange-ftp-file-name-as-directory name)))) |
1106 | 3299 (if (stringp file-ent) |
3300 (file-directory-p | |
3301 (ange-ftp-expand-symlink file-ent | |
3302 (file-name-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3303 (directory-file-name name)))) |
1106 | 3304 file-ent)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3305 (ange-ftp-real-file-directory-p name))) |
1106 | 3306 |
3307 (defun ange-ftp-directory-files (directory &optional full match | |
3308 &rest v19-args) | |
3309 (setq directory (expand-file-name directory)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3310 (if (ange-ftp-ftp-name directory) |
1106 | 3311 (progn |
3312 (ange-ftp-barf-if-not-directory directory) | |
3313 (let ((tail (ange-ftp-hash-table-keys | |
3314 (ange-ftp-get-files directory))) | |
3315 files f) | |
3316 (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
|
3317 (save-match-data |
1106 | 3318 (while tail |
3319 (setq f (car tail) | |
3320 tail (cdr tail)) | |
3321 (if (or (not match) (string-match match f)) | |
3322 (setq files | |
3323 (cons (if full (concat directory f) f) files))))) | |
3324 (nreverse files))) | |
3325 (apply 'ange-ftp-real-directory-files directory full match v19-args))) | |
3326 | |
3327 (defun ange-ftp-file-attributes (file) | |
3328 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3329 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3330 (if parsed |
3331 (let ((part (ange-ftp-get-file-part file)) | |
3332 (files (ange-ftp-get-files (file-name-directory file)))) | |
3333 (if (ange-ftp-hash-entry-exists-p part files) | |
3334 (let ((host (nth 0 parsed)) | |
3335 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3336 (name (nth 2 parsed)) |
20656
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
3337 (dirp (ange-ftp-get-hash-entry part files)) |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
3338 (inode (ange-ftp-get-hash-entry |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
3339 file ange-ftp-inodes-hashtable))) |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
3340 (unless inode |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
3341 (setq inode ange-ftp-next-inode-number |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
3342 ange-ftp-next-inode-number (1+ inode)) |
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
3343 (ange-ftp-put-hash-entry file inode ange-ftp-inodes-hashtable)) |
1106 | 3344 (list (if (and (stringp dirp) (file-name-absolute-p dirp)) |
3345 (ange-ftp-expand-symlink dirp | |
3346 (file-name-directory file)) | |
3347 dirp) ;0 file type | |
3348 -1 ;1 link count | |
3349 -1 ;2 uid | |
3350 -1 ;3 gid | |
3351 '(0 0) ;4 atime | |
3352 '(0 0) ;5 mtime | |
3353 '(0 0) ;6 ctime | |
3354 -1 ;7 size | |
3355 (concat (if (stringp dirp) "l" (if dirp "d" "-")) | |
3356 "?????????") ;8 mode | |
3357 nil ;9 gid weird | |
20656
0600cc938c98
(ange-ftp-inodes-hashtable): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
20453
diff
changeset
|
3358 inode ;10 "inode number". |
1106 | 3359 -1 ;11 device number [v19 only] |
3360 )))) | |
3361 (ange-ftp-real-file-attributes file)))) | |
3362 | |
3363 (defun ange-ftp-file-writable-p (file) | |
3364 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3365 (if (ange-ftp-ftp-name file) |
1106 | 3366 (or (file-exists-p file) ;guess here for speed |
3367 (file-directory-p (file-name-directory file))) | |
3368 (ange-ftp-real-file-writable-p file))) | |
3369 | |
3370 (defun ange-ftp-file-readable-p (file) | |
3371 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3372 (if (ange-ftp-ftp-name file) |
1106 | 3373 (file-exists-p file) |
3374 (ange-ftp-real-file-readable-p file))) | |
3375 | |
4674
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3376 (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
|
3377 (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
|
3378 (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
|
3379 (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
|
3380 (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
|
3381 |
1106 | 3382 (defun ange-ftp-delete-file (file) |
3383 (interactive "fDelete file: ") | |
3384 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3385 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3386 (if parsed |
3387 (let* ((host (nth 0 parsed)) | |
3388 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3389 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 3390 (abbr (ange-ftp-abbreviate-filename file)) |
3391 (result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3392 (list 'delete name) |
1106 | 3393 (format "Deleting %s" abbr)))) |
3394 (or (car result) | |
3395 (signal 'ftp-error | |
3396 (list | |
3397 "Removing old name" | |
3398 (format "FTP Error: \"%s\"" (cdr result)) | |
3399 file))) | |
3400 (ange-ftp-delete-file-entry file)) | |
3401 (ange-ftp-real-delete-file file)))) | |
3402 | |
3403 (defun ange-ftp-verify-visited-file-modtime (buf) | |
3404 (let ((name (buffer-file-name buf))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3405 (if (and (stringp name) (ange-ftp-ftp-name name)) |
1106 | 3406 t |
3407 (ange-ftp-real-verify-visited-file-modtime buf)))) | |
3408 | |
3409 ;;;; ------------------------------------------------------------ | |
3410 ;;;; File copying support... totally re-written 6/24/92. | |
3411 ;;;; ------------------------------------------------------------ | |
3412 | |
3413 (defun ange-ftp-barf-or-query-if-file-exists (absname querystring interactive) | |
3414 (if (file-exists-p absname) | |
3415 (if (not interactive) | |
3416 (signal 'file-already-exists (list absname)) | |
3417 (if (not (yes-or-no-p (format "File %s already exists; %s anyway? " | |
3418 absname querystring))) | |
3419 (signal 'file-already-exists (list absname)))))) | |
3420 | |
3421 ;; async local copy commented out for now since I don't seem to get | |
3422 ;; the process sentinel called for some processes. | |
3423 ;; | |
3424 ;; (defun ange-ftp-copy-file-locally (filename newname ok-if-already-exists | |
3425 ;; keep-date cont) | |
3426 ;; "Kludge to copy a local file and call a continuation when the copy | |
3427 ;; finishes." | |
3428 ;; ;; check to see if we can overwrite | |
3429 ;; (if (or (not ok-if-already-exists) | |
3430 ;; (numberp ok-if-already-exists)) | |
3431 ;; (ange-ftp-barf-or-query-if-file-exists newname "copy to it" | |
3432 ;; (numberp ok-if-already-exists))) | |
3433 ;; (let ((proc (start-process " *copy*" | |
3434 ;; (generate-new-buffer "*copy*") | |
3435 ;; "cp" | |
3436 ;; filename | |
3437 ;; newname)) | |
3438 ;; res) | |
3439 ;; (set-process-sentinel proc (function ange-ftp-copy-file-locally-sentinel)) | |
3440 ;; (process-kill-without-query proc) | |
3441 ;; (save-excursion | |
3442 ;; (set-buffer (process-buffer proc)) | |
3443 ;; (make-variable-buffer-local 'copy-cont) | |
3444 ;; (setq copy-cont cont)))) | |
3445 ;; | |
3446 ;; (defun ange-ftp-copy-file-locally-sentinel (proc status) | |
3447 ;; (save-excursion | |
3448 ;; (set-buffer (process-buffer proc)) | |
3449 ;; (let ((cont copy-cont) | |
3450 ;; (result (buffer-string))) | |
3451 ;; (unwind-protect | |
3452 ;; (if (and (string-equal status "finished\n") | |
3453 ;; (zerop (length result))) | |
3454 ;; (ange-ftp-call-cont cont t nil) | |
3455 ;; (ange-ftp-call-cont cont | |
3456 ;; nil | |
3457 ;; (if (zerop (length result)) | |
3458 ;; (substring status 0 -1) | |
3459 ;; (substring result 0 -1)))) | |
3460 ;; (kill-buffer (current-buffer)))))) | |
3461 | |
3462 ;; 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
|
3463 ;; asynchronously if asked nicely. |
1106 | 3464 (defun ange-ftp-copy-file-internal (filename newname ok-if-already-exists |
3465 keep-date &optional msg cont nowait) | |
3466 (setq filename (expand-file-name filename) | |
3467 newname (expand-file-name newname)) | |
3468 | |
3469 ;; canonicalize newname if a directory. | |
3470 (if (file-directory-p newname) | |
3471 (setq newname (expand-file-name (file-name-nondirectory filename) newname))) | |
3472 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3473 (let ((f-parsed (ange-ftp-ftp-name filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3474 (t-parsed (ange-ftp-ftp-name newname))) |
1106 | 3475 |
3476 ;; local file to local file copy? | |
3477 (if (and (not f-parsed) (not t-parsed)) | |
3478 (progn | |
3479 (ange-ftp-real-copy-file filename newname ok-if-already-exists | |
3480 keep-date) | |
3481 (if cont | |
3482 (ange-ftp-call-cont cont t "Copied locally"))) | |
3483 ;; one or both files are remote. | |
3484 (let* ((f-host (and f-parsed (nth 0 f-parsed))) | |
3485 (f-user (and f-parsed (nth 1 f-parsed))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3486 (f-name (and f-parsed (ange-ftp-quote-string (nth 2 f-parsed)))) |
1106 | 3487 (f-abbr (ange-ftp-abbreviate-filename filename)) |
3488 (t-host (and t-parsed (nth 0 t-parsed))) | |
3489 (t-user (and t-parsed (nth 1 t-parsed))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3490 (t-name (and t-parsed (ange-ftp-quote-string (nth 2 t-parsed)))) |
1106 | 3491 (t-abbr (ange-ftp-abbreviate-filename newname filename)) |
3492 (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
|
3493 (ange-ftp-binary-file newname) |
23246
3741d2ab743a
(ange-ftp-insert-file-contents):
Karl Heuer <kwzh@gnu.org>
parents:
23231
diff
changeset
|
3494 (and (memq (ange-ftp-host-type f-host f-user) |
3741d2ab743a
(ange-ftp-insert-file-contents):
Karl Heuer <kwzh@gnu.org>
parents:
23231
diff
changeset
|
3495 '(unix dumb-unix)) |
3741d2ab743a
(ange-ftp-insert-file-contents):
Karl Heuer <kwzh@gnu.org>
parents:
23231
diff
changeset
|
3496 (memq (ange-ftp-host-type t-host t-user) |
3741d2ab743a
(ange-ftp-insert-file-contents):
Karl Heuer <kwzh@gnu.org>
parents:
23231
diff
changeset
|
3497 '(unix dumb-unix))))) |
1106 | 3498 temp1 |
3499 temp2) | |
3500 | |
3501 ;; check to see if we can overwrite | |
3502 (if (or (not ok-if-already-exists) | |
3503 (numberp ok-if-already-exists)) | |
3504 (ange-ftp-barf-or-query-if-file-exists newname "copy to it" | |
3505 (numberp ok-if-already-exists))) | |
3506 | |
3507 ;; do the copying. | |
3508 (if f-parsed | |
3509 | |
3510 ;; filename was remote. | |
3511 (progn | |
3512 (if (or (ange-ftp-use-gateway-p f-host) | |
3513 t-parsed) | |
3514 ;; have to use intermediate file if we are getting via | |
3515 ;; gateway machine or we are doing a remote to remote copy. | |
3516 (setq temp1 (ange-ftp-make-tmp-name f-host))) | |
3517 | |
3518 (if binary | |
3519 (ange-ftp-set-binary-mode f-host f-user)) | |
3520 | |
3521 (ange-ftp-send-cmd | |
3522 f-host | |
3523 f-user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3524 (list 'get f-name (or temp1 newname)) |
1106 | 3525 (or msg |
3526 (if (and temp1 t-parsed) | |
3527 (format "Getting %s" f-abbr) | |
3528 (format "Copying %s to %s" f-abbr t-abbr))) | |
3529 (list (function ange-ftp-cf1) | |
3530 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3531 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3532 t-parsed t-host t-user t-name t-abbr |
1106 | 3533 temp1 temp2 cont nowait) |
3534 nowait)) | |
3535 | |
3536 ;; filename wasn't remote. newname must be remote. call the | |
3537 ;; function which does the remainder of the copying work. | |
3538 (ange-ftp-cf1 t nil | |
3539 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3540 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3541 t-parsed t-host t-user t-name t-abbr |
1106 | 3542 nil nil cont nowait)))))) |
3543 | |
23483
abcdf0c8e98d
(ange-ftp-waiting-flag): defvar moved.
Richard M. Stallman <rms@gnu.org>
parents:
23464
diff
changeset
|
3544 (defvar ange-ftp-waiting-flag nil) |
abcdf0c8e98d
(ange-ftp-waiting-flag): defvar moved.
Richard M. Stallman <rms@gnu.org>
parents:
23464
diff
changeset
|
3545 |
1106 | 3546 ;; next part of copying routine. |
3547 (defun ange-ftp-cf1 (result line | |
3548 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3549 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3550 t-parsed t-host t-user t-name t-abbr |
1106 | 3551 temp1 temp2 cont nowait) |
3552 (if line | |
3553 ;; filename must have been remote, and we must have just done a GET. | |
3554 (unwind-protect | |
3555 (or result | |
3556 ;; GET failed for some reason. Clean up and get out. | |
3557 (progn | |
3558 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3559 (or cont | |
16876
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3560 (if ange-ftp-waiting-flag |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3561 (throw 'ftp-error t) |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3562 (signal 'ftp-error |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3563 (list "Opening input file" |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3564 (format "FTP Error: \"%s\"" line) |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3565 filename)))))) |
1106 | 3566 ;; cleanup |
3567 (if binary | |
3568 (ange-ftp-set-ascii-mode f-host f-user)))) | |
3569 | |
3570 (if result | |
3571 ;; We now have to copy either temp1 or filename to newname. | |
3572 (if t-parsed | |
3573 | |
3574 ;; newname was remote. | |
3575 (progn | |
3576 (if (ange-ftp-use-gateway-p t-host) | |
3577 (setq temp2 (ange-ftp-make-tmp-name t-host))) | |
3578 | |
3579 ;; make sure data is moved into the right place for the | |
3580 ;; outgoing transfer. gateway temporary files complicate | |
3581 ;; things nicely. | |
3582 (if temp1 | |
3583 (if temp2 | |
3584 (if (string-equal temp1 temp2) | |
3585 (setq temp1 nil) | |
3586 (ange-ftp-real-copy-file temp1 temp2 t)) | |
3587 (setq temp2 temp1 temp1 nil)) | |
3588 (if temp2 | |
3589 (ange-ftp-real-copy-file filename temp2 t))) | |
3590 | |
3591 (if binary | |
3592 (ange-ftp-set-binary-mode t-host t-user)) | |
3593 | |
3594 ;; tell the process filter what size the file is. | |
3595 (let ((attr (file-attributes (or temp2 filename)))) | |
3596 (if attr | |
3597 (ange-ftp-set-xfer-size t-host t-user (nth 7 attr)))) | |
3598 | |
3599 (ange-ftp-send-cmd | |
3600 t-host | |
3601 t-user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3602 (list 'put (or temp2 filename) t-name) |
1106 | 3603 (or msg |
3604 (if (and temp2 f-parsed) | |
3605 (format "Putting %s" newname) | |
3606 (format "Copying %s to %s" f-abbr t-abbr))) | |
3607 (list (function ange-ftp-cf2) | |
3608 newname t-host t-user binary temp1 temp2 cont) | |
3609 nowait)) | |
3610 | |
3611 ;; newname wasn't remote. | |
3612 (ange-ftp-cf2 t nil newname t-host t-user binary temp1 temp2 cont)) | |
3613 | |
3614 ;; first copy failed, tell caller | |
3615 (ange-ftp-call-cont cont result line))) | |
3616 | |
3617 ;; last part of copying routine. | |
3618 (defun ange-ftp-cf2 (result line newname t-host t-user binary temp1 temp2 cont) | |
3619 (unwind-protect | |
3620 (if line | |
3621 ;; result from doing a local to remote copy. | |
3622 (unwind-protect | |
3623 (progn | |
3624 (or result | |
3625 (or cont | |
16876
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3626 (if ange-ftp-waiting-flag |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3627 (throw 'ftp-error t) |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3628 (signal 'ftp-error |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3629 (list "Opening output file" |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3630 (format "FTP Error: \"%s\"" line) |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3631 newname))))) |
1106 | 3632 |
3633 (ange-ftp-add-file-entry newname)) | |
3634 | |
3635 ;; cleanup. | |
3636 (if binary | |
3637 (ange-ftp-set-ascii-mode t-host t-user))) | |
3638 | |
3639 ;; newname was local. | |
3640 (if temp1 | |
3641 (ange-ftp-real-copy-file temp1 newname t))) | |
3642 | |
3643 ;; clean up | |
3644 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3645 (and temp2 (ange-ftp-del-tmp-name temp2)) | |
3646 (ange-ftp-call-cont cont result line))) | |
3647 | |
3648 (defun ange-ftp-copy-file (filename newname &optional ok-if-already-exists | |
3649 keep-date) | |
3650 (interactive "fCopy file: \nFCopy %s to file: \np") | |
3651 (ange-ftp-copy-file-internal filename | |
3652 newname | |
3653 ok-if-already-exists | |
3654 keep-date | |
3655 nil | |
3656 nil | |
3657 (interactive-p))) | |
3658 | |
3659 ;;;; ------------------------------------------------------------ | |
3660 ;;;; File renaming support. | |
3661 ;;;; ------------------------------------------------------------ | |
3662 | |
10748
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3663 (defun ange-ftp-rename-remote-to-remote (filename newname f-parsed t-parsed) |
1106 | 3664 "Rename remote file FILE to remote file NEWNAME." |
3665 (let ((f-host (nth 0 f-parsed)) | |
3666 (f-user (nth 1 f-parsed)) | |
3667 (t-host (nth 0 t-parsed)) | |
3668 (t-user (nth 1 t-parsed))) | |
3669 (if (and (string-equal f-host t-host) | |
3670 (string-equal f-user t-user)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3671 (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
|
3672 (t-name (ange-ftp-quote-string (nth 2 t-parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3673 (cmd (list 'rename f-name t-name)) |
1106 | 3674 (fabbr (ange-ftp-abbreviate-filename filename)) |
3675 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3676 (result (ange-ftp-send-cmd f-host f-user cmd | |
3677 (format "Renaming %s to %s" | |
3678 fabbr | |
3679 nabbr)))) | |
3680 (or (car result) | |
3681 (signal 'ftp-error | |
3682 (list | |
3683 "Renaming" | |
3684 (format "FTP Error: \"%s\"" (cdr result)) | |
3685 filename | |
3686 newname))) | |
3687 (ange-ftp-add-file-entry newname) | |
3688 (ange-ftp-delete-file-entry filename)) | |
3689 (ange-ftp-copy-file-internal filename newname t nil) | |
3690 (delete-file filename)))) | |
3691 | |
3692 (defun ange-ftp-rename-local-to-remote (filename newname) | |
1233 | 3693 "Rename local FILENAME to remote file NEWNAME." |
1106 | 3694 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3695 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3696 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3697 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3698 (let (ange-ftp-process-verbose) | |
3699 (delete-file filename)))) | |
3700 | |
3701 (defun ange-ftp-rename-remote-to-local (filename newname) | |
1233 | 3702 "Rename remote file FILENAME to local file NEWNAME." |
1106 | 3703 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3704 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3705 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3706 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3707 (let (ange-ftp-process-verbose) | |
3708 (delete-file filename)))) | |
3709 | |
3710 (defun ange-ftp-rename-file (filename newname &optional ok-if-already-exists) | |
3711 (interactive "fRename file: \nFRename %s to file: \np") | |
3712 (setq filename (expand-file-name filename)) | |
3713 (setq newname (expand-file-name newname)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3714 (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
|
3715 (t-parsed (ange-ftp-ftp-name newname))) |
1106 | 3716 (if (and (or f-parsed t-parsed) |
3717 (or (not ok-if-already-exists) | |
3718 (numberp ok-if-already-exists))) | |
3719 (ange-ftp-barf-or-query-if-file-exists | |
3720 newname | |
3721 "rename to it" | |
3722 (numberp ok-if-already-exists))) | |
3723 (if f-parsed | |
3724 (if t-parsed | |
3725 (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
|
3726 t-parsed) |
1106 | 3727 (ange-ftp-rename-remote-to-local filename newname)) |
3728 (if t-parsed | |
3729 (ange-ftp-rename-local-to-remote filename newname) | |
3730 (ange-ftp-real-rename-file filename newname ok-if-already-exists))))) | |
3731 | |
3732 ;;;; ------------------------------------------------------------ | |
3733 ;;;; File name completion support. | |
3734 ;;;; ------------------------------------------------------------ | |
3735 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3736 ;; 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
|
3737 ;; Note that `ange-ftp-this-dir' is used as a free variable. |
1106 | 3738 (defun ange-ftp-file-entry-active-p (sym) |
3739 (let ((val (get sym 'val))) | |
3740 (or (not (stringp val)) | |
3741 (file-exists-p (ange-ftp-expand-symlink val ange-ftp-this-dir))))) | |
3742 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3743 ;; 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
|
3744 ;; 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
|
3745 ;; by completion-ignored-extensions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3746 ;; 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
|
3747 ;; are used as free variables. |
1106 | 3748 (defun ange-ftp-file-entry-not-ignored-p (sym) |
3749 (let ((val (get sym 'val)) | |
3750 (symname (symbol-name sym))) | |
3751 (if (stringp val) | |
3752 (let ((file (ange-ftp-expand-symlink val ange-ftp-this-dir))) | |
3753 (or (file-directory-p file) | |
3754 (and (file-exists-p file) | |
3755 (not (string-match ange-ftp-completion-ignored-pattern | |
3756 symname))))) | |
3757 (or val ; is a directory name | |
3758 (not (string-match ange-ftp-completion-ignored-pattern symname)))))) | |
3759 | |
3760 (defun ange-ftp-file-name-all-completions (file dir) | |
3761 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3762 (if (ange-ftp-ftp-name ange-ftp-this-dir) |
1106 | 3763 (progn |
3764 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3765 (setq ange-ftp-this-dir | |
3766 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) | |
3767 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3768 (completions | |
3769 (all-completions file tbl | |
3770 (function ange-ftp-file-entry-active-p)))) | |
3771 | |
3772 ;; see whether each matching file is a directory or not... | |
3773 (mapcar | |
3774 (function | |
3775 (lambda (file) | |
3776 (let ((ent (ange-ftp-get-hash-entry file tbl))) | |
3777 (if (and ent | |
3778 (or (not (stringp ent)) | |
3779 (file-directory-p | |
3780 (ange-ftp-expand-symlink ent | |
3781 ange-ftp-this-dir)))) | |
3782 (concat file "/") | |
3783 file)))) | |
3784 completions))) | |
3785 | |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
3786 (if (or (and (eq system-type 'windows-nt) |
22395
4f8f06912912
(ange-ftp-file-name-completion): Do hostname
Richard M. Stallman <rms@gnu.org>
parents:
22278
diff
changeset
|
3787 (string-match "^[a-zA-Z]:[/\\]$" ange-ftp-this-dir)) |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
3788 (string-equal "/" ange-ftp-this-dir)) |
1106 | 3789 (nconc (all-completions file (ange-ftp-generate-root-prefixes)) |
3790 (ange-ftp-real-file-name-all-completions file | |
3791 ange-ftp-this-dir)) | |
3792 (ange-ftp-real-file-name-all-completions file ange-ftp-this-dir))))) | |
3793 | |
3794 (defun ange-ftp-file-name-completion (file dir) | |
3795 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3796 (if (ange-ftp-ftp-name ange-ftp-this-dir) |
1106 | 3797 (progn |
3798 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3799 (if (equal file "") | |
3800 "" | |
3801 (setq ange-ftp-this-dir | |
3802 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) ;real? | |
3803 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3804 (ange-ftp-completion-ignored-pattern | |
3805 (mapconcat (function | |
3806 (lambda (s) (if (stringp s) | |
3807 (concat (regexp-quote s) "$") | |
3808 "/"))) ; / never in filename | |
3809 completion-ignored-extensions | |
3810 "\\|"))) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
3811 (save-match-data |
1106 | 3812 (or (ange-ftp-file-name-completion-1 |
3813 file tbl ange-ftp-this-dir | |
3814 (function ange-ftp-file-entry-not-ignored-p)) | |
3815 (ange-ftp-file-name-completion-1 | |
3816 file tbl ange-ftp-this-dir | |
3817 (function ange-ftp-file-entry-active-p))))))) | |
3818 | |
22395
4f8f06912912
(ange-ftp-file-name-completion): Do hostname
Richard M. Stallman <rms@gnu.org>
parents:
22278
diff
changeset
|
3819 (if (or (and (eq system-type 'windows-nt) |
4f8f06912912
(ange-ftp-file-name-completion): Do hostname
Richard M. Stallman <rms@gnu.org>
parents:
22278
diff
changeset
|
3820 (string-match "^[a-zA-Z]:[/\\]$" ange-ftp-this-dir)) |
4f8f06912912
(ange-ftp-file-name-completion): Do hostname
Richard M. Stallman <rms@gnu.org>
parents:
22278
diff
changeset
|
3821 (string-equal "/" ange-ftp-this-dir)) |
1106 | 3822 (try-completion |
3823 file | |
3824 (nconc (ange-ftp-generate-root-prefixes) | |
3825 (mapcar 'list | |
22401
13df619ccc57
(ange-ftp-file-name-completion): Use ange-ftp-this-dir instead of
Richard M. Stallman <rms@gnu.org>
parents:
22395
diff
changeset
|
3826 (ange-ftp-real-file-name-all-completions |
13df619ccc57
(ange-ftp-file-name-completion): Use ange-ftp-this-dir instead of
Richard M. Stallman <rms@gnu.org>
parents:
22395
diff
changeset
|
3827 file ange-ftp-this-dir)))) |
1106 | 3828 (ange-ftp-real-file-name-completion file ange-ftp-this-dir))))) |
3829 | |
3830 | |
3831 (defun ange-ftp-file-name-completion-1 (file tbl dir predicate) | |
3832 (let ((bestmatch (try-completion file tbl predicate))) | |
3833 (if bestmatch | |
3834 (if (eq bestmatch t) | |
3835 (if (file-directory-p (expand-file-name file dir)) | |
3836 (concat file "/") | |
3837 t) | |
3838 (if (and (eq (try-completion bestmatch tbl predicate) t) | |
3839 (file-directory-p | |
3840 (expand-file-name bestmatch dir))) | |
3841 (concat bestmatch "/") | |
3842 bestmatch))))) | |
3843 | |
3844 ;; Put these lines uncommmented in your .emacs if you want C-r to refresh | |
3845 ;; ange-ftp's cache whilst doing filename completion. | |
3846 ;; | |
3847 ;;(define-key minibuffer-local-completion-map "\C-r" 'ange-ftp-re-read-dir) | |
3848 ;;(define-key minibuffer-local-must-match-map "\C-r" 'ange-ftp-re-read-dir) | |
3849 | |
22797
2311a799a981
(ange-ftp-reread-dir): Renamed from `re-read'.
Richard M. Stallman <rms@gnu.org>
parents:
22642
diff
changeset
|
3850 ;; The autoload cookie is to make sure the doc is always available. |
22818
3c30de5e4f1d
Quote ange-ftp-reread-dir in autoload cookie.
Kenichi Handa <handa@m17n.org>
parents:
22797
diff
changeset
|
3851 ;;;###autoload (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) |
22797
2311a799a981
(ange-ftp-reread-dir): Renamed from `re-read'.
Richard M. Stallman <rms@gnu.org>
parents:
22642
diff
changeset
|
3852 ;;;###autoload |
2311a799a981
(ange-ftp-reread-dir): Renamed from `re-read'.
Richard M. Stallman <rms@gnu.org>
parents:
22642
diff
changeset
|
3853 (defun ange-ftp-reread-dir (&optional dir) |
2311a799a981
(ange-ftp-reread-dir): Renamed from `re-read'.
Richard M. Stallman <rms@gnu.org>
parents:
22642
diff
changeset
|
3854 "Reread remote directory DIR to update the directory cache. |
2311a799a981
(ange-ftp-reread-dir): Renamed from `re-read'.
Richard M. Stallman <rms@gnu.org>
parents:
22642
diff
changeset
|
3855 The implementation of remote ftp file names caches directory contents |
2311a799a981
(ange-ftp-reread-dir): Renamed from `re-read'.
Richard M. Stallman <rms@gnu.org>
parents:
22642
diff
changeset
|
3856 for speed. Therefore, when new remote files are created, Emacs |
2311a799a981
(ange-ftp-reread-dir): Renamed from `re-read'.
Richard M. Stallman <rms@gnu.org>
parents:
22642
diff
changeset
|
3857 may not know they exist. You can use this command to reread a specific |
2311a799a981
(ange-ftp-reread-dir): Renamed from `re-read'.
Richard M. Stallman <rms@gnu.org>
parents:
22642
diff
changeset
|
3858 directory, so that Emacs will know its current contents." |
1106 | 3859 (interactive) |
3860 (if dir | |
3861 (setq dir (expand-file-name dir)) | |
3862 (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
|
3863 (if (ange-ftp-ftp-name dir) |
1106 | 3864 (progn |
3865 (setq ange-ftp-ls-cache-file nil) | |
3866 (ange-ftp-del-hash-entry dir ange-ftp-files-hashtable) | |
3867 (ange-ftp-get-files dir t)))) | |
3868 | |
3611
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3869 (defun ange-ftp-make-directory (dir &optional parents) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3870 (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
|
3871 (if parents |
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3872 (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
|
3873 (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
|
3874 (ange-ftp-make-directory parent parents)))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3875 (if (file-exists-p dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3876 (error "Cannot make directory %s: file already exists" dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3877 (let ((parsed (ange-ftp-ftp-name dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3878 (if parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3879 (let* ((host (nth 0 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3880 (user (nth 1 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3881 ;; Some ftp's on unix machines (at least on Suns) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3882 ;; insist that mkdir take a filename, and not a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3883 ;; 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
|
3884 ;; Non-unix machines will probably always insist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3885 ;; that mkdir takes a directory-name as an arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3886 ;; (as the ftp man page says it should). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3887 (name (ange-ftp-quote-string |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3888 (if (eq (ange-ftp-host-type host) 'unix) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3889 (ange-ftp-real-directory-file-name (nth 2 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3890 (ange-ftp-real-file-name-as-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3891 (nth 2 parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3892 (abbr (ange-ftp-abbreviate-filename dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3893 (result (ange-ftp-send-cmd host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3894 (list 'mkdir name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3895 (format "Making directory %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3896 abbr)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3897 (or (car result) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3898 (ange-ftp-error host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3899 (format "Could not make directory %s: %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3900 dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3901 (cdr result)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3902 (ange-ftp-add-file-entry dir t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3903 (ange-ftp-real-make-directory dir))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3904 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3905 (defun ange-ftp-delete-directory (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3906 (if (file-directory-p dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3907 (let ((parsed (ange-ftp-ftp-name dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3908 (if parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3909 (let* ((host (nth 0 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3910 (user (nth 1 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3911 ;; Some ftp's on unix machines (at least on Suns) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3912 ;; insist that rmdir take a filename, and not a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3913 ;; 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
|
3914 ;; Non-unix machines will probably always insist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3915 ;; that rmdir takes a directory-name as an arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3916 ;; (as the ftp man page says it should). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3917 (name (ange-ftp-quote-string |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3918 (if (eq (ange-ftp-host-type host) 'unix) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3919 (ange-ftp-real-directory-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3920 (nth 2 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3921 (ange-ftp-real-file-name-as-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3922 (nth 2 parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3923 (abbr (ange-ftp-abbreviate-filename dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3924 (result (ange-ftp-send-cmd host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3925 (list 'rmdir name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3926 (format "Removing directory %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3927 abbr)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3928 (or (car result) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3929 (ange-ftp-error host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3930 (format "Could not remove directory %s: %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3931 dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3932 (cdr result)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3933 (ange-ftp-delete-file-entry dir t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3934 (ange-ftp-real-delete-directory dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3935 (error "Not a directory: %s" dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3936 |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3937 ;; Make a local copy of FILE and return its name. |
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3938 |
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3939 (defun ange-ftp-file-local-copy (file) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3940 (let* ((fn1 (expand-file-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3941 (pa1 (ange-ftp-ftp-name fn1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3942 (if pa1 |
10748
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3943 (let ((tmp1 (ange-ftp-make-tmp-name (car pa1)))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3944 (ange-ftp-copy-file-internal fn1 tmp1 t nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3945 (format "Getting %s" fn1)) |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3946 tmp1)))) |
3532
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
3947 |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3948 (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
|
3949 (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
|
3950 (let ((tryfiles (if nosuffix |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3951 (list file) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3952 (list (concat file ".elc") (concat file ".el") file))) |
24912
15cba2bd779a
(ange-ftp-load): Bind load-force-doc-strings to t,
Andrew Innes <andrewi@gnu.org>
parents:
24818
diff
changeset
|
3953 ;; make sure there are no references to temp files |
15cba2bd779a
(ange-ftp-load): Bind load-force-doc-strings to t,
Andrew Innes <andrewi@gnu.org>
parents:
24818
diff
changeset
|
3954 (load-force-doc-strings t) |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3955 copy) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3956 (while (and tryfiles (not copy)) |
16876
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3957 (catch 'ftp-error |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3958 (let ((ange-ftp-waiting-flag t)) |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3959 (condition-case error |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3960 (setq copy (ange-ftp-file-local-copy (car tryfiles))) |
34fa99fb91d1
(ange-ftp-waiting-flag): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16709
diff
changeset
|
3961 (ftp-error nil)))) |
13789
7ccb22bca972
(ange-ftp-load): Added missing form to `cdr' down
Karl Heuer <kwzh@gnu.org>
parents:
13594
diff
changeset
|
3962 (setq tryfiles (cdr tryfiles))) |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3963 (if copy |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3964 (unwind-protect |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3965 (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
|
3966 (delete-file copy)) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3967 (or noerror |
16916
49435b5ecb29
(ange-ftp-load): If fail, return nil.
Richard M. Stallman <rms@gnu.org>
parents:
16876
diff
changeset
|
3968 (signal 'file-error (list "Cannot open load file" file))) |
49435b5ecb29
(ange-ftp-load): If fail, return nil.
Richard M. Stallman <rms@gnu.org>
parents:
16876
diff
changeset
|
3969 nil)) |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3970 (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
|
3971 |
1670
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3972 ;; 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
|
3973 (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
|
3974 (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
|
3975 |
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3976 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3977 ;; Need the following functions for making filenames of compressed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3978 ;; 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
|
3979 ;; have two extensions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3980 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3981 (defvar ange-ftp-make-compressed-filename-alist nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3982 "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
|
3983 Each element has the form (TYPE . FUNC). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3984 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
|
3985 of the form (COMPRESSING NEWNAME). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3986 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
|
3987 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
|
3988 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
|
3989 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3990 (defun ange-ftp-dired-compress-file (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3991 (let ((parsed (ange-ftp-ftp-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3992 conversion-func) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3993 (if (and parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3994 (setq conversion-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3995 (cdr (assq (ange-ftp-host-type (car parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3996 ange-ftp-make-compressed-filename-alist)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3997 (let* ((decision |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
3998 (save-match-data (funcall conversion-func name))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3999 (compressing (car decision)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4000 (newfile (nth 1 decision))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4001 (if compressing |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4002 (ange-ftp-compress name newfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4003 (ange-ftp-uncompress name newfile))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4004 (let (file-name-handler-alist) |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
4005 (dired-compress-file name))))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4006 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4007 ;; 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
|
4008 (defun ange-ftp-compress (file nfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4009 (let* ((parsed (ange-ftp-ftp-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4010 (tmp1 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4011 (tmp2 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4012 (abbr (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4013 (nabbr (ange-ftp-abbreviate-filename nfile)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4014 (msg1 (format "Getting %s" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4015 (msg2 (format "Putting %s" nabbr))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4016 (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4017 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4018 (ange-ftp-copy-file-internal file tmp1 t nil msg1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4019 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4020 (ange-ftp-message "Compressing %s..." abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4021 (call-process-region (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4022 (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4023 shell-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4024 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4025 t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4026 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4027 "-c" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4028 (format "compress -f -c < %s > %s" tmp1 tmp2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4029 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4030 (ange-ftp-message "Compressing %s...done" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4031 (if (zerop (buffer-size)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4032 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4033 (let (ange-ftp-process-verbose) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4034 (delete-file file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4035 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4036 (ange-ftp-del-tmp-name tmp1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4037 (ange-ftp-del-tmp-name tmp2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4038 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4039 ;; 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
|
4040 (defun ange-ftp-uncompress (file nfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4041 (let* ((parsed (ange-ftp-ftp-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4042 (tmp1 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4043 (tmp2 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4044 (abbr (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4045 (nabbr (ange-ftp-abbreviate-filename nfile)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4046 (msg1 (format "Getting %s" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4047 (msg2 (format "Putting %s" nabbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4048 ;; ;; Cheap hack because of problems with binary file transfers from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4049 ;; ;; VMS hosts. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4050 ;; (gbinary (not (eq 'vms (ange-ftp-host-type (car parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4051 ) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4052 (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4053 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4054 (ange-ftp-copy-file-internal file tmp1 t nil msg1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4055 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4056 (ange-ftp-message "Uncompressing %s..." abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4057 (call-process-region (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4058 (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4059 shell-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4060 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4061 t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4062 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4063 "-c" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4064 (format "uncompress -c < %s > %s" tmp1 tmp2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4065 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4066 (ange-ftp-message "Uncompressing %s...done" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4067 (if (zerop (buffer-size)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4068 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4069 (let (ange-ftp-process-verbose) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4070 (delete-file file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4071 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4072 (ange-ftp-del-tmp-name tmp1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4073 (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
|
4074 |
8b26137996f9
(ange-ftp-set-buffer-mode): Don't set make-backup-files.
Richard M. Stallman <rms@gnu.org>
parents:
10244
diff
changeset
|
4075 (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
|
4076 ;; 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
|
4077 ;; 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
|
4078 (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
|
4079 (ange-ftp-real-find-backup-file-name fn))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4080 |
1106 | 4081 ;;; Define the handler for special file names |
4082 ;;; that causes ange-ftp to be invoked. | |
4083 | |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4084 ;;;###autoload |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4085 (defun ange-ftp-hook-function (operation &rest args) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4086 (let ((fn (get operation 'ange-ftp))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4087 (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
|
4088 (ange-ftp-run-real-handler operation args)))) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4089 |
3893
d04e12f9153f
* ange-ftp.el: Loosen file-name-handler-alist regexp so we can do
Jim Blandy <jimb@redhat.com>
parents:
3831
diff
changeset
|
4090 |
d04e12f9153f
* ange-ftp.el: Loosen file-name-handler-alist regexp so we can do
Jim Blandy <jimb@redhat.com>
parents:
3831
diff
changeset
|
4091 ;;; 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
|
4092 ;;; 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
|
4093 ;;; 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
|
4094 ;;;###autoload |
21822
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4095 (or (assoc "^/[^/:]*[^/:.]:" file-name-handler-alist) |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4096 (setq file-name-handler-alist |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4097 (cons '("^/[^/:]*[^/:.]:" . ange-ftp-hook-function) |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4098 file-name-handler-alist))) |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4099 |
22395
4f8f06912912
(ange-ftp-file-name-completion): Do hostname
Richard M. Stallman <rms@gnu.org>
parents:
22278
diff
changeset
|
4100 ;;; This regexp recognizes absolute filenames with only one component, |
4185
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
4101 ;;; 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
|
4102 ;;;###autoload |
21822
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4103 (or (assoc "^/[^/:]*\\'" file-name-handler-alist) |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4104 (setq file-name-handler-alist |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4105 (cons '("^/[^/:]*\\'" . ange-ftp-completion-hook-function) |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4106 file-name-handler-alist))) |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4107 |
22395
4f8f06912912
(ange-ftp-file-name-completion): Do hostname
Richard M. Stallman <rms@gnu.org>
parents:
22278
diff
changeset
|
4108 ;;; This regexp recognizes absolute filenames with only one component |
4f8f06912912
(ange-ftp-file-name-completion): Do hostname
Richard M. Stallman <rms@gnu.org>
parents:
22278
diff
changeset
|
4109 ;;; on Windows, for the sake of hostname completion. |
4f8f06912912
(ange-ftp-file-name-completion): Do hostname
Richard M. Stallman <rms@gnu.org>
parents:
22278
diff
changeset
|
4110 ;;; NB. Do not mark this as autoload, because it is very common to |
4f8f06912912
(ange-ftp-file-name-completion): Do hostname
Richard M. Stallman <rms@gnu.org>
parents:
22278
diff
changeset
|
4111 ;;; do completions in the root directory of drives on Windows. |
21822
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4112 (and (memq system-type '(ms-dos windows-nt)) |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4113 (or (assoc "^[a-zA-Z]:/[^/:]*\\'" file-name-handler-alist) |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4114 (setq file-name-handler-alist |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4115 (cons '("^[a-zA-Z]:/[^/:]*\\'" . |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4116 ange-ftp-completion-hook-function) |
37c1ced8578a
(file-name-handler-alist): Instead of substituting,
Geoff Voelker <voelker@cs.washington.edu>
parents:
21648
diff
changeset
|
4117 file-name-handler-alist)))) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4118 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4119 ;;; 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
|
4120 ;;; 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
|
4121 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4122 ;;; This sets the mode |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4123 (or (memq 'ange-ftp-set-buffer-mode find-file-hooks) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4124 (setq find-file-hooks |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4125 (cons 'ange-ftp-set-buffer-mode find-file-hooks))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4126 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4127 ;;; Now say where to find the handlers for particular operations. |
1106 | 4128 |
4129 (put 'file-name-directory 'ange-ftp 'ange-ftp-file-name-directory) | |
4130 (put 'file-name-nondirectory 'ange-ftp 'ange-ftp-file-name-nondirectory) | |
4131 (put 'file-name-as-directory 'ange-ftp 'ange-ftp-file-name-as-directory) | |
4132 (put 'directory-file-name 'ange-ftp 'ange-ftp-directory-file-name) | |
4133 (put 'expand-file-name 'ange-ftp 'ange-ftp-expand-file-name) | |
4134 (put 'make-directory 'ange-ftp 'ange-ftp-make-directory) | |
4135 (put 'delete-directory 'ange-ftp 'ange-ftp-delete-directory) | |
4136 (put 'insert-file-contents 'ange-ftp 'ange-ftp-insert-file-contents) | |
4137 (put 'directory-files 'ange-ftp 'ange-ftp-directory-files) | |
4138 (put 'file-directory-p 'ange-ftp 'ange-ftp-file-directory-p) | |
4139 (put 'file-writable-p 'ange-ftp 'ange-ftp-file-writable-p) | |
4140 (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
|
4141 (put 'file-executable-p 'ange-ftp 'ange-ftp-file-executable-p) |
1106 | 4142 (put 'file-symlink-p 'ange-ftp 'ange-ftp-file-symlink-p) |
4143 (put 'delete-file 'ange-ftp 'ange-ftp-delete-file) | |
4144 (put 'read-file-name-internal 'ange-ftp 'ange-ftp-read-file-name-internal) | |
4145 (put 'verify-visited-file-modtime 'ange-ftp | |
4146 'ange-ftp-verify-visited-file-modtime) | |
4147 (put 'file-exists-p 'ange-ftp 'ange-ftp-file-exists-p) | |
4148 (put 'write-region 'ange-ftp 'ange-ftp-write-region) | |
4149 (put 'backup-buffer 'ange-ftp 'ange-ftp-backup-buffer) | |
4150 (put 'copy-file 'ange-ftp 'ange-ftp-copy-file) | |
4151 (put 'rename-file 'ange-ftp 'ange-ftp-rename-file) | |
4152 (put 'file-attributes 'ange-ftp 'ange-ftp-file-attributes) | |
4153 (put 'file-name-all-completions 'ange-ftp 'ange-ftp-file-name-all-completions) | |
4154 (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
|
4155 (put 'insert-directory 'ange-ftp 'ange-ftp-insert-directory) |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
4156 (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
|
4157 (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
|
4158 'ange-ftp-unhandled-file-name-directory) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4159 (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
|
4160 (put 'dired-uncache 'ange-ftp 'ange-ftp-dired-uncache) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4161 (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
|
4162 (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
|
4163 (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
|
4164 |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
4165 ;; 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
|
4166 ;; 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
|
4167 (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
|
4168 |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
4169 ;; 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
|
4170 ;; 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
|
4171 (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
|
4172 |
c7dfe102acc3
(dired-call-process): Put on ange-ftp property.
Karl Heuer <kwzh@gnu.org>
parents:
14572
diff
changeset
|
4173 (put 'dired-call-process 'ange-ftp 'ange-ftp-dired-call-process) |
21278 | 4174 (put 'shell-command 'ange-ftp 'ange-ftp-shell-command) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4175 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4176 ;;; Define ways of getting at unmodified Emacs primitives, |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4177 ;;; turning off our handler. |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
4178 |
7042 | 4179 (defun ange-ftp-run-real-handler (operation args) |
4180 (let ((inhibit-file-name-handlers | |
4181 (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
|
4182 (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
|
4183 (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
|
4184 inhibit-file-name-handlers)))) |
7042 | 4185 (inhibit-file-name-operation operation)) |
4186 (apply operation args))) | |
4187 | |
1106 | 4188 (defun ange-ftp-real-file-name-directory (&rest args) |
7042 | 4189 (ange-ftp-run-real-handler 'file-name-directory args)) |
1106 | 4190 (defun ange-ftp-real-file-name-nondirectory (&rest args) |
7042 | 4191 (ange-ftp-run-real-handler 'file-name-nondirectory args)) |
1106 | 4192 (defun ange-ftp-real-file-name-as-directory (&rest args) |
7042 | 4193 (ange-ftp-run-real-handler 'file-name-as-directory args)) |
1106 | 4194 (defun ange-ftp-real-directory-file-name (&rest args) |
7042 | 4195 (ange-ftp-run-real-handler 'directory-file-name args)) |
1106 | 4196 (defun ange-ftp-real-expand-file-name (&rest args) |
22278
7a9f75f6e065
(ange-ftp-expand-file-name): Set default to
Richard M. Stallman <rms@gnu.org>
parents:
22095
diff
changeset
|
4197 (ange-ftp-run-real-handler 'expand-file-name args)) |
1106 | 4198 (defun ange-ftp-real-make-directory (&rest args) |
7042 | 4199 (ange-ftp-run-real-handler 'make-directory args)) |
1106 | 4200 (defun ange-ftp-real-delete-directory (&rest args) |
7042 | 4201 (ange-ftp-run-real-handler 'delete-directory args)) |
1106 | 4202 (defun ange-ftp-real-insert-file-contents (&rest args) |
7042 | 4203 (ange-ftp-run-real-handler 'insert-file-contents args)) |
1106 | 4204 (defun ange-ftp-real-directory-files (&rest args) |
7042 | 4205 (ange-ftp-run-real-handler 'directory-files args)) |
1106 | 4206 (defun ange-ftp-real-file-directory-p (&rest args) |
7042 | 4207 (ange-ftp-run-real-handler 'file-directory-p args)) |
1106 | 4208 (defun ange-ftp-real-file-writable-p (&rest args) |
7042 | 4209 (ange-ftp-run-real-handler 'file-writable-p args)) |
1106 | 4210 (defun ange-ftp-real-file-readable-p (&rest args) |
7042 | 4211 (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
|
4212 (defun ange-ftp-real-file-executable-p (&rest args) |
7042 | 4213 (ange-ftp-run-real-handler 'file-executable-p args)) |
1106 | 4214 (defun ange-ftp-real-file-symlink-p (&rest args) |
7042 | 4215 (ange-ftp-run-real-handler 'file-symlink-p args)) |
1106 | 4216 (defun ange-ftp-real-delete-file (&rest args) |
7042 | 4217 (ange-ftp-run-real-handler 'delete-file args)) |
1106 | 4218 (defun ange-ftp-real-read-file-name-internal (&rest args) |
7042 | 4219 (ange-ftp-run-real-handler 'read-file-name-internal args)) |
1106 | 4220 (defun ange-ftp-real-verify-visited-file-modtime (&rest args) |
7042 | 4221 (ange-ftp-run-real-handler 'verify-visited-file-modtime args)) |
1106 | 4222 (defun ange-ftp-real-file-exists-p (&rest args) |
7042 | 4223 (ange-ftp-run-real-handler 'file-exists-p args)) |
1106 | 4224 (defun ange-ftp-real-write-region (&rest args) |
7042 | 4225 (ange-ftp-run-real-handler 'write-region args)) |
1106 | 4226 (defun ange-ftp-real-backup-buffer (&rest args) |
7042 | 4227 (ange-ftp-run-real-handler 'backup-buffer args)) |
1106 | 4228 (defun ange-ftp-real-copy-file (&rest args) |
7042 | 4229 (ange-ftp-run-real-handler 'copy-file args)) |
1106 | 4230 (defun ange-ftp-real-rename-file (&rest args) |
7042 | 4231 (ange-ftp-run-real-handler 'rename-file args)) |
1106 | 4232 (defun ange-ftp-real-file-attributes (&rest args) |
7042 | 4233 (ange-ftp-run-real-handler 'file-attributes args)) |
1106 | 4234 (defun ange-ftp-real-file-name-all-completions (&rest args) |
7042 | 4235 (ange-ftp-run-real-handler 'file-name-all-completions args)) |
1106 | 4236 (defun ange-ftp-real-file-name-completion (&rest args) |
7042 | 4237 (ange-ftp-run-real-handler 'file-name-completion args)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4238 (defun ange-ftp-real-insert-directory (&rest args) |
7042 | 4239 (ange-ftp-run-real-handler 'insert-directory args)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4240 (defun ange-ftp-real-file-name-sans-versions (&rest args) |
7042 | 4241 (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
|
4242 (defun ange-ftp-real-shell-command (&rest args) |
7042 | 4243 (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
|
4244 (defun ange-ftp-real-load (&rest args) |
7042 | 4245 (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
|
4246 (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
|
4247 (ange-ftp-run-real-handler 'find-backup-file-name args)) |
1106 | 4248 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4249 ;; Here we support using dired on remote hosts. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4250 ;; 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
|
4251 ;; That involves too many unclean hooks. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4252 ;; It would be cleaner to support such operations by |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4253 ;; converting the foreign directory format to something dired can understand; |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4254 ;; something close to ls -l output. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4255 ;; 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
|
4256 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4257 ;; 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
|
4258 ;; I have preserved (and modernized) those hooks. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4259 ;; So the format conversion should be all that is needed. |
1106 | 4260 |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4261 (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
|
4262 (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
|
4263 (parsed (ange-ftp-ftp-name (expand-file-name file)))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4264 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4265 (insert |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4266 (if wildcard |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4267 (let ((default-directory (file-name-directory file))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4268 (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
|
4269 (ange-ftp-ls file switches full))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4270 (ange-ftp-real-insert-directory file switches wildcard full)))) |
1106 | 4271 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4272 (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
|
4273 (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
|
4274 (setq ange-ftp-ls-cache-file nil))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4275 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4276 (defvar ange-ftp-sans-version-alist nil |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4277 "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
|
4278 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4279 (defun ange-ftp-file-name-sans-versions (file keep-backup-version) |
23052
39b3f4c74b93
(ange-ftp-file-name-sans-versions): Don't return
Richard M. Stallman <rms@gnu.org>
parents:
22818
diff
changeset
|
4280 (let* ((short (ange-ftp-abbreviate-filename file)) |
39b3f4c74b93
(ange-ftp-file-name-sans-versions): Don't return
Richard M. Stallman <rms@gnu.org>
parents:
22818
diff
changeset
|
4281 (parsed (ange-ftp-ftp-name short)) |
39b3f4c74b93
(ange-ftp-file-name-sans-versions): Don't return
Richard M. Stallman <rms@gnu.org>
parents:
22818
diff
changeset
|
4282 host-type func) |
1106 | 4283 (if parsed |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4284 (setq host-type (ange-ftp-host-type (car parsed)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4285 func (cdr (assq (ange-ftp-host-type (car parsed)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4286 ange-ftp-sans-version-alist)))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4287 (if func (funcall func file keep-backup-version) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4288 (ange-ftp-real-file-name-sans-versions file keep-backup-version)))) |
1106 | 4289 |
21278 | 4290 ;; This is the handler for shell-command. |
24818
6486c94c16ae
(ange-ftp-shell-command): Handle error-buffer arg.
Karl Heuer <kwzh@gnu.org>
parents:
23840
diff
changeset
|
4291 (defun ange-ftp-shell-command (command &optional output-buffer error-buffer) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4292 (let* ((parsed (ange-ftp-ftp-name default-directory)) |
1106 | 4293 (host (nth 0 parsed)) |
4294 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4295 (name (nth 2 parsed))) |
1106 | 4296 (if (not parsed) |
24818
6486c94c16ae
(ange-ftp-shell-command): Handle error-buffer arg.
Karl Heuer <kwzh@gnu.org>
parents:
23840
diff
changeset
|
4297 (ange-ftp-real-shell-command command output-buffer error-buffer) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4298 (if (> (length name) 0) ; else it's $HOME |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4299 (setq command (concat "cd " name "; " command))) |
1106 | 4300 (setq command |
4301 (format "%s %s \"%s\"" ; remsh -l USER does not work well | |
4302 ; 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
|
4303 remote-shell-program host command)) |
1106 | 4304 (ange-ftp-message "Remote command '%s' ..." command) |
4305 ;; Cannot call ange-ftp-real-dired-run-shell-command here as it | |
4306 ;; would prepend "cd default-directory" --- which bombs because | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4307 ;; default-directory is in ange-ftp syntax for remote file names. |
24818
6486c94c16ae
(ange-ftp-shell-command): Handle error-buffer arg.
Karl Heuer <kwzh@gnu.org>
parents:
23840
diff
changeset
|
4308 (ange-ftp-real-shell-command command output-buffer error-buffer)))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4309 |
14634
c7dfe102acc3
(dired-call-process): Put on ange-ftp property.
Karl Heuer <kwzh@gnu.org>
parents:
14572
diff
changeset
|
4310 ;;; This is the handler for call-process. |
1106 | 4311 (defun ange-ftp-dired-call-process (program discard &rest arguments) |
4312 ;; PROGRAM is always one of those below in the cond in dired.el. | |
4313 ;; The ARGUMENTS are (nearly) always files. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4314 (if (ange-ftp-ftp-name default-directory) |
1106 | 4315 ;; Can't use ange-ftp-dired-host-type here because the current |
4316 ;; buffer is *dired-check-process output* | |
4317 (condition-case oops | |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
4318 (cond ((equal dired-chmod-program program) |
1106 | 4319 (ange-ftp-call-chmod arguments)) |
4320 ;; ((equal "chgrp" program)) | |
4321 ;; ((equal dired-chown-program program)) | |
4322 (t (error "Unknown remote command: %s" program))) | |
4323 (ftp-error (insert (format "%s: %s, %s\n" | |
4324 (nth 1 oops) | |
4325 (nth 2 oops) | |
14869
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4326 (nth 3 oops))) |
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4327 ;; Caller expects nonzero value to mean failure. |
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4328 1) |
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4329 (error (insert (format "%s\n" (nth 1 oops))) |
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4330 1)) |
1106 | 4331 (apply 'call-process program nil (not discard) nil arguments))) |
4332 | |
14869
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4333 (defvar ange-ftp-remote-shell "rsh" |
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4334 "Remote shell to use for chmod, if FTP server rejects the `chmod' command.") |
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4335 |
14868
cca4562fbafd
(ange-ftp-call-chmod): Return proper value.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
4336 ;; Handle an attempt to run chmod on a remote file |
cca4562fbafd
(ange-ftp-call-chmod): Return proper value.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
4337 ;; by using the ftp chmod command. |
1106 | 4338 (defun ange-ftp-call-chmod (args) |
4339 (if (< (length args) 2) | |
4340 (error "ange-ftp-call-chmod: missing mode and/or filename: %s" args)) | |
21026
e01ca278ca3e
(ange-ftp-call-chmod): Don't try to chmod file `--'.
Richard M. Stallman <rms@gnu.org>
parents:
20692
diff
changeset
|
4341 (let ((mode (car args)) |
e01ca278ca3e
(ange-ftp-call-chmod): Don't try to chmod file `--'.
Richard M. Stallman <rms@gnu.org>
parents:
20692
diff
changeset
|
4342 (rest (cdr args))) |
e01ca278ca3e
(ange-ftp-call-chmod): Don't try to chmod file `--'.
Richard M. Stallman <rms@gnu.org>
parents:
20692
diff
changeset
|
4343 (if (equal "--" (car rest)) |
e01ca278ca3e
(ange-ftp-call-chmod): Don't try to chmod file `--'.
Richard M. Stallman <rms@gnu.org>
parents:
20692
diff
changeset
|
4344 (setq rest (cdr rest))) |
1106 | 4345 (mapcar |
4346 (function | |
4347 (lambda (file) | |
4348 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4349 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 4350 (if parsed |
4351 (let* ((host (nth 0 parsed)) | |
4352 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4353 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 4354 (abbr (ange-ftp-abbreviate-filename file)) |
4355 (result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4356 (list 'chmod mode name) |
1106 | 4357 (format "doing chmod %s" |
4358 abbr)))) | |
4359 (or (car result) | |
14869
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4360 (call-process |
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4361 ange-ftp-remote-shell |
21616
b0387f13fc0a
(ange-ftp-tmp-name-template) [windows-nt]: Look for
Geoff Voelker <voelker@cs.washington.edu>
parents:
21313
diff
changeset
|
4362 nil t nil host dired-chmod-program mode name))))))) |
21026
e01ca278ca3e
(ange-ftp-call-chmod): Don't try to chmod file `--'.
Richard M. Stallman <rms@gnu.org>
parents:
20692
diff
changeset
|
4363 rest)) |
14868
cca4562fbafd
(ange-ftp-call-chmod): Return proper value.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
4364 (setq ange-ftp-ls-cache-file nil) ;Stop confusing Dired. |
cca4562fbafd
(ange-ftp-call-chmod): Return proper value.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
4365 0) |
1106 | 4366 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4367 ;;; 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
|
4368 ;;; with dired. It could be reasonable to adapt this to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4369 ;;; replace ange-ftp-copy-file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4370 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4371 ;;;;; ------------------------------------------------------------ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4372 ;;;;; Noddy support for async copy-file within dired. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4373 ;;;;; ------------------------------------------------------------ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4374 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4375 ;;(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
|
4376 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4377 ;; (dired-handle-overwrite to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4378 ;; (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
|
4379 ;; cont nowait)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4380 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4381 ;;(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
|
4382 ;; &optional marker-char op1 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4383 ;; how-to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4384 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4385 ;; ;; 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
|
4386 ;; ;; called it rather than somebody else. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4387 ;; (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
|
4388 ;; (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
|
4389 ;; arg marker-char op1 how-to))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4390 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4391 ;;(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
|
4392 ;; &optional marker-char) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4393 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4394 ;; (if (and (boundp 'ange-ftp-dired-do-create-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4395 ;; ;; called from ange-ftp-dired-do-create-files? |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4396 ;; ange-ftp-dired-do-create-files |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4397 ;; ;; any files worth copying? |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4398 ;; fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4399 ;; ;; we only support async copy-file at the mo. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4400 ;; (eq file-creator 'dired-copy-file) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4401 ;; ;; 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
|
4402 ;; ;; as we tie ourself in recursive knots otherwise. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4403 ;; (or (ange-ftp-ftp-name (car fn-list)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4404 ;; ;; 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
|
4405 ;; ;; since the one for regexps starts prompting here, there and |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4406 ;; ;; everywhere. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4407 ;; (ange-ftp-ftp-name (funcall name-constructor (car fn-list))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4408 ;; ;; 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
|
4409 ;; (ange-ftp-dcf-1 file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4410 ;; operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4411 ;; fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4412 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4413 ;; (and (boundp 'target) target) ;dynamically bound |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4414 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4415 ;; (current-buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4416 ;; nil ;overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4417 ;; nil ;overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4418 ;; nil ;failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4419 ;; nil ;skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4420 ;; 0 ;success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4421 ;; (length fn-list) ;total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4422 ;; ) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
4423 ;; ;; normal case... use the interactive routine... much cheaper. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4424 ;; (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
|
4425 ;; name-constructor marker-char))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4426 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4427 ;;(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
|
4428 ;; target marker-char buffer overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4429 ;; overwrite-backup-query failures skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4430 ;; success-count total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4431 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4432 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4433 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4434 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4435 ;; (if (null fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4436 ;; (ange-ftp-dcf-3 failures operation total skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4437 ;; success-count buffer) |
1106 | 4438 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4439 ;; (let* ((from (car fn-list)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4440 ;; (to (funcall name-constructor from))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4441 ;; (if (equal to from) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4442 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4443 ;; (setq to nil) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4444 ;; (dired-log "Cannot %s to same file: %s\n" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4445 ;; (downcase operation) from))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4446 ;; (if (not to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4447 ;; (ange-ftp-dcf-1 file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4448 ;; operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4449 ;; (cdr fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4450 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4451 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4452 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4453 ;; buffer |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4454 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4455 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4456 ;; failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4457 ;; (cons (dired-make-relative from) skipped) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4458 ;; success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4459 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4460 ;; (let* ((overwrite (file-exists-p to)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4461 ;; (overwrite-confirmed ; for dired-handle-overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4462 ;; (and overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4463 ;; (let ((help-form '(format "\ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4464 ;;Type SPC or `y' to overwrite file `%s', |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4465 ;;DEL or `n' to skip to next, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4466 ;;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
|
4467 ;;`!' to overwrite all remaining files with no more questions." to))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4468 ;; (dired-query 'overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4469 ;; "Overwrite `%s'?" to)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4470 ;; ;; must determine if FROM is marked before file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4471 ;; ;; 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
|
4472 ;; (actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4473 ;; (cond ((integerp marker-char) marker-char) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4474 ;; (marker-char (dired-file-marker from)) ; slow |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4475 ;; (t nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4476 ;; (condition-case err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4477 ;; (funcall file-creator from to overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4478 ;; (list (function ange-ftp-dcf-2) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4479 ;; nil ;err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4480 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4481 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4482 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4483 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4484 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4485 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4486 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4487 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4488 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4489 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4490 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4491 ;; t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4492 ;; (file-error ; FILE-CREATOR aborted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4493 ;; (ange-ftp-dcf-2 nil ;result |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4494 ;; nil ;line |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4495 ;; err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4496 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4497 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4498 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4499 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4500 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4501 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4502 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4503 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4504 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4505 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4506 ;; total)))))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4507 ;; (set-buffer old-buf)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4508 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4509 ;;(defun ange-ftp-dcf-2 (result line err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4510 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4511 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4512 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4513 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4514 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4515 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4516 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4517 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4518 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4519 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4520 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4521 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4522 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4523 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4524 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4525 ;; (if (or err (not result)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4526 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4527 ;; (setq failures (cons (dired-make-relative from) failures)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4528 ;; (dired-log "%s `%s' to `%s' failed:\n%s\n" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4529 ;; operation from to (or err line))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4530 ;; (if overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4531 ;; ;; If we get here, file-creator hasn't been aborted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4532 ;; ;; and the old entry (if any) has to be deleted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4533 ;; ;; before adding the new entry. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4534 ;; (dired-remove-file to)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4535 ;; (setq success-count (1+ success-count)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4536 ;; (message "%s: %d of %d" operation success-count total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4537 ;; (dired-add-file to actual-marker-char)) |
1106 | 4538 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4539 ;; (ange-ftp-dcf-1 file-creator operation (cdr fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4540 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4541 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4542 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4543 ;; buffer |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4544 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4545 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4546 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4547 ;; total)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4548 ;; (set-buffer old-buf)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4549 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4550 ;;(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
|
4551 ;; buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4552 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4553 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4554 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4555 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4556 ;; (cond |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4557 ;; (failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4558 ;; (dired-log-summary |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4559 ;; (message "%s failed for %d of %d file%s %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4560 ;; operation (length failures) total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4561 ;; (dired-plural-s total) failures))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4562 ;; (skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4563 ;; (dired-log-summary |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4564 ;; (message "%s: %d of %d file%s skipped %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4565 ;; operation (length skipped) total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4566 ;; (dired-plural-s total) skipped))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4567 ;; (t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4568 ;; (message "%s: %s file%s." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4569 ;; operation success-count (dired-plural-s success-count)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4570 ;; (dired-move-to-filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4571 ;; (set-buffer old-buf)))) |
1106 | 4572 |
4573 ;;;; ----------------------------------------------- | |
4574 ;;;; Unix Descriptive Listing (dl) Support | |
4575 ;;;; ----------------------------------------------- | |
4576 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4577 ;; This is turned off because nothing uses it currently |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4578 ;; 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
|
4579 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4580 ;;(defconst ange-ftp-dired-dl-re-dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4581 ;; "^. [^ /]+/[ \n]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4582 ;; "Regular expression to use to search for dl directories.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4583 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4584 ;;(or (assq 'unix:dl ange-ftp-dired-re-dir-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4585 ;; (setq ange-ftp-dired-re-dir-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4586 ;; (cons (cons 'unix:dl ange-ftp-dired-dl-re-dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4587 ;; ange-ftp-dired-re-dir-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4588 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4589 ;;(defun ange-ftp-dired-dl-move-to-filename (&optional raise-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4590 ;; "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
|
4591 ;; ;; This is the Unix dl version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4592 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4593 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4594 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4595 ;; (if (looking-at ". [^ ]+ +\\([0-9]+\\|-\\|=\\) ") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4596 ;; (goto-char (+ (point) 2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4597 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4598 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4599 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4600 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4601 ;;(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
|
4602 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4603 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4604 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4605 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4606 ;;(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
|
4607 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4608 ;; ;; 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
|
4609 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4610 ;; ;; This is the Unix dl version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4611 ;; (let ((opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4612 ;; case-fold-search hidden) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4613 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4614 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4615 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4616 ;; (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4617 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4618 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4619 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4620 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4621 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4622 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4623 ;; (skip-chars-forward "^ /" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4624 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4625 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4626 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4627 ;; (error "No file on this line")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4628 ;; (point))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4629 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4630 ;;(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
|
4631 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4632 ;; (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
|
4633 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 4634 |
4635 ;;;; ------------------------------------------------------------ | |
4636 ;;;; VOS support (VOS support is probably broken, | |
4637 ;;;; but I don't know anything about VOS.) | |
4638 ;;;; ------------------------------------------------------------ | |
4639 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4640 ;(defun ange-ftp-fix-name-for-vos (name &optional reverse) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4641 ; (setq name (copy-sequence name)) |
1106 | 4642 ; (let ((from (if reverse ?\> ?\/)) |
4643 ; (to (if reverse ?\/ ?\>)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4644 ; (i (1- (length name)))) |
1106 | 4645 ; (while (>= i 0) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4646 ; (if (= (aref name i) from) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4647 ; (aset name i to)) |
1106 | 4648 ; (setq i (1- i))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4649 ; name)) |
1106 | 4650 ; |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4651 ;(or (assq 'vos ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4652 ; (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4653 ; (cons '(vos . ange-ftp-fix-name-for-vos) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4654 ; ange-ftp-fix-name-func-alist))) |
1106 | 4655 ; |
4656 ;(or (memq 'vos ange-ftp-dumb-host-types) | |
4657 ; (setq ange-ftp-dumb-host-types | |
4658 ; (cons 'vos ange-ftp-dumb-host-types))) | |
4659 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4660 ;(defun ange-ftp-fix-dir-name-for-vos (dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4661 ; (ange-ftp-fix-name-for-vos |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4662 ; (concat dir-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4663 ; (if (eq ?/ (aref dir-name (1- (length dir-name)))) |
1106 | 4664 ; "" "/") |
4665 ; "*"))) | |
4666 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4667 ;(or (assq 'vos ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4668 ; (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4669 ; (cons '(vos . ange-ftp-fix-dir-name-for-vos) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4670 ; ange-ftp-fix-dir-name-func-alist))) |
1106 | 4671 ; |
4672 ;(defvar ange-ftp-vos-host-regexp nil | |
4673 ; "If a host matches this regexp then it is assumed to be running VOS.") | |
4674 ; | |
4675 ;(defun ange-ftp-vos-host (host) | |
4676 ; (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
|
4677 ; (save-match-data |
1106 | 4678 ; (string-match ange-ftp-vos-host-regexp host)))) |
4679 ; | |
4680 ;(defun ange-ftp-parse-vos-listing () | |
4681 ; "Parse the current buffer which is assumed to be in VOS list -all | |
4682 ;format, and return a hashtable as the result." | |
4683 ; (let ((tbl (ange-ftp-make-hashtable)) | |
4684 ; (type-list | |
4685 ; '(("^Files: [0-9]+ +Blocks: [0-9]+\n+" nil 40) | |
4686 ; ("^Dirs: [0-9]+\n+" t 30))) | |
4687 ; type-regexp type-is-dir type-col file) | |
4688 ; (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
4689 ; (save-match-data |
1106 | 4690 ; (while type-list |
4691 ; (setq type-regexp (car (car type-list)) | |
4692 ; type-is-dir (nth 1 (car type-list)) | |
4693 ; type-col (nth 2 (car type-list)) | |
4694 ; type-list (cdr type-list)) | |
4695 ; (if (re-search-forward type-regexp nil t) | |
4696 ; (while (eq (char-after (point)) ? ) | |
4697 ; (move-to-column type-col) | |
4698 ; (setq file (buffer-substring (point) | |
4699 ; (progn | |
4700 ; (end-of-line 1) | |
4701 ; (point)))) | |
4702 ; (ange-ftp-put-hash-entry file type-is-dir tbl) | |
4703 ; (forward-line 1)))) | |
4704 ; (ange-ftp-put-hash-entry "." 'vosdir tbl) | |
4705 ; (ange-ftp-put-hash-entry ".." 'vosdir tbl)) | |
4706 ; tbl)) | |
4707 ; | |
4708 ;(or (assq 'vos ange-ftp-parse-list-func-alist) | |
4709 ; (setq ange-ftp-parse-list-func-alist | |
4710 ; (cons '(vos . ange-ftp-parse-vos-listing) | |
4711 ; ange-ftp-parse-list-func-alist))) | |
4712 | |
4713 ;;;; ------------------------------------------------------------ | |
4714 ;;;; VMS support. | |
4715 ;;;; ------------------------------------------------------------ | |
4716 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4717 ;; 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
|
4718 ;; to UNIX-ish. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4719 (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
|
4720 (save-match-data |
1106 | 4721 (if reverse |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4722 (if (string-match "^\\([^:]+:\\)?\\(\\[.*\\]\\)?\\([^][]*\\)$" name) |
1106 | 4723 (let (drive dir file) |
4724 (if (match-beginning 1) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4725 (setq drive (substring name |
1106 | 4726 (match-beginning 1) |
4727 (match-end 1)))) | |
4728 (if (match-beginning 2) | |
4729 (setq dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4730 (substring name (match-beginning 2) (match-end 2)))) |
1106 | 4731 (if (match-beginning 3) |
4732 (setq file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4733 (substring name (match-beginning 3) (match-end 3)))) |
1106 | 4734 (and dir |
4735 (setq dir (apply (function concat) | |
4736 (mapcar (function | |
4737 (lambda (char) | |
4738 (if (= char ?.) | |
4739 (vector ?/) | |
4740 (vector char)))) | |
4741 (substring dir 1 -1))))) | |
4742 (concat (and drive | |
4743 (concat "/" drive "/")) | |
4744 dir (and dir "/") | |
4745 file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4746 (error "name %s didn't match" name)) |
1106 | 4747 (let (drive dir file tmp) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4748 (if (string-match "^/[^:]+:/" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4749 (setq drive (substring name 1 |
1106 | 4750 (1- (match-end 0))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4751 name (substring name (match-end 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4752 (setq tmp (file-name-directory name)) |
1106 | 4753 (if tmp |
4754 (setq dir (apply (function concat) | |
4755 (mapcar (function | |
4756 (lambda (char) | |
4757 (if (= char ?/) | |
4758 (vector ?.) | |
4759 (vector char)))) | |
4760 (substring tmp 0 -1))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4761 (setq file (file-name-nondirectory name)) |
1106 | 4762 (concat drive |
4763 (and dir (concat "[" (if drive nil ".") dir "]")) | |
4764 file))))) | |
4765 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4766 ;; (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
|
4767 ;; (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
|
4768 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4769 (or (assq 'vms ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4770 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4771 (cons '(vms . ange-ftp-fix-name-for-vms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4772 ange-ftp-fix-name-func-alist))) |
1106 | 4773 |
4774 (or (memq 'vms ange-ftp-dumb-host-types) | |
4775 (setq ange-ftp-dumb-host-types | |
4776 (cons 'vms ange-ftp-dumb-host-types))) | |
4777 | |
4778 ;; It is important that this function barf for directories for which we know | |
4779 ;; that we cannot possibly get a directory listing, such as "/" and "/DEV:/". | |
4780 ;; This is because it saves an unnecessary FTP error, or possibly the listing | |
4781 ;; might succeed, but give erroneous info. This last case is particularly | |
4782 ;; likely for OS's (like MTS) for which we need to use a wildcard in order | |
4783 ;; to list a directory. | |
4784 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4785 ;; 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
|
4786 (defun ange-ftp-fix-dir-name-for-vms (dir-name) |
1106 | 4787 ;; Should there be entries for .. -> [-] and . -> [] below. Don't |
4788 ;; think so, because expand-filename should have already short-circuited | |
4789 ;; them. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4790 (cond ((string-equal dir-name "/") |
1106 | 4791 (error "Cannot get listing for fictitious \"/\" directory.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4792 ((string-match "^/[-A-Z0-9_$]+:/$" dir-name) |
1106 | 4793 (error "Cannot get listing for device.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4794 ((ange-ftp-fix-name-for-vms dir-name)))) |
1106 | 4795 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4796 (or (assq 'vms ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4797 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4798 (cons '(vms . ange-ftp-fix-dir-name-for-vms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4799 ange-ftp-fix-dir-name-func-alist))) |
1106 | 4800 |
4801 (defvar ange-ftp-vms-host-regexp nil) | |
4802 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4803 ;; Return non-nil if HOST is running VMS. |
1106 | 4804 (defun ange-ftp-vms-host (host) |
4805 (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
|
4806 (save-match-data |
1106 | 4807 (string-match ange-ftp-vms-host-regexp host)))) |
4808 | |
4809 ;; Because some VMS ftp servers convert filenames to lower case | |
4810 ;; we allow a-z in the filename regexp. I'm not too happy about this. | |
4811 | |
4812 (defconst ange-ftp-vms-filename-regexp | |
4813 (concat | |
6309
9217f29851c2
Don't use triple-hyphen in a character class.
Karl Heuer <kwzh@gnu.org>
parents:
6192
diff
changeset
|
4814 "\\(\\([_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
|
4815 "[-_A-Za-z0-9$]*;+[0-9]*\\)") |
1106 | 4816 "Regular expression to match for a valid VMS file name in Dired buffer. |
4817 Stupid freaking bug! Position of _ and $ shouldn't matter but they do. | |
4818 Having [A-Z0-9$_] bombs on filename _$$CHANGE_LOG$.TXT$ and $CHANGE_LOG$.TX | |
4819 Other orders of $ and _ seem to all work just fine.") | |
4820 | |
4821 ;; These parsing functions are as general as possible because the syntax | |
4822 ;; of ftp listings from VMS hosts is a bit erratic. What saves us is that | |
4823 ;; the VMS filename syntax is so rigid. If they bomb on a listing in the | |
4824 ;; standard VMS Multinet format, then this is a bug. If they bomb on a listing | |
4825 ;; from vms.weird.net, then too bad. | |
4826 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4827 ;; Extract the next filename from a VMS dired-like listing. |
1106 | 4828 (defun ange-ftp-parse-vms-filename () |
4829 (if (re-search-forward | |
4830 ange-ftp-vms-filename-regexp | |
4831 nil t) | |
4832 (buffer-substring (match-beginning 0) (match-end 0)))) | |
4833 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4834 ;; 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
|
4835 ;; format, and return a hashtable as the result. |
1106 | 4836 (defun ange-ftp-parse-vms-listing () |
4837 (let ((tbl (ange-ftp-make-hashtable)) | |
4838 file) | |
4839 (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
4840 (save-match-data |
1106 | 4841 (while (setq file (ange-ftp-parse-vms-filename)) |
4842 (if (string-match "\\.\\(DIR\\|dir\\);[0-9]+" file) | |
4843 ;; deal with directories | |
4844 (ange-ftp-put-hash-entry | |
4845 (substring file 0 (match-beginning 0)) t tbl) | |
4846 (ange-ftp-put-hash-entry file nil tbl) | |
4847 (if (string-match ";[0-9]+$" file) ; deal with extension | |
4848 ;; sans extension | |
4849 (ange-ftp-put-hash-entry | |
4850 (substring file 0 (match-beginning 0)) nil tbl))) | |
4851 (forward-line 1)) | |
4852 ;; Would like to look for a "Total" line, or a "Directory" line to | |
4853 ;; make sure that the listing isn't complete garbage before putting | |
4854 ;; in "." and "..", but we can't even count on all VAX's giving us | |
4855 ;; either of these. | |
4856 (ange-ftp-put-hash-entry "." t tbl) | |
4857 (ange-ftp-put-hash-entry ".." t tbl)) | |
4858 tbl)) | |
4859 | |
4860 (or (assq 'vms ange-ftp-parse-list-func-alist) | |
4861 (setq ange-ftp-parse-list-func-alist | |
4862 (cons '(vms . ange-ftp-parse-vms-listing) | |
4863 ange-ftp-parse-list-func-alist))) | |
4864 | |
4865 ;; This version only deletes file entries which have | |
4866 ;; explicit version numbers, because that is all VMS allows. | |
4867 | |
4868 ;; Can the following two functions be speeded up using file | |
4869 ;; completion functions? | |
4870 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4871 (defun ange-ftp-vms-delete-file-entry (name &optional dir-p) |
1106 | 4872 (if dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4873 (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
|
4874 (save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4875 (let ((file (ange-ftp-get-file-part name))) |
1106 | 4876 (if (string-match ";[0-9]+$" file) |
4877 ;; In VMS you can't delete a file without an explicit | |
4878 ;; version number, or wild-card (e.g. FOO;*) | |
4879 ;; For now, we give up on wildcards. | |
4880 (let ((files (ange-ftp-get-hash-entry | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4881 (file-name-directory name) |
1106 | 4882 ange-ftp-files-hashtable))) |
4883 (if files | |
4884 (let* ((root (substring file 0 | |
4885 (match-beginning 0))) | |
4886 (regexp (concat "^" | |
4887 (regexp-quote root) | |
4888 ";[0-9]+$")) | |
4889 versions) | |
4890 (ange-ftp-del-hash-entry file files) | |
4891 ;; Now we need to check if there are any | |
4892 ;; versions left. If not, then delete the | |
4893 ;; root entry. | |
4894 (mapatoms | |
4895 '(lambda (sym) | |
4896 (and (string-match regexp (get sym 'key)) | |
4897 (setq versions t))) | |
4898 files) | |
4899 (or versions | |
4900 (ange-ftp-del-hash-entry root files)))))))))) | |
4901 | |
4902 (or (assq 'vms ange-ftp-delete-file-entry-alist) | |
4903 (setq ange-ftp-delete-file-entry-alist | |
4904 (cons '(vms . ange-ftp-vms-delete-file-entry) | |
4905 ange-ftp-delete-file-entry-alist))) | |
4906 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4907 (defun ange-ftp-vms-add-file-entry (name &optional dir-p) |
1106 | 4908 (if dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4909 (ange-ftp-internal-add-file-entry name t) |
1106 | 4910 (let ((files (ange-ftp-get-hash-entry |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4911 (file-name-directory name) |
1106 | 4912 ange-ftp-files-hashtable))) |
4913 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4914 (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
|
4915 (save-match-data |
1106 | 4916 (if (string-match ";[0-9]+$" file) |
4917 (ange-ftp-put-hash-entry | |
4918 (substring file 0 (match-beginning 0)) | |
4919 nil files) | |
4920 ;; Need to figure out what version of the file | |
4921 ;; is being added. | |
4922 (let ((regexp (concat "^" | |
4923 (regexp-quote file) | |
4924 ";\\([0-9]+\\)$")) | |
4925 (version 0)) | |
4926 (mapatoms | |
4927 '(lambda (sym) | |
4928 (let ((name (get sym 'key))) | |
4929 (and (string-match regexp name) | |
4930 (setq version | |
4931 (max version | |
4932 (string-to-int | |
4933 (substring name | |
4934 (match-beginning 1) | |
4935 (match-end 1)))))))) | |
4936 files) | |
4937 (setq version (1+ version)) | |
4938 (ange-ftp-put-hash-entry | |
4939 (concat file ";" (int-to-string version)) | |
4940 nil files)))) | |
4941 (ange-ftp-put-hash-entry file nil files)))))) | |
4942 | |
4943 (or (assq 'vms ange-ftp-add-file-entry-alist) | |
4944 (setq ange-ftp-add-file-entry-alist | |
4945 (cons '(vms . ange-ftp-vms-add-file-entry) | |
4946 ange-ftp-add-file-entry-alist))) | |
4947 | |
4948 | |
4949 (defun ange-ftp-add-vms-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4950 "Mark HOST as the name of a machine running VMS." |
1106 | 4951 (interactive |
4952 (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
|
4953 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4954 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 4955 (if (not (ange-ftp-vms-host host)) |
4956 (setq ange-ftp-vms-host-regexp | |
4957 (concat "^" (regexp-quote host) "$" | |
4958 (and ange-ftp-vms-host-regexp "\\|") | |
4959 ange-ftp-vms-host-regexp) | |
4960 ange-ftp-host-cache nil))) | |
4961 | |
4962 | |
4963 (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
|
4964 (save-match-data |
1106 | 4965 (if (string-match "\\.\\(DIR\\|dir\\)\\(;[0-9]+\\)?$" name) |
4966 (setq name (substring name 0 (match-beginning 0)))) | |
4967 (ange-ftp-real-file-name-as-directory name))) | |
4968 | |
4969 (or (assq 'vms ange-ftp-file-name-as-directory-alist) | |
4970 (setq ange-ftp-file-name-as-directory-alist | |
4971 (cons '(vms . ange-ftp-vms-file-name-as-directory) | |
4972 ange-ftp-file-name-as-directory-alist))) | |
4973 | |
4974 ;;; Tree dired support: | |
4975 | |
4976 ;; For this code I have borrowed liberally from Sebastian Kremer's | |
4977 ;; dired-vms.el | |
4978 | |
4979 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4980 ;;;; These regexps must be anchored to beginning of line. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4981 ;;;; 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
|
4982 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4983 ;;(defconst ange-ftp-dired-vms-re-exe "^. [^ \t.]+\\.\\(EXE\\|exe\\)[; ]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4984 ;; "Regular expression to use to search for VMS executable files.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4985 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4986 ;;(defconst ange-ftp-dired-vms-re-dir "^. [^ \t.]+\\.\\(DIR\\|dir\\)[; ]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4987 ;; "Regular expression to use to search for VMS directories.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4988 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4989 ;;(or (assq 'vms ange-ftp-dired-re-exe-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4990 ;; (setq ange-ftp-dired-re-exe-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4991 ;; (cons (cons 'vms ange-ftp-dired-vms-re-exe) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4992 ;; ange-ftp-dired-re-exe-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4993 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4994 ;;(or (assq 'vms ange-ftp-dired-re-dir-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4995 ;; (setq ange-ftp-dired-re-dir-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4996 ;; (cons (cons 'vms ange-ftp-dired-vms-re-dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4997 ;; ange-ftp-dired-re-dir-alist))) |
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 ;;(defun ange-ftp-dired-vms-insert-headerline (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5000 ;; ;; VMS inserts a headerline. I would prefer the headerline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5001 ;; ;; to be in ange-ftp format. This version tries to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5002 ;; ;; be careful, because we can't count on a headerline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5003 ;; ;; over ftp, and we wouldn't want to delete anything |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5004 ;; ;; important. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5005 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5006 ;; (if (looking-at "^ wildcard ") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5007 ;; (forward-line 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5008 ;; (if (looking-at "^[ \n\t]*[^\n]+\\][ \t]*\n") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5009 ;; (delete-region (point) (match-end 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5010 ;; (ange-ftp-real-dired-insert-headerline dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5011 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5012 ;;(or (assq 'vms ange-ftp-dired-insert-headerline-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5013 ;; (setq ange-ftp-dired-insert-headerline-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5014 ;; (cons '(vms . ange-ftp-dired-vms-insert-headerline) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5015 ;; ange-ftp-dired-insert-headerline-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5016 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5017 ;;(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
|
5018 ;; "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
|
5019 ;;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
|
5020 ;; ;; This is the VMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5021 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5022 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5023 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5024 ;; (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
|
5025 ;; (goto-char (match-beginning 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5026 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5027 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5028 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5029 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5030 ;;(or (assq 'vms ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5031 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5032 ;; (cons '(vms . ange-ftp-dired-vms-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5033 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5034 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5035 ;;(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
|
5036 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5037 ;; ;; 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
|
5038 ;; ;; case-fold-search must be nil, at least for VMS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5039 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5040 ;; ;; This is the VMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5041 ;; (let (opoint hidden case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5042 ;; (setq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5043 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5044 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5045 ;; (save-excursion (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5046 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5047 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5048 ;; (re-search-forward ange-ftp-vms-filename-regexp eol t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5049 ;; (or no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5050 ;; (not (eq opoint (point))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5051 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5052 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5053 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5054 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5055 ;; "No file on this line"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5056 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5057 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5058 ;; (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5059 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5060 ;;(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
|
5061 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5062 ;; (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
|
5063 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5064 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5065 ;;(defun ange-ftp-dired-vms-between-files () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5066 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5067 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5068 ;; (or (equal (following-char) 10) ; newline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5069 ;; (equal (following-char) 9) ; tab |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5070 ;; (progn (forward-char 2) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5071 ;; (or (looking-at "Total of") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5072 ;; (equal (following-char) 32)))))) |
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 'vms ange-ftp-dired-between-files-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5075 ;; (setq ange-ftp-dired-between-files-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5076 ;; (cons '(vms . ange-ftp-dired-vms-between-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5077 ;; ange-ftp-dired-between-files-alist))) |
1106 | 5078 |
5079 ;; Beware! In VMS filenames must be of the form "FILE.TYPE". | |
5080 ;; Therefore, we cannot just append a ".Z" to filenames for | |
5081 ;; compressed files. Instead, we turn "FILE.TYPE" into | |
5082 ;; "FILE.TYPE-Z". Hope that this is a reasonable thing to do. | |
5083 | |
5084 (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
|
5085 (cond |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5086 ((string-match "-Z;[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5087 (list nil (substring name 0 (match-beginning 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5088 ((string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5089 (list nil (substring name 0 (match-beginning 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5090 ((string-match "-Z$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5091 (list nil (substring name 0 -2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5092 (t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5093 (list t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5094 (if (string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5095 (concat (substring name 0 (match-beginning 0)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5096 "-Z") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5097 (concat name "-Z")))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5098 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5099 (or (assq 'vms ange-ftp-make-compressed-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5100 (setq ange-ftp-make-compressed-filename-alist |
1106 | 5101 (cons '(vms . ange-ftp-vms-make-compressed-filename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5102 ange-ftp-make-compressed-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5103 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5104 ;;;; 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
|
5105 ;;;; (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
|
5106 ;;;; 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
|
5107 ;;;; (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
|
5108 ;;;; If dired gets confused, revert-buffer will fix it. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5109 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5110 ;;(defun ange-ftp-dired-vms-ls-trim () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5111 ;; (goto-char (point-min)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5112 ;; (let ((case-fold-search nil)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5113 ;; (re-search-forward ange-ftp-vms-filename-regexp)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5114 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5115 ;; (delete-region (point-min) (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5116 ;; (forward-line 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5117 ;; (delete-region (point) (point-max))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5118 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5119 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5120 ;;(or (assq 'vms ange-ftp-dired-ls-trim-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5121 ;; (setq ange-ftp-dired-ls-trim-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5122 ;; (cons '(vms . ange-ftp-dired-vms-ls-trim) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5123 ;; ange-ftp-dired-ls-trim-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5124 |
12977
046bc1e2acc9
(ange-ftp-vms-sans-version): Accept extra args.
Richard M. Stallman <rms@gnu.org>
parents:
12741
diff
changeset
|
5125 (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
|
5126 (save-match-data |
1106 | 5127 (if (string-match ";[0-9]+$" name) |
5128 (substring name 0 (match-beginning 0)) | |
5129 name))) | |
5130 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5131 (or (assq 'vms ange-ftp-sans-version-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5132 (setq ange-ftp-sans-version-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5133 (cons '(vms . ange-ftp-vms-sans-version) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5134 ange-ftp-sans-version-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5135 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5136 ;;(defvar ange-ftp-file-version-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5137 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5138 ;;;;; 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
|
5139 ;;;;; 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
|
5140 ;;;;; ange-ftp-dired-vms-flag-backup-files. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5141 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5142 ;;(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
|
5143 ;; "Flag numerical backups for deletion. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5144 ;;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
|
5145 ;;Positive prefix arg KEEP overrides `dired-kept-versions'; |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5146 ;;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
|
5147 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5148 ;;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
|
5149 ;;with a prefix argument." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5150 ;;; (interactive "P") ; Never actually called interactively. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5151 ;; (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
|
5152 ;; (let ((early-retention (if (< keep 0) (- keep) kept-old-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5153 ;; ;; 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
|
5154 ;; ;; This could wipe ALL copies of the file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5155 ;; (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
|
5156 ;; (action (or msg "Cleaning")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5157 ;; (ange-ftp-trample-marker (or marker dired-del-marker)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5158 ;; (ange-ftp-file-version-alist ())) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5159 ;; (message (concat action |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5160 ;; " numerical backups (keeping %d late, %d old)...") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5161 ;; late-retention early-retention) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5162 ;; ;; Look at each file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5163 ;; ;; If the file has numeric backup versions, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5164 ;; ;; 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
|
5165 ;; ;; (FILENAME . VERSION-NUMBER-LIST) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5166 ;; (dired-map-dired-file-lines (function |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5167 ;; ange-ftp-dired-vms-collect-file-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5168 ;; ;; Sort each VERSION-NUMBER-LIST, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5169 ;; ;; and remove the versions not to be deleted. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5170 ;; (let ((fval ange-ftp-file-version-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5171 ;; (while fval |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5172 ;; (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5173 ;; (v-count (length sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5174 ;; (if (> v-count (+ early-retention late-retention)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5175 ;; (rplacd (nthcdr early-retention sorted-v-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5176 ;; (nthcdr (- v-count late-retention) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5177 ;; sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5178 ;; (rplacd (car fval) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5179 ;; (cdr sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5180 ;; (setq fval (cdr fval)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5181 ;; ;; 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
|
5182 ;; ;; 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
|
5183 ;; (dired-map-dired-file-lines |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5184 ;; (function |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5185 ;; ange-ftp-dired-vms-trample-file-versions mark)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5186 ;; (message (concat action " numerical backups...done")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5187 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5188 ;;(or (assq 'vms ange-ftp-dired-clean-directory-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5189 ;; (setq ange-ftp-dired-clean-directory-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5190 ;; (cons '(vms . ange-ftp-dired-vms-clean-directory) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5191 ;; ange-ftp-dired-clean-directory-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5192 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5193 ;;(defun ange-ftp-dired-vms-collect-file-versions (fn) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5194 ;; ;; "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
|
5195 ;; ;;That is a list of strings which are file names. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5196 ;; ;;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
|
5197 ;;(let ((name (nth 2 (ange-ftp-ftp-name fn)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5198 ;; (if (string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5199 ;; (let* ((name (substring name 0 (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5200 ;; (fn (ange-ftp-replace-name-component fn name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5201 ;; (if (not (assq fn ange-ftp-file-version-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5202 ;; (let* ((base-versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5203 ;; (concat (file-name-nondirectory name) ";")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5204 ;; (bv-length (length base-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5205 ;; (possibilities (file-name-all-completions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5206 ;; base-versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5207 ;; (file-name-directory fn))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5208 ;; (versions (mapcar |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5209 ;; '(lambda (arg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5210 ;; (if (and (string-match |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5211 ;; "[0-9]+$" arg bv-length) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5212 ;; (= (match-beginning 0) bv-length)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5213 ;; (string-to-int (substring arg bv-length)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5214 ;; 0)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5215 ;; possibilities))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5216 ;; (if versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5217 ;; (setq |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5218 ;; ange-ftp-file-version-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5219 ;; (cons (cons fn versions) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5220 ;; ange-ftp-file-version-alist))))))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5221 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5222 ;;(defun ange-ftp-dired-vms-trample-file-versions (fn) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5223 ;; (let* ((start-vn (string-match ";[0-9]+$" fn)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5224 ;; base-version-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5225 ;; (and start-vn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5226 ;; (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
|
5227 ;; (assoc (substring fn 0 start-vn) ; this looks like a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5228 ;; ange-ftp-file-version-alist)) ; subversion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5229 ;; (not (memq (string-to-int (substring fn (1+ start-vn))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5230 ;; base-version-list)) ; this one doesn't make the cut |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5231 ;; (progn (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5232 ;; (delete-char 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5233 ;; (insert ange-ftp-trample-marker))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5234 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5235 ;;(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
|
5236 ;; (let ((dired-kept-versions 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5237 ;; (kept-old-versions 0) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5238 ;; marker msg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5239 ;; (if unflag-p |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5240 ;; (setq marker ?\040 msg "Unflagging") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5241 ;; (setq marker dired-del-marker msg "Cleaning")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5242 ;; (ange-ftp-dired-vms-clean-directory nil marker msg))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5243 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5244 ;;(or (assq 'vms ange-ftp-dired-flag-backup-files-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5245 ;; (setq ange-ftp-dired-flag-backup-files-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5246 ;; (cons '(vms . ange-ftp-dired-vms-flag-backup-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5247 ;; ange-ftp-dired-flag-backup-files-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5248 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5249 ;;(defun ange-ftp-dired-vms-backup-diff (&optional switches) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5250 ;; (let ((file (dired-get-filename 'no-dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5251 ;; bak) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5252 ;; (if (and (string-match ";[0-9]+$" file) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5253 ;; ;; Find most recent previous version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5254 ;; (let ((root (substring file 0 (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5255 ;; (ver |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5256 ;; (string-to-int (substring file (1+ (match-beginning 0))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5257 ;; found) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5258 ;; (setq ver (1- ver)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5259 ;; (while (and (> ver 0) (not found)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5260 ;; (setq bak (concat root ";" (int-to-string ver))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5261 ;; (and (file-exists-p bak) (setq found t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5262 ;; (setq ver (1- ver))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5263 ;; found)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5264 ;; (if switches |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5265 ;; (diff (expand-file-name bak) (expand-file-name file) switches) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5266 ;; (diff (expand-file-name bak) (expand-file-name file))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5267 ;; (error "No previous version found for %s" file)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5268 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5269 ;;(or (assq 'vms ange-ftp-dired-backup-diff-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5270 ;; (setq ange-ftp-dired-backup-diff-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5271 ;; (cons '(vms . ange-ftp-dired-vms-backup-diff) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5272 ;; ange-ftp-dired-backup-diff-alist))) |
1106 | 5273 |
5274 | |
5275 ;;;; ------------------------------------------------------------ | |
5276 ;;;; MTS support | |
5277 ;;;; ------------------------------------------------------------ | |
5278 | |
5279 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5280 ;; 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
|
5281 ;; MTS to UNIX-ish. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5282 (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
|
5283 (save-match-data |
1106 | 5284 (if reverse |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5285 (if (string-match "^\\([^:]+:\\)?\\(.*\\)$" name) |
1106 | 5286 (let (acct file) |
5287 (if (match-beginning 1) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5288 (setq acct (substring name 0 (match-end 1)))) |
1106 | 5289 (if (match-beginning 2) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5290 (setq file (substring name |
1106 | 5291 (match-beginning 2) (match-end 2)))) |
5292 (concat (and acct (concat "/" acct "/")) | |
5293 file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5294 (error "name %s didn't match" name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5295 (if (string-match "^/\\([^:]+:\\)/\\(.*\\)$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5296 (concat (substring name 1 (match-end 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5297 (substring name (match-beginning 2) (match-end 2))) |
1106 | 5298 ;; Let's hope that mts will recognize it anyway. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5299 name)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5300 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5301 (or (assq 'mts ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5302 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5303 (cons '(mts . ange-ftp-fix-name-for-mts) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5304 ange-ftp-fix-name-func-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5305 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5306 ;; 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
|
5307 ;; Remember that there are no directories in MTS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5308 (defun ange-ftp-fix-dir-name-for-mts (dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5309 (if (string-equal dir-name "/") |
1106 | 5310 (error "Cannot get listing for fictitious \"/\" directory.") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5311 (let ((dir-name (ange-ftp-fix-name-for-mts dir-name))) |
1106 | 5312 (cond |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5313 ((string-equal dir-name "") |
1106 | 5314 "?") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5315 ((string-match ":$" dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5316 (concat dir-name "?")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5317 (dir-name))))) ; It's just a single file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5318 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5319 (or (assq 'mts ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5320 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5321 (cons '(mts . ange-ftp-fix-dir-name-for-mts) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5322 ange-ftp-fix-dir-name-func-alist))) |
1106 | 5323 |
5324 (or (memq 'mts ange-ftp-dumb-host-types) | |
5325 (setq ange-ftp-dumb-host-types | |
5326 (cons 'mts ange-ftp-dumb-host-types))) | |
5327 | |
5328 (defvar ange-ftp-mts-host-regexp nil) | |
5329 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5330 ;; Return non-nil if HOST is running MTS. |
1106 | 5331 (defun ange-ftp-mts-host (host) |
5332 (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
|
5333 (save-match-data |
1106 | 5334 (string-match ange-ftp-mts-host-regexp host)))) |
5335 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5336 ;; Parse the current buffer which is assumed to be in mts ftp dir format. |
1106 | 5337 (defun ange-ftp-parse-mts-listing () |
5338 (let ((tbl (ange-ftp-make-hashtable))) | |
5339 (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
5340 (save-match-data |
1106 | 5341 (while (re-search-forward ange-ftp-date-regexp nil t) |
5342 (end-of-line) | |
5343 (skip-chars-backward " ") | |
5344 (let ((end (point))) | |
5345 (skip-chars-backward "-A-Z0-9_.!") | |
5346 (ange-ftp-put-hash-entry (buffer-substring (point) end) nil tbl)) | |
5347 (forward-line 1))) | |
5348 ;; Don't need to bother with .. | |
5349 (ange-ftp-put-hash-entry "." t tbl) | |
5350 tbl)) | |
5351 | |
5352 (or (assq 'mts ange-ftp-parse-list-func-alist) | |
5353 (setq ange-ftp-parse-list-func-alist | |
5354 (cons '(mts . ange-ftp-parse-mts-listing) | |
5355 ange-ftp-parse-list-func-alist))) | |
5356 | |
5357 (defun ange-ftp-add-mts-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5358 "Mark HOST as the name of a machine running MTS." |
1106 | 5359 (interactive |
5360 (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
|
5361 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5362 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 5363 (if (not (ange-ftp-mts-host host)) |
5364 (setq ange-ftp-mts-host-regexp | |
5365 (concat "^" (regexp-quote host) "$" | |
5366 (and ange-ftp-mts-host-regexp "\\|") | |
5367 ange-ftp-mts-host-regexp) | |
5368 ange-ftp-host-cache nil))) | |
5369 | |
5370 ;;; Tree dired support: | |
5371 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5372 ;;;; 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
|
5373 ;;;; 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
|
5374 ;;;; 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
|
5375 ;;;; following more flexible. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5376 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5377 ;;(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
|
5378 ;; "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
|
5379 ;;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
|
5380 ;; ;; This is the MTS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5381 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5382 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5383 ;; (if (re-search-forward |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5384 ;; ange-ftp-date-regexp eol t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5385 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5386 ;; (skip-chars-forward " ") ; Eat blanks after date |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5387 ;; (skip-chars-forward "0-9:" eol) ; Eat time or year |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5388 ;; (skip-chars-forward " " eol) ; one space before filename |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5389 ;; ;; 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
|
5390 ;; ;; ACCT: to the beginning of the filename. Skip over this. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5391 ;; (and (looking-at "[A-Z0-9_.]+:") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5392 ;; (goto-char (match-end 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5393 ;; (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5394 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5395 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5396 ;; nil))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5397 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5398 ;;(or (assq 'mts ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5399 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5400 ;; (cons '(mts . ange-ftp-dired-mts-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5401 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5402 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5403 ;;(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
|
5404 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5405 ;; ;; 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
|
5406 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5407 ;; ;; This is the MTS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5408 ;; (let (opoint hidden case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5409 ;; (setq opoint (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5410 ;; eol (save-excursion (end-of-line) (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5411 ;; hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5412 ;; (save-excursion (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5413 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5414 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5415 ;; (skip-chars-forward "-A-Z0-9._!" eol)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5416 ;; (or no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5417 ;; (not (eq opoint (point))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5418 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5419 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5420 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5421 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5422 ;; "No file on this line"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5423 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5424 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5425 ;; (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5426 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5427 ;;(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
|
5428 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5429 ;; (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
|
5430 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 5431 |
5432 ;;;; ------------------------------------------------------------ | |
5433 ;;;; CMS support | |
5434 ;;;; ------------------------------------------------------------ | |
5435 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5436 ;; 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
|
5437 ;; things with cd's. We actually send too many cd's, but it's dangerous |
1106 | 5438 ;; to try to remember the current minidisk, because if the connection |
5439 ;; is closed and needs to be reopened, we will find ourselves back in | |
5440 ;; the default minidisk. This is fairly likely since CMS ftp servers | |
5441 ;; usually close the connection after 5 minutes of inactivity. | |
5442 | |
5443 ;; Have I got the filename character set right? | |
5444 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5445 (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
|
5446 (save-match-data |
1106 | 5447 (if reverse |
5448 ;; Since we only convert output from a pwd in this direction, | |
5449 ;; we'll assume that it's a minidisk, and make it into a | |
5450 ;; directory file name. Note that the expand-dir-hashtable | |
5451 ;; stores directories without the trailing /. Is this | |
5452 ;; consistent? | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5453 (concat "/" name) |
1106 | 5454 (if (string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5455 name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5456 (let ((minidisk (substring name 1 (match-end 1)))) |
1106 | 5457 (if (match-beginning 2) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5458 (let ((file (substring name (match-beginning 2) |
1106 | 5459 (match-end 2))) |
5460 (cmd (concat "cd " minidisk)) | |
5461 | |
5462 ;; Note that host and user are bound in the call | |
5463 ;; to ange-ftp-send-cmd | |
5464 (proc (ange-ftp-get-process ange-ftp-this-host | |
5465 ange-ftp-this-user))) | |
5466 | |
5467 ;; Must use ange-ftp-raw-send-cmd here to avoid | |
5468 ;; an infinite loop. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5469 (if (car (ange-ftp-raw-send-cmd proc cmd ange-ftp-this-msg)) |
1106 | 5470 file |
5471 ;; failed... try ONCE more. | |
5472 (setq proc (ange-ftp-get-process ange-ftp-this-host | |
5473 ange-ftp-this-user)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5474 (let ((result (ange-ftp-raw-send-cmd proc cmd |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5475 ange-ftp-this-msg))) |
1106 | 5476 (if (car result) |
5477 file | |
5478 ;; failed. give up. | |
5479 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user | |
5480 (format "cd to minidisk %s failed: %s" | |
5481 minidisk (cdr result))))))) | |
5482 ;; return the minidisk | |
5483 minidisk)) | |
5484 (error "Invalid CMS filename"))))) | |
5485 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5486 (or (assq 'cms ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5487 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5488 (cons '(cms . ange-ftp-fix-name-for-cms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5489 ange-ftp-fix-name-func-alist))) |
1106 | 5490 |
5491 (or (memq 'cms ange-ftp-dumb-host-types) | |
5492 (setq ange-ftp-dumb-host-types | |
5493 (cons 'cms ange-ftp-dumb-host-types))) | |
5494 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5495 ;; 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
|
5496 (defun ange-ftp-fix-dir-name-for-cms (dir-name) |
1106 | 5497 (cond |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5498 ((string-equal "/" dir-name) |
1106 | 5499 (error "Cannot get listing for fictitious \"/\" directory.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5500 ((string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5501 (let* ((minidisk (substring dir-name (match-beginning 1) (match-end 1))) |
1106 | 5502 ;; 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
|
5503 (proc (ange-ftp-get-process ange-ftp-this-host ange-ftp-this-user)) |
1106 | 5504 (cmd (concat "cd " minidisk)) |
5505 (file (if (match-beginning 2) | |
5506 ;; it's a single file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5507 (substring dir-name (match-beginning 2) |
1106 | 5508 (match-end 2)) |
5509 ;; use the wild-card | |
5510 "*"))) | |
5511 (if (car (ange-ftp-raw-send-cmd proc cmd)) | |
5512 file | |
5513 ;; try again... | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5514 (setq proc (ange-ftp-get-process ange-ftp-this-host |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5515 ange-ftp-this-user)) |
1106 | 5516 (let ((result (ange-ftp-raw-send-cmd proc cmd))) |
5517 (if (car result) | |
5518 file | |
5519 ;; give up | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5520 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user |
14887
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
5521 (format "cd to minidisk %s failed: %s" |
1106 | 5522 minidisk (cdr result)))))))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5523 (t (error "Invalid CMS file name")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5524 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5525 (or (assq 'cms ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5526 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5527 (cons '(cms . ange-ftp-fix-dir-name-for-cms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5528 ange-ftp-fix-dir-name-func-alist))) |
1106 | 5529 |
5530 (defvar ange-ftp-cms-host-regexp nil | |
5531 "Regular expression to match hosts running the CMS operating system.") | |
5532 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5533 ;; Return non-nil if HOST is running CMS. |
1106 | 5534 (defun ange-ftp-cms-host (host) |
5535 (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
|
5536 (save-match-data |
1106 | 5537 (string-match ange-ftp-cms-host-regexp host)))) |
5538 | |
5539 (defun ange-ftp-add-cms-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5540 "Mark HOST as the name of a CMS host." |
1106 | 5541 (interactive |
5542 (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
|
5543 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5544 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 5545 (if (not (ange-ftp-cms-host host)) |
5546 (setq ange-ftp-cms-host-regexp | |
5547 (concat "^" (regexp-quote host) "$" | |
5548 (and ange-ftp-cms-host-regexp "\\|") | |
5549 ange-ftp-cms-host-regexp) | |
5550 ange-ftp-host-cache nil))) | |
5551 | |
5552 (defun ange-ftp-parse-cms-listing () | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5553 ;; Parse the current buffer which is assumed to be a CMS directory listing. |
1106 | 5554 ;; If we succeed in getting a listing, then we will assume that the minidisk |
5555 ;; exists. file is bound by the call to ange-ftp-ls. This doesn't work | |
5556 ;; because ange-ftp doesn't know that the root hashtable has only part of | |
5557 ;; the info. It will assume that if a minidisk isn't in it, then it doesn't | |
5558 ;; exist. It would be nice if completion worked for minidisks, as we | |
5559 ;; discover them. | |
5560 ; (let* ((dir-file (directory-file-name file)) | |
5561 ; (root (file-name-directory dir-file)) | |
5562 ; (minidisk (ange-ftp-get-file-part dir-file)) | |
5563 ; (root-tbl (ange-ftp-get-hash-entry root ange-ftp-files-hashtable))) | |
5564 ; (if root-tbl | |
5565 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5566 ; (setq root-tbl (ange-ftp-make-hashtable)) | |
5567 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5568 ; (ange-ftp-put-hash-entry "." t root-tbl) | |
5569 ; (ange-ftp-set-files root root-tbl))) | |
5570 ;; Now do the usual parsing | |
5571 (let ((tbl (ange-ftp-make-hashtable))) | |
5572 (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
5573 (save-match-data |
1106 | 5574 (while |
5575 (re-search-forward | |
5576 "^\\([-A-Z0-9$_]+\\) +\\([-A-Z0-9$_]+\\) +[VF] +[0-9]+ " nil t) | |
5577 (ange-ftp-put-hash-entry | |
5578 (concat (buffer-substring (match-beginning 1) | |
5579 (match-end 1)) | |
5580 "." | |
5581 (buffer-substring (match-beginning 2) | |
5582 (match-end 2))) | |
5583 nil tbl) | |
5584 (forward-line 1)) | |
5585 (ange-ftp-put-hash-entry "." t tbl)) | |
5586 tbl)) | |
5587 | |
5588 (or (assq 'cms ange-ftp-parse-list-func-alist) | |
5589 (setq ange-ftp-parse-list-func-alist | |
5590 (cons '(cms . ange-ftp-parse-cms-listing) | |
5591 ange-ftp-parse-list-func-alist))) | |
5592 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5593 ;;;;; Tree dired support: |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5594 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5595 ;;(defconst ange-ftp-dired-cms-re-exe |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5596 ;; "^. [-A-Z0-9$_]+ +EXEC " |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5597 ;; "Regular expression to use to search for CMS executables.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5598 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5599 ;;(or (assq 'cms ange-ftp-dired-re-exe-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5600 ;; (setq ange-ftp-dired-re-exe-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5601 ;; (cons (cons 'cms ange-ftp-dired-cms-re-exe) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5602 ;; ange-ftp-dired-re-exe-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5603 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5604 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5605 ;;(defun ange-ftp-dired-cms-insert-headerline (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5606 ;; ;; 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
|
5607 ;; ;; aesthetics. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5608 ;; (insert "\n") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5609 ;; (forward-char -1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5610 ;; (ange-ftp-real-dired-insert-headerline dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5611 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5612 ;;(or (assq 'cms ange-ftp-dired-insert-headerline-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5613 ;; (setq ange-ftp-dired-insert-headerline-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5614 ;; (cons '(cms . ange-ftp-dired-cms-insert-headerline) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5615 ;; ange-ftp-dired-insert-headerline-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5616 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5617 ;;(defun ange-ftp-dired-cms-move-to-filename (&optional raise-error eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5618 ;; "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
|
5619 ;; ;; This is the CMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5620 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5621 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5622 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5623 ;; (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
|
5624 ;; (goto-char (1+ (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5625 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5626 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5627 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5628 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5629 ;;(or (assq 'cms ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5630 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5631 ;; (cons '(cms . ange-ftp-dired-cms-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5632 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5633 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5634 ;;(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
|
5635 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5636 ;; ;; 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
|
5637 ;; ;; case-fold-search must be nil, at least for VMS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5638 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5639 ;; ;; This is the CMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5640 ;; (let ((opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5641 ;; case-fold-search hidden) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5642 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5643 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5644 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5645 ;; (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5646 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5647 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5648 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5649 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5650 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5651 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5652 ;; (skip-chars-forward "-A-Z0-9$_" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5653 ;; (skip-chars-forward " " eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5654 ;; (skip-chars-forward "-A-Z0-9$_" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5655 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5656 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5657 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5658 ;; (error "No file on this line")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5659 ;; (point))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5660 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5661 ;;(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
|
5662 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5663 ;; (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
|
5664 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 5665 |
5666 (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
|
5667 (if (string-match "-Z$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5668 (list nil (substring name 0 -2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5669 (list t (concat name "-Z")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5670 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5671 (or (assq 'cms ange-ftp-make-compressed-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5672 (setq ange-ftp-make-compressed-filename-alist |
1106 | 5673 (cons '(cms . ange-ftp-cms-make-compressed-filename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5674 ange-ftp-make-compressed-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5675 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5676 ;;(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
|
5677 ;; (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
|
5678 ;; (and name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5679 ;; (if (string-match "^\\([^ ]+\\) +\\([^ ]+\\)$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5680 ;; (concat (substring name 0 (match-end 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5681 ;; "." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5682 ;; (substring name (match-beginning 2) (match-end 2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5683 ;; name)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5684 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5685 ;;(or (assq 'cms ange-ftp-dired-get-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5686 ;; (setq ange-ftp-dired-get-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5687 ;; (cons '(cms . ange-ftp-dired-cms-get-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5688 ;; ange-ftp-dired-get-filename-alist))) |
1106 | 5689 |
5690 ;;;; ------------------------------------------------------------ | |
5691 ;;;; Finally provide package. | |
5692 ;;;; ------------------------------------------------------------ | |
5693 | |
5694 (provide 'ange-ftp) | |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
5695 |
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
5696 ;;; ange-ftp.el ends here |