Mercurial > emacs
annotate lisp/ange-ftp.el @ 16644:3a93437adce1
(status_notify): Test p->infd > 0
before each call to read_process_output.
(read_process_output): Handle match data properly in recursive calls.
(exec_sentinel): Likewise.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 08 Dec 1996 21:36:42 +0000 |
parents | e746a7bd6376 |
children | 3b6153697884 |
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 |
14734 | 3 ;; Copyright (C) 1989,90,91,92,93,94,95,96 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. |
14169 | 563 ;; Currently, 'unix is used as the default remote host type. |
564 ;; Maybe we should use t. | |
565 ;; | |
566 ;; 'type = a remote host of TYPE type. | |
567 ;; | |
568 ;; 'type:list = a remote host of TYPE type, using a specialized ftp listing | |
569 ;; program called list. This is currently only used for Unix | |
570 ;; dl (descriptive listings), when ange-ftp-dired-host-type | |
571 ;; is set to 'unix:dl. | |
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) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
624 |
1106 | 625 ;;;; ------------------------------------------------------------ |
626 ;;;; User customization variables. | |
627 ;;;; ------------------------------------------------------------ | |
628 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
629 (defvar ange-ftp-name-format |
14138
9856174aa877
(ange-ftp-name-format): Don't match "/:" or "/.:".
Karl Heuer <kwzh@gnu.org>
parents:
14040
diff
changeset
|
630 '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*[^@/:.]\\):\\(.*\\)" . (3 2 4)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
631 "*Format of a fully expanded remote file name. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
632 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
|
633 where REGEXP is a regular expression matching |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
634 the full remote name, and HOST, USER, and NAME are the numbers of |
1106 | 635 parenthesized expressions in REGEXP for the components (in that order).") |
636 | |
637 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of | |
638 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs. | |
639 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out. | |
640 | |
641 (defvar ange-ftp-multi-msgs | |
3620
219ff1cb76f4
(ange-ftp-multi-msgs): Add 331-.
Richard M. Stallman <rms@gnu.org>
parents:
3611
diff
changeset
|
642 "^220-\\|^230-\\|^226\\|^25.-\\|^221-\\|^200-\\|^331-\\|^4[25]1-\\|^530-" |
7042 | 643 "*Regular expression matching the start of a multiline ftp reply.") |
1106 | 644 |
645 (defvar ange-ftp-good-msgs | |
646 "^220 \\|^230 \\|^226 \\|^25. \\|^221 \\|^200 \\|^[Hh]ash mark" | |
7042 | 647 "*Regular expression matching ftp \"success\" messages.") |
1106 | 648 |
649 ;; CMS and the odd VMS machine say 200 Port rather than 200 PORT. | |
650 ;; Also CMS machines use a multiline 550- reply to say that you | |
651 ;; don't have write permission. ange-ftp gets into multi-line skip | |
652 ;; mode and hangs. Have it ignore 550- instead. It will then barf | |
653 ;; when it gets the 550 line, as it should. | |
654 | |
655 (defvar ange-ftp-skip-msgs | |
656 (concat "^200 \\(PORT\\|Port\\) \\|^331 \\|^150 \\|^350 \\|^[0-9]+ bytes \\|" | |
657 "^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
|
658 "^Data connection \\|" |
16353
07d7ce35e1be
(ange-ftp-skip-msgs): Recognize `passive'.
Richard M. Stallman <rms@gnu.org>
parents:
15958
diff
changeset
|
659 "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye\\|" |
07d7ce35e1be
(ange-ftp-skip-msgs): Recognize `passive'.
Richard M. Stallman <rms@gnu.org>
parents:
15958
diff
changeset
|
660 "^227 .*[Pp]assive") |
7042 | 661 "*Regular expression matching ftp messages that can be ignored.") |
1106 | 662 |
663 (defvar ange-ftp-fatal-msgs | |
664 (concat "^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|" | |
665 "^No control connection\\|unknown host\\|^lost connection") | |
7042 | 666 "*Regular expression matching ftp messages that indicate serious errors. |
667 These mean that the FTP process should (or already has) been killed.") | |
1106 | 668 |
669 (defvar ange-ftp-gateway-fatal-msgs | |
670 "No route to host\\|Connection closed\\|No such host\\|Login incorrect" | |
7042 | 671 "*Regular expression matching login failure messages from rlogin/telnet.") |
1106 | 672 |
673 (defvar ange-ftp-xfer-size-msgs | |
674 "^150 .* connection for .* (\\([0-9]+\\) bytes)" | |
675 "*Regular expression used to determine the number of bytes in a FTP transfer.") | |
676 | |
677 (defvar ange-ftp-tmp-name-template "/tmp/ange-ftp" | |
678 "*Template used to create temporary files.") | |
679 | |
680 (defvar ange-ftp-gateway-tmp-name-template "/tmp/ange-ftp" | |
681 "*Template used to create temporary files when ftp-ing through a gateway. | |
682 Files starting with this prefix need to be accessible from BOTH the local | |
683 machine and the gateway machine, and need to have the SAME name on both | |
684 machines, that is, /tmp is probably NOT what you want, since that is rarely | |
685 cross-mounted.") | |
686 | |
687 (defvar ange-ftp-netrc-filename "~/.netrc" | |
688 "*File in .netrc format to search for passwords.") | |
689 | |
690 (defvar ange-ftp-disable-netrc-security-check nil | |
691 "*If non-nil avoid checking permissions on the .netrc file.") | |
692 | |
693 (defvar ange-ftp-default-user nil | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
694 "*User name to use when none is specified in a file name. |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
695 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
|
696 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
|
697 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
|
698 |
14572
c64371c0dbb9
(ange-ftp-default-user): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14466
diff
changeset
|
699 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
|
700 and password information for that host are cached and re-used by |
c64371c0dbb9
(ange-ftp-default-user): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14466
diff
changeset
|
701 ange-ftp. Use `ange-ftp-set-user' to change the cached values, |
c64371c0dbb9
(ange-ftp-default-user): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14466
diff
changeset
|
702 since setting `ange-ftp-default-user' directly does not affect |
c64371c0dbb9
(ange-ftp-default-user): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
14466
diff
changeset
|
703 the cached information.") |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
704 |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
705 (defvar ange-ftp-netrc-default-user nil |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
706 "Alternate default user name to use when none is specified. |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
707 This variable is set from the `default' command in your `.netrc' file, |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
708 if there is one.") |
1106 | 709 |
710 (defvar ange-ftp-default-password nil | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
711 "*Password to use when the user name equals `ange-ftp-default-user'.") |
1106 | 712 |
713 (defvar ange-ftp-default-account nil | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
714 "*Account to use when the user name equals `ange-ftp-default-user'.") |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
715 |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
716 (defvar ange-ftp-netrc-default-password nil |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
717 "*Password to use when the user name equals `ange-ftp-netrc-default-user'.") |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
718 |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
719 (defvar ange-ftp-netrc-default-account nil |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
720 "*Account to use when the user name equals `ange-ftp-netrc-default-user'.") |
1106 | 721 |
1174 | 722 (defvar ange-ftp-generate-anonymous-password t |
9627
449fc86a0f4f
(ange-ftp-get-passwd): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
9070
diff
changeset
|
723 "*If t, use value of `user-mail-address' as password for anonymous ftp. |
449fc86a0f4f
(ange-ftp-get-passwd): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
9070
diff
changeset
|
724 If a string, then use that string as the password. |
449fc86a0f4f
(ange-ftp-get-passwd): Use user-mail-address.
Richard M. Stallman <rms@gnu.org>
parents:
9070
diff
changeset
|
725 If nil, prompt the user for a password.") |
1106 | 726 |
727 (defvar ange-ftp-dumb-unix-host-regexp nil | |
7042 | 728 "*If non-nil, regexp matching hosts on which `dir' command lists directory.") |
1106 | 729 |
730 (defvar ange-ftp-binary-file-name-regexp | |
2560
50d7841854b3
(ange-ftp-binary-file-name-regexp): Match .z and .z-part-?? files.
Roland McGrath <roland@gnu.org>
parents:
2258
diff
changeset
|
731 (concat "\\.[zZ]$\\|\\.lzh$\\|\\.arc$\\|\\.zip$\\|\\.zoo$\\|\\.tar$\\|" |
1106 | 732 "\\.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
|
733 "\\.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
|
734 "\\.taz$\\|\\.tgz$") |
1106 | 735 "*If a file matches this regexp then it is transferred in binary mode.") |
736 | |
737 (defvar ange-ftp-gateway-host nil | |
738 "*Name of host to use as gateway machine when local FTP isn't possible.") | |
739 | |
740 (defvar ange-ftp-local-host-regexp ".*" | |
7042 | 741 "*Regexp selecting hosts which can be reached directly with ftp. |
742 For other hosts the FTP process is started on \`ange-ftp-gateway-host\' | |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
743 instead, and/or reached via \`ange-ftp-gateway-ftp-program-name\'.") |
1106 | 744 |
745 (defvar ange-ftp-gateway-program-interactive nil | |
7042 | 746 "*If non-nil then the gateway program should give a shell prompt. |
747 Both telnet and rlogin do something like this.") | |
1106 | 748 |
10451
bc83756f19ad
(ange-ftp-gateway-program, ange-ftp-shell-command): Use new global
Karl Heuer <kwzh@gnu.org>
parents:
10407
diff
changeset
|
749 (defvar ange-ftp-gateway-program remote-shell-program |
7042 | 750 "*Name of program to spawn a shell on the gateway machine. |
10451
bc83756f19ad
(ange-ftp-gateway-program, ange-ftp-shell-command): Use new global
Karl Heuer <kwzh@gnu.org>
parents:
10407
diff
changeset
|
751 Valid candidates are rsh (remsh on some systems), telnet and rlogin. See |
7042 | 752 also the gateway variable above.") |
1106 | 753 |
5265
7305f7204c67
(ange-ftp-hash-mark-msgs): Make match more general.
Richard M. Stallman <rms@gnu.org>
parents:
5171
diff
changeset
|
754 (defvar ange-ftp-gateway-prompt-pattern "^[^#$%>;\n]*[#$%>;] *" |
7042 | 755 "*Regexp matching prompt after complete login sequence on gateway machine. |
756 A match for this means the shell is now awaiting input. Make this regexp as | |
1106 | 757 strict as possible; it shouldn't match *anything* at all except the user's |
758 initial prompt. The above string will fail under most SUN-3's since it | |
759 matches the login banner.") | |
760 | |
761 (defvar ange-ftp-gateway-setup-term-command | |
762 (if (eq system-type 'hpux) | |
763 "stty -onlcr -echo\n" | |
764 "stty -echo nl\n") | |
7042 | 765 "*Set up terminal after logging in to the gateway machine. |
766 This command should stop the terminal from echoing each command, and | |
767 arrange to strip out trailing ^M characters.") | |
1106 | 768 |
769 (defvar ange-ftp-smart-gateway nil | |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
770 "*Non-nil means the ftp gateway and/or the gateway ftp program is smart. |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
771 Don't bother telnetting, etc., already connected to desired host transparently, |
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
772 or just issue a user@host command in case \`ange-ftp-gateway-host\' is non-nil.") |
1106 | 773 |
774 (defvar ange-ftp-smart-gateway-port "21" | |
775 "*Port on gateway machine to use when smart gateway is in operation.") | |
776 | |
777 (defvar ange-ftp-send-hash t | |
778 "*If non-nil, send the HASH command to the FTP client.") | |
779 | |
780 (defvar ange-ftp-binary-hash-mark-size nil | |
781 "*Default size, in bytes, between hash-marks when transferring a binary file. | |
782 If NIL, this variable will be locally overridden if the FTP client outputs a | |
783 suitable response to the HASH command. If non-NIL then this value takes | |
784 precedence over the local value.") | |
785 | |
786 (defvar ange-ftp-ascii-hash-mark-size 1024 | |
787 "*Default size, in bytes, between hash-marks when transferring an ASCII file. | |
788 This variable is buffer-local and will be locally overridden if the FTP client | |
789 outputs a suitable response to the HASH command.") | |
790 | |
791 (defvar ange-ftp-process-verbose t | |
792 "*If non-NIL then be chatty about interaction with the FTP process.") | |
793 | |
794 (defvar ange-ftp-ftp-program-name "ftp" | |
795 "*Name of FTP program to run.") | |
796 | |
797 (defvar ange-ftp-gateway-ftp-program-name "ftp" | |
9070
b261d80c1b23
(ange-ftp-start-process): Add use-smart-ftp code.
Richard M. Stallman <rms@gnu.org>
parents:
8397
diff
changeset
|
798 "*Name of FTP program to run when accessing non-local hosts. |
1106 | 799 Some AT&T folks claim to use something called `pftp' here.") |
800 | |
801 (defvar ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v") | |
802 "*A list of arguments passed to the FTP program when started.") | |
803 | |
804 (defvar ange-ftp-nslookup-program nil | |
805 "*If non-NIL then a string naming nslookup program." ) | |
806 | |
807 (defvar ange-ftp-make-backup-files () | |
3416
5bd76dd4c6bd
(ange-ftp-make-backup-files): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3394
diff
changeset
|
808 "*Non-nil means make backup files for \"magic\" remote files.") |
1106 | 809 |
810 (defvar ange-ftp-retry-time 5 | |
7042 | 811 "*Number of seconds to wait before retry if file or listing doesn't arrive. |
812 This might need to be increased for very slow connections.") | |
1106 | 813 |
814 (defvar ange-ftp-auto-save 0 | |
815 "If 1, allows ange-ftp files to be auto-saved. | |
816 If 0, suppresses auto-saving of ange-ftp files. | |
817 Don't use any other value.") | |
818 | |
819 ;;;; ------------------------------------------------------------ | |
820 ;;;; Hash table support. | |
821 ;;;; ------------------------------------------------------------ | |
822 | |
823 (require 'backquote) | |
824 | |
825 (defun ange-ftp-make-hashtable (&optional size) | |
826 "Make an obarray suitable for use as a hashtable. | |
827 SIZE, if supplied, should be a prime number." | |
828 (make-vector (or size 31) 0)) | |
829 | |
830 (defun ange-ftp-map-hashtable (fun tbl) | |
831 "Call FUNCTION on each key and value in HASHTABLE." | |
832 (mapatoms | |
833 (function | |
834 (lambda (sym) | |
835 (funcall fun (get sym 'key) (get sym 'val)))) | |
836 tbl)) | |
837 | |
838 (defmacro ange-ftp-make-hash-key (key) | |
839 "Convert KEY into a suitable key for a hashtable." | |
840 (` (if (stringp (, key)) | |
841 (, key) | |
842 (prin1-to-string (, key))))) | |
843 | |
844 (defun ange-ftp-get-hash-entry (key tbl) | |
845 "Return the value associated with KEY in HASHTABLE." | |
846 (let ((sym (intern-soft (ange-ftp-make-hash-key key) tbl))) | |
847 (and sym (get sym 'val)))) | |
848 | |
849 (defun ange-ftp-put-hash-entry (key val tbl) | |
850 "Record an association between KEY and VALUE in HASHTABLE." | |
851 (let ((sym (intern (ange-ftp-make-hash-key key) tbl))) | |
852 (put sym 'val val) | |
853 (put sym 'key key))) | |
854 | |
855 (defun ange-ftp-del-hash-entry (key tbl) | |
856 "Copy all symbols except KEY in HASHTABLE and return modified hashtable." | |
857 (let* ((len (length tbl)) | |
858 (new-tbl (ange-ftp-make-hashtable len)) | |
859 (i (1- len))) | |
860 (ange-ftp-map-hashtable | |
861 (function | |
862 (lambda (k v) | |
863 (or (equal k key) | |
864 (ange-ftp-put-hash-entry k v new-tbl)))) | |
865 tbl) | |
866 (while (>= i 0) | |
867 (aset tbl i (aref new-tbl i)) | |
868 (setq i (1- i))) | |
869 tbl)) | |
870 | |
871 (defun ange-ftp-hash-entry-exists-p (key tbl) | |
872 "Return whether there is an association for KEY in TABLE." | |
873 (intern-soft (ange-ftp-make-hash-key key) tbl)) | |
874 | |
875 (defun ange-ftp-hash-table-keys (tbl) | |
1233 | 876 "Return a sorted list of all the active keys in TABLE, as strings." |
1106 | 877 (sort (all-completions "" tbl) |
878 (function string-lessp))) | |
879 | |
880 ;;;; ------------------------------------------------------------ | |
881 ;;;; Internal variables. | |
882 ;;;; ------------------------------------------------------------ | |
883 | |
884 (defvar ange-ftp-data-buffer-name " *ftp data*" | |
885 "Buffer name to hold directory listing data received from ftp process.") | |
886 | |
887 (defvar ange-ftp-netrc-modtime nil | |
888 "Last modified time of the netrc file from file-attributes.") | |
889 | |
890 (defvar ange-ftp-user-hashtable (ange-ftp-make-hashtable) | |
891 "Hash table holding associations between HOST, USER pairs.") | |
892 | |
893 (defvar ange-ftp-passwd-hashtable (ange-ftp-make-hashtable) | |
894 "Mapping between a HOST, USER pair and a PASSWORD for them.") | |
895 | |
896 (defvar ange-ftp-account-hashtable (ange-ftp-make-hashtable) | |
897 "Mapping between a HOST, USER pair and a ACCOUNT password for them.") | |
898 | |
899 (defvar ange-ftp-files-hashtable (ange-ftp-make-hashtable 97) | |
900 "Hash table for storing directories and their respective files.") | |
901 | |
902 (defvar ange-ftp-ls-cache-lsargs nil | |
903 "Last set of args used by ange-ftp-ls.") | |
904 | |
905 (defvar ange-ftp-ls-cache-file nil | |
906 "Last file passed to ange-ftp-ls.") | |
907 | |
908 (defvar ange-ftp-ls-cache-res nil | |
909 "Last result returned from ange-ftp-ls.") | |
910 | |
911 (defconst ange-ftp-expand-dir-hashtable (ange-ftp-make-hashtable)) | |
912 | |
913 (defconst ange-ftp-expand-dir-regexp "^5.0 \\([^: ]+\\):") | |
914 | |
915 ;; These are local variables in each FTP process buffer. | |
916 (defvar ange-ftp-hash-mark-unit nil) | |
917 (defvar ange-ftp-hash-mark-count nil) | |
918 (defvar ange-ftp-xfer-size nil) | |
919 (defvar ange-ftp-process-string nil) | |
920 (defvar ange-ftp-process-result-line nil) | |
921 (defvar ange-ftp-process-busy nil) | |
922 (defvar ange-ftp-process-result nil) | |
923 (defvar ange-ftp-process-multi-skip nil) | |
924 (defvar ange-ftp-process-msg nil) | |
925 (defvar ange-ftp-process-continue nil) | |
926 (defvar ange-ftp-last-percent nil) | |
927 | |
928 ;; These variables are bound by one function and examined by another. | |
929 ;; Leave them void globally for error checking. | |
930 (defvar ange-ftp-this-file) | |
931 (defvar ange-ftp-this-dir) | |
932 (defvar ange-ftp-this-user) | |
933 (defvar ange-ftp-this-host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
934 (defvar ange-ftp-this-msg) |
1106 | 935 (defvar ange-ftp-completion-ignored-pattern) |
936 (defvar ange-ftp-trample-marker) | |
937 | |
938 ;; New error symbols. | |
939 (put 'ftp-error 'error-conditions '(ftp-error file-error error)) | |
940 ;; (put 'ftp-error 'error-message "FTP error") | |
941 | |
942 ;;; ------------------------------------------------------------ | |
943 ;;; Enhanced message support. | |
944 ;;; ------------------------------------------------------------ | |
945 | |
946 (defun ange-ftp-message (fmt &rest args) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
947 "Display message in echo area, but indicate if truncated. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
948 Args are as in `message': a format string, plus arguments to be formatted." |
1106 | 949 (let ((msg (apply (function format) fmt args)) |
950 (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
|
951 (if noninteractive |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
952 msg |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
953 (if (>= (length msg) max) |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
954 ;; 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
|
955 (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
|
956 (message "%s" msg)))) |
1106 | 957 |
958 (defun ange-ftp-abbreviate-filename (file &optional new) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
959 "Abbreviate the file name FILE relative to the default-directory. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
960 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
|
961 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
|
962 (save-match-data |
1106 | 963 (if (and default-directory |
964 (string-match (concat "^" | |
965 (regexp-quote default-directory) | |
966 ".") file)) | |
967 (setq file (substring file (1- (match-end 0))))) | |
968 (if (and new | |
969 (string-equal (file-name-nondirectory file) | |
970 (file-name-nondirectory new))) | |
971 (setq file (file-name-directory file))) | |
972 (or file "./"))) | |
973 | |
974 ;;;; ------------------------------------------------------------ | |
975 ;;;; User / Host mapping support. | |
976 ;;;; ------------------------------------------------------------ | |
977 | |
978 (defun ange-ftp-set-user (host user) | |
979 "For a given HOST, set or change the default USER." | |
980 (interactive "sHost: \nsUser: ") | |
981 (ange-ftp-put-hash-entry host user ange-ftp-user-hashtable)) | |
982 | |
983 (defun ange-ftp-get-user (host) | |
984 "Given a HOST, return the default USER." | |
985 (ange-ftp-parse-netrc) | |
986 (let ((user (ange-ftp-get-hash-entry host ange-ftp-user-hashtable))) | |
987 (or user | |
988 (prog1 | |
989 (setq user | |
990 (cond ((stringp ange-ftp-default-user) | |
991 ;; We have a default name. Use it. | |
992 ange-ftp-default-user) | |
993 (ange-ftp-default-user | |
994 ;; Ask the user. | |
995 (let ((enable-recursive-minibuffers t)) | |
996 (read-string (format "User for %s: " host) | |
997 (user-login-name)))) | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
998 (ange-ftp-netrc-default-user) |
1106 | 999 ;; Default to the user's login name. |
1000 (t | |
1001 (user-login-name)))) | |
1002 (ange-ftp-set-user host user))))) | |
1003 | |
1004 ;;;; ------------------------------------------------------------ | |
1005 ;;;; Password support. | |
1006 ;;;; ------------------------------------------------------------ | |
1007 | |
1008 (defun ange-ftp-read-passwd (prompt &optional default) | |
1009 "Read a password, echoing `.' for each character typed. | |
1010 End with RET, LFD, or ESC. DEL or C-h rubs out. C-u kills line. | |
1011 Optional DEFAULT is password to start with." | |
15798
a745f54990f5
(ange-ftp-read-passwd): Let first input override
Richard M. Stallman <rms@gnu.org>
parents:
15449
diff
changeset
|
1012 (let ((pass nil) |
1106 | 1013 (c 0) |
1014 (echo-keystrokes 0) | |
1015 (cursor-in-echo-area t)) | |
1016 (while (progn (message "%s%s" | |
1017 prompt | |
1018 (make-string (length pass) ?.)) | |
1019 (setq c (read-char)) | |
1020 (and (/= c ?\r) (/= c ?\n) (/= c ?\e))) | |
1021 (if (= c ?\C-u) | |
1022 (setq pass "") | |
1023 (if (and (/= c ?\b) (/= c ?\177)) | |
1024 (setq pass (concat pass (char-to-string c))) | |
1025 (if (> (length pass) 0) | |
1026 (setq pass (substring pass 0 -1)))))) | |
1027 (message "") | |
1603
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1028 (ange-ftp-repaint-minibuffer) |
15798
a745f54990f5
(ange-ftp-read-passwd): Let first input override
Richard M. Stallman <rms@gnu.org>
parents:
15449
diff
changeset
|
1029 (or pass default ""))) |
1106 | 1030 |
1031 (defmacro ange-ftp-generate-passwd-key (host user) | |
1032 (` (concat (, host) "/" (, user)))) | |
1033 | |
1034 (defmacro ange-ftp-lookup-passwd (host user) | |
1035 (` (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key (, host) (, user)) | |
1036 ange-ftp-passwd-hashtable))) | |
1037 | |
1038 (defun ange-ftp-set-passwd (host user passwd) | |
1039 "For a given HOST and USER, set or change the associated PASSWORD." | |
1040 (interactive (list (read-string "Host: ") | |
1041 (read-string "User: ") | |
1042 (ange-ftp-read-passwd "Password: "))) | |
1043 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) | |
1044 passwd | |
1045 ange-ftp-passwd-hashtable)) | |
1046 | |
1047 (defun ange-ftp-get-host-with-passwd (user) | |
1048 "Given a USER, return a host we know the password for." | |
1049 (ange-ftp-parse-netrc) | |
1050 (catch 'found-one | |
1051 (ange-ftp-map-hashtable | |
1052 (function (lambda (host val) | |
1053 (if (ange-ftp-lookup-passwd host user) | |
1054 (throw 'found-one host)))) | |
1055 ange-ftp-user-hashtable) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1056 (save-match-data |
1106 | 1057 (ange-ftp-map-hashtable |
1058 (function | |
1059 (lambda (key value) | |
1060 (if (string-match "^[^/]*\\(/\\).*$" key) | |
1061 (let ((host (substring key 0 (match-beginning 1)))) | |
1062 (if (and (string-equal user (substring key (match-end 1))) | |
1063 value) | |
1064 (throw 'found-one host)))))) | |
1065 ange-ftp-passwd-hashtable)) | |
1066 nil)) | |
1067 | |
1068 (defun ange-ftp-get-passwd (host user) | |
1069 "Return the password for specified HOST and USER, asking user if necessary." | |
1070 (ange-ftp-parse-netrc) | |
1071 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
1072 ;; look up password in the hash table first; user might have overridden the |
1106 | 1073 ;; defaults. |
1074 (cond ((ange-ftp-lookup-passwd host user)) | |
1075 | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1076 ;; See if default user and password set. |
1106 | 1077 ((and (stringp ange-ftp-default-user) |
1078 ange-ftp-default-password | |
1079 (string-equal user ange-ftp-default-user)) | |
1080 ange-ftp-default-password) | |
1081 | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1082 ;; 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
|
1083 ((and (stringp ange-ftp-netrc-default-user) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1084 ange-ftp-netrc-default-password |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1085 (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
|
1086 ange-ftp-netrc-default-password) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1087 |
1106 | 1088 ;; anonymous ftp password is handled specially since there is an |
1089 ;; unwritten rule about how that is used on the Internet. | |
1090 ((and (or (string-equal user "anonymous") | |
1091 (string-equal user "ftp")) | |
1092 ange-ftp-generate-anonymous-password) | |
1093 (if (stringp ange-ftp-generate-anonymous-password) | |
1094 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
|
1095 user-mail-address)) |
1106 | 1096 |
1097 ;; see if same user has logged in to other hosts; if so then prompt | |
1098 ;; with the password that was used there. | |
1099 (t | |
1100 (let* ((other (ange-ftp-get-host-with-passwd user)) | |
1101 (passwd (if other | |
1102 | |
1103 ;; found another machine with the same user. | |
1104 ;; Try that account. | |
1105 (ange-ftp-read-passwd | |
15798
a745f54990f5
(ange-ftp-read-passwd): Let first input override
Richard M. Stallman <rms@gnu.org>
parents:
15449
diff
changeset
|
1106 (format "passwd for %s@%s (default same as %s@%s): " |
1106 | 1107 user host user other) |
1108 (ange-ftp-lookup-passwd other user)) | |
1109 | |
1110 ;; I give up. Ask the user for the password. | |
1111 (ange-ftp-read-passwd | |
1112 (format "Password for %s@%s: " user host))))) | |
1113 (ange-ftp-set-passwd host user passwd) | |
1114 passwd)))) | |
1115 | |
1116 ;;;; ------------------------------------------------------------ | |
1117 ;;;; Account support | |
1118 ;;;; ------------------------------------------------------------ | |
1119 | |
1120 ;; Account passwords must be either specified in the .netrc file, or set | |
1121 ;; manually by calling ange-ftp-set-account. For the moment, ange-ftp doesn't | |
1122 ;; check to see whether the FTP process is actually prompting for an account | |
1123 ;; password. | |
1124 | |
1125 (defun ange-ftp-set-account (host user account) | |
1126 "For a given HOST and USER, set or change the associated ACCOUNT password." | |
1127 (interactive (list (read-string "Host: ") | |
1128 (read-string "User: ") | |
1129 (ange-ftp-read-passwd "Account password: "))) | |
1130 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) | |
1131 account | |
1132 ange-ftp-account-hashtable)) | |
1133 | |
1134 (defun ange-ftp-get-account (host user) | |
1135 "Given a HOST and USER, return the FTP account." | |
1136 (ange-ftp-parse-netrc) | |
1137 (or (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key host user) | |
1138 ange-ftp-account-hashtable) | |
1139 (and (stringp ange-ftp-default-user) | |
1140 (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
|
1141 ange-ftp-default-account) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1142 (and (stringp ange-ftp-netrc-default-user) |
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1143 (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
|
1144 ange-ftp-netrc-default-account))) |
1106 | 1145 |
1146 ;;;; ------------------------------------------------------------ | |
1147 ;;;; ~/.netrc support | |
1148 ;;;; ------------------------------------------------------------ | |
1149 | |
1150 (defun ange-ftp-chase-symlinks (file) | |
1233 | 1151 "Return the filename that FILE references, following all symbolic links." |
1106 | 1152 (let (temp) |
1153 (while (setq temp (ange-ftp-real-file-symlink-p file)) | |
1154 (setq file | |
1155 (if (file-name-absolute-p temp) | |
1156 temp | |
1157 (concat (file-name-directory file) temp))))) | |
1158 file) | |
1159 | |
7042 | 1160 ;; Move along current line looking for the value of the TOKEN. |
1161 ;; Valid separators between TOKEN and its value are commas and | |
1162 ;; whitespace. Second arg LIMIT is a limit for the search. | |
1163 | |
1106 | 1164 (defun ange-ftp-parse-netrc-token (token limit) |
1165 (if (search-forward token limit t) | |
1166 (let (beg) | |
1167 (skip-chars-forward ", \t\r\n" limit) | |
1168 (if (eq (following-char) ?\") ;quoted token value | |
1169 (progn (forward-char 1) | |
1170 (setq beg (point)) | |
1171 (skip-chars-forward "^\"" limit) | |
1172 (forward-char 1) | |
1173 (buffer-substring beg (1- (point)))) | |
1174 (setq beg (point)) | |
1175 (skip-chars-forward "^, \t\r\n" limit) | |
1176 (buffer-substring beg (point)))))) | |
1177 | |
7042 | 1178 ;; Extract the values for the tokens `machine', `login', |
1179 ;; `password' and `account' in the current buffer. If successful, | |
1180 ;; record the information found. | |
1181 | |
1106 | 1182 (defun ange-ftp-parse-netrc-group () |
1183 (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
|
1184 (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
|
1185 (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
|
1186 ;; 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
|
1187 (progn |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1188 (skip-chars-forward "^ \t\n") |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1189 (skip-chars-forward " \t\n") |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1190 (skip-chars-forward "^ \t\n")) |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1191 ;; Skip `default'. |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1192 (skip-chars-forward "^ \t\n")) |
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1193 ;; 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
|
1194 ;; 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
|
1195 (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
|
1196 (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
|
1197 (point-max)))) |
1106 | 1198 machine login password account) |
1199 (setq machine (ange-ftp-parse-netrc-token "machine" end) | |
1200 login (ange-ftp-parse-netrc-token "login" end) | |
1201 password (ange-ftp-parse-netrc-token "password" end) | |
1202 account (ange-ftp-parse-netrc-token "account" end)) | |
1203 (if (and machine login) | |
1204 ;; found a `machine` token. | |
1205 (progn | |
1206 (ange-ftp-set-user machine login) | |
1207 (ange-ftp-set-passwd machine login password) | |
1208 (and account | |
1209 (ange-ftp-set-account machine login account))) | |
1210 (goto-char start) | |
1211 (if (search-forward "default" end t) | |
1212 ;; found a `default' token | |
1213 (progn | |
1214 (setq login (ange-ftp-parse-netrc-token "login" end) | |
1215 password (ange-ftp-parse-netrc-token "password" end) | |
1216 account (ange-ftp-parse-netrc-token "account" end)) | |
1217 (and login | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1218 (setq ange-ftp-netrc-default-user login)) |
1106 | 1219 (and password |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1220 (setq ange-ftp-netrc-default-password password)) |
1106 | 1221 (and account |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
1222 (setq ange-ftp-netrc-default-account account))))) |
1106 | 1223 (goto-char end))) |
1224 | |
7042 | 1225 ;; Read in ~/.netrc, if one exists. If ~/.netrc file exists and has |
1226 ;; the correct permissions then extract the \`machine\', \`login\', | |
1227 ;; \`password\' and \`account\' information from within. | |
1228 | |
1106 | 1229 (defun ange-ftp-parse-netrc () |
1230 ;; We set this before actually doing it to avoid the possibility | |
1231 ;; of an infinite loop if ange-ftp-netrc-filename is an FTP file. | |
1232 (interactive) | |
11315
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1233 (let (file attr) |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1234 (let ((default-directory "/")) |
c5f81d9d417c
(ange-ftp-parse-netrc): Bind `default-directory' to
Richard M. Stallman <rms@gnu.org>
parents:
11231
diff
changeset
|
1235 (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
|
1236 (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
|
1237 (setq attr (ange-ftp-real-file-attributes file))) |
1106 | 1238 (if (and attr ; file exists. |
1239 (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
|
1240 (save-match-data |
1106 | 1241 (if (or ange-ftp-disable-netrc-security-check |
1242 (and (eq (nth 2 attr) (user-uid)) ; Same uids. | |
1243 (string-match ".r..------" (nth 8 attr)))) | |
1244 (save-excursion | |
1245 ;; we are cheating a bit here. I'm trying to do the equivalent | |
1246 ;; of find-file on the .netrc file, but then nuke it afterwards. | |
1247 ;; with the bit of logic below we should be able to have | |
1248 ;; encrypted .netrc files. | |
1249 (set-buffer (generate-new-buffer "*ftp-.netrc*")) | |
1250 (ange-ftp-real-insert-file-contents file) | |
1251 (setq buffer-file-name file) | |
1252 (setq default-directory (file-name-directory file)) | |
1253 (normal-mode t) | |
1254 (mapcar 'funcall find-file-hooks) | |
1255 (setq buffer-file-name nil) | |
1256 (goto-char (point-min)) | |
8397
4cb8a2ab8f60
(ange-ftp-parse-netrc-group): Don't move back to line
Richard M. Stallman <rms@gnu.org>
parents:
7923
diff
changeset
|
1257 (skip-chars-forward " \t\n") |
1106 | 1258 (while (not (eobp)) |
1259 (ange-ftp-parse-netrc-group)) | |
1260 (kill-buffer (current-buffer))) | |
1261 (ange-ftp-message "%s either not owned by you or badly protected." | |
1262 ange-ftp-netrc-filename) | |
1263 (sit-for 1)) | |
1264 (setq ange-ftp-netrc-modtime (nth 5 attr)))))) | |
1265 | |
7042 | 1266 ;; Return a list of prefixes of the form 'user@host:' to be used when |
1267 ;; completion is done in the root directory. | |
1268 | |
1106 | 1269 (defun ange-ftp-generate-root-prefixes () |
1270 (ange-ftp-parse-netrc) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1271 (save-match-data |
1106 | 1272 (let (res) |
1273 (ange-ftp-map-hashtable | |
1274 (function | |
1275 (lambda (key value) | |
1276 (if (string-match "^[^/]*\\(/\\).*$" key) | |
1277 (let ((host (substring key 0 (match-beginning 1))) | |
1278 (user (substring key (match-end 1)))) | |
1279 (setq res (cons (list (concat user "@" host ":")) | |
1280 res)))))) | |
1281 ange-ftp-passwd-hashtable) | |
1282 (ange-ftp-map-hashtable | |
1283 (function (lambda (host user) | |
1284 (setq res (cons (list (concat host ":")) | |
1285 res)))) | |
1286 ange-ftp-user-hashtable) | |
1287 (or res (list nil))))) | |
1288 | |
1289 ;;;; ------------------------------------------------------------ | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1290 ;;;; Remote file name syntax support. |
1106 | 1291 ;;;; ------------------------------------------------------------ |
1292 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1293 (defmacro ange-ftp-ftp-name-component (n ns name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1294 "Extract the Nth ftp file name component from NS." |
1106 | 1295 (` (let ((elt (nth (, n) (, ns)))) |
1296 (if (match-beginning elt) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1297 (substring (, name) (match-beginning elt) (match-end elt)))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1298 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1299 (defvar ange-ftp-ftp-name-arg "") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1300 (defvar ange-ftp-ftp-name-res nil) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1301 |
7042 | 1302 ;; Parse NAME according to `ange-ftp-name-format' (which see). |
1303 ;; 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
|
1304 (defun ange-ftp-ftp-name (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1305 (if (string-equal name ange-ftp-ftp-name-arg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1306 ange-ftp-ftp-name-res |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1307 (setq ange-ftp-ftp-name-arg name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1308 ange-ftp-ftp-name-res |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1309 (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
|
1310 (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
|
1311 (let* ((ns (cdr ange-ftp-name-format)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1312 (host (ange-ftp-ftp-name-component 0 ns name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1313 (user (ange-ftp-ftp-name-component 1 ns name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1314 (name (ange-ftp-ftp-name-component 2 ns name))) |
1106 | 1315 (if (zerop (length user)) |
1316 (setq user (ange-ftp-get-user host))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1317 (list host user name)) |
1106 | 1318 nil))))) |
1319 | |
7042 | 1320 ;; Take a FULLNAME that matches according to ange-ftp-name-format and |
1321 ;; replace the name component with NAME. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1322 (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
|
1323 (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
|
1324 (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
|
1325 (let* ((ns (cdr ange-ftp-name-format)) |
1106 | 1326 (elt (nth 2 ns))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1327 (concat (substring fullname 0 (match-beginning elt)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1328 name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1329 (substring fullname (match-end elt))))))) |
1106 | 1330 |
1331 ;;;; ------------------------------------------------------------ | |
1332 ;;;; Miscellaneous utils. | |
1333 ;;;; ------------------------------------------------------------ | |
1334 | |
1335 ;; (setq ange-ftp-tmp-keymap (make-sparse-keymap)) | |
1336 ;; (define-key ange-ftp-tmp-keymap "\C-m" 'exit-minibuffer) | |
1337 | |
1603
3e621a2a9cfe
* ange-ftp.el (ange-ftp-repaint-buffer): Give this a non-hacky
Jim Blandy <jimb@redhat.com>
parents:
1535
diff
changeset
|
1338 (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
|
1339 "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
|
1340 (message nil)) |
1106 | 1341 |
7042 | 1342 ;; Return the name of the buffer that collects output from the ftp process |
1343 ;; connected to the given HOST and USER pair. | |
1106 | 1344 (defun ange-ftp-ftp-process-buffer (host user) |
1345 (concat "*ftp " user "@" host "*")) | |
1346 | |
7042 | 1347 ;; Display the last chunk of output from the ftp process for the given HOST |
1348 ;; USER pair, and signal an error including MSG in the text. | |
1106 | 1349 (defun ange-ftp-error (host user msg) |
1350 (let ((cur (selected-window)) | |
1351 (pop-up-windows t)) | |
1352 (pop-to-buffer | |
1353 (get-buffer-create | |
1354 (ange-ftp-ftp-process-buffer host user))) | |
1355 (goto-char (point-max)) | |
1356 (select-window cur)) | |
1357 (signal 'ftp-error (list (format "FTP Error: %s" msg)))) | |
1358 | |
1359 (defun ange-ftp-set-buffer-mode () | |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
1360 "Set correct modes for the current buffer if visiting a remote file." |
1106 | 1361 (if (and (stringp buffer-file-name) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1362 (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
|
1363 (auto-save-mode ange-ftp-auto-save))) |
1106 | 1364 |
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
|
1365 (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
|
1366 "Kill the FTP process associated with BUFFER (the current buffer, if nil). |
1233 | 1367 If the BUFFER's visited filename or default-directory is an ftp filename |
1106 | 1368 then kill the related ftp process." |
1369 (interactive "bKill FTP process associated with buffer: ") | |
1370 (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
|
1371 (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
|
1372 (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
|
1373 (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
|
1374 (save-excursion (set-buffer buffer) default-directory)))) |
1106 | 1375 (if file |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1376 (let ((parsed (ange-ftp-ftp-name (expand-file-name file)))) |
1106 | 1377 (if parsed |
1378 (let ((host (nth 0 parsed)) | |
1379 (user (nth 1 parsed))) | |
1380 (kill-buffer (ange-ftp-ftp-process-buffer host user)))))))) | |
1381 | |
1382 (defun ange-ftp-quote-string (string) | |
1383 "Quote any characters in STRING that may confuse the ftp process." | |
1384 (apply (function concat) | |
1385 (mapcar (function | |
1386 (lambda (char) | |
1387 (if (or (<= char ? ) | |
1388 (> char ?\~) | |
1389 (= char ?\") | |
1390 (= char ?\\)) | |
1391 (vector ?\\ char) | |
1392 (vector char)))) | |
1393 string))) | |
1394 | |
1395 (defun ange-ftp-barf-if-not-directory (directory) | |
1396 (or (file-directory-p directory) | |
1397 (signal 'file-error | |
1398 (list "Opening directory" | |
1399 (if (file-exists-p directory) | |
1400 "not a directory" | |
1401 "no such file or directory") | |
1402 directory)))) | |
1403 | |
1404 ;;;; ------------------------------------------------------------ | |
1405 ;;;; FTP process filter support. | |
1406 ;;;; ------------------------------------------------------------ | |
1407 | |
1408 (defun ange-ftp-process-handle-line (line proc) | |
7042 | 1409 "Look at the given LINE from the ftp process PROC. |
1410 Try to categorize it into one of four categories: | |
1411 good, skip, fatal, or unknown." | |
1106 | 1412 (cond ((string-match ange-ftp-xfer-size-msgs line) |
1413 (setq ange-ftp-xfer-size | |
1414 (ash (string-to-int (substring line | |
1415 (match-beginning 1) | |
1416 (match-end 1))) | |
1417 -10))) | |
1418 ((string-match ange-ftp-skip-msgs line) | |
1419 t) | |
1420 ((string-match ange-ftp-good-msgs line) | |
1421 (setq ange-ftp-process-busy nil | |
1422 ange-ftp-process-result t | |
1423 ange-ftp-process-result-line line)) | |
9664 | 1424 ;; Check this before checking for errors. |
1425 ;; Otherwise the last line of these three seems to be an error: | |
1426 ;; 230-see a significant impact from the move. For those of you who can't | |
1427 ;; 230-use DNS to resolve hostnames and get an error message like | |
1428 ;; 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
|
1429 ((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
|
1430 (setq ange-ftp-process-multi-skip t)) |
1106 | 1431 ((string-match ange-ftp-fatal-msgs line) |
1432 (delete-process proc) | |
1433 (setq ange-ftp-process-busy nil | |
1434 ange-ftp-process-result-line line)) | |
1435 (ange-ftp-process-multi-skip | |
1436 t) | |
1437 (t | |
1438 (setq ange-ftp-process-busy nil | |
1439 ange-ftp-process-result-line line)))) | |
1440 | |
1441 (defun ange-ftp-set-xfer-size (host user bytes) | |
1442 "Set the size of the next FTP transfer in bytes." | |
1443 (let ((proc (ange-ftp-get-process host user))) | |
1444 (if proc | |
1445 (let ((buf (process-buffer proc))) | |
1446 (if buf | |
1447 (save-excursion | |
1448 (set-buffer buf) | |
1449 (setq ange-ftp-xfer-size (ash bytes -10)))))))) | |
1450 | |
1451 (defun ange-ftp-process-handle-hash (str) | |
1452 "Remove hash marks from STRING and display count so far." | |
1453 (setq str (concat (substring str 0 (match-beginning 0)) | |
1454 (substring str (match-end 0))) | |
1455 ange-ftp-hash-mark-count (+ (- (match-end 0) | |
1456 (match-beginning 0)) | |
1457 ange-ftp-hash-mark-count)) | |
13594
b7cb31d324cf
(ange-ftp-process-handle-hash): If
Richard M. Stallman <rms@gnu.org>
parents:
13311
diff
changeset
|
1458 (and ange-ftp-hash-mark-unit |
b7cb31d324cf
(ange-ftp-process-handle-hash): If
Richard M. Stallman <rms@gnu.org>
parents:
13311
diff
changeset
|
1459 ange-ftp-process-msg |
1106 | 1460 ange-ftp-process-verbose |
1461 (not (eq (selected-window) (minibuffer-window))) | |
1462 (not (boundp 'search-message)) ;screws up isearch otherwise | |
1463 (not cursor-in-echo-area) ;screws up y-or-n-p otherwise | |
1464 (let ((kbytes (ash (* ange-ftp-hash-mark-unit | |
1465 ange-ftp-hash-mark-count) | |
1466 -6))) | |
1467 (if (zerop ange-ftp-xfer-size) | |
1468 (ange-ftp-message "%s...%dk" ange-ftp-process-msg kbytes) | |
1469 (let ((percent (/ (* 100 kbytes) ange-ftp-xfer-size))) | |
1470 ;; cut out the redisplay of identical %-age messages. | |
1471 (if (not (eq percent ange-ftp-last-percent)) | |
1472 (progn | |
1473 (setq ange-ftp-last-percent percent) | |
1474 (ange-ftp-message "%s...%d%%" ange-ftp-process-msg percent))))))) | |
1475 str) | |
1476 | |
7042 | 1477 ;; Call the function specified by CONT. CONT can be either a function |
1478 ;; or a list of a function and some args. The first two parameters | |
1479 ;; passed to the function will be RESULT and LINE. The remaining args | |
1480 ;; will be taken from CONT if a list was passed. | |
1481 | |
1106 | 1482 (defun ange-ftp-call-cont (cont result line) |
1483 (if cont | |
1484 (if (and (listp cont) | |
1485 (not (eq (car cont) 'lambda))) | |
1486 (apply (car cont) result line (cdr cont)) | |
1487 (funcall cont result line)))) | |
1488 | |
7042 | 1489 ;; Build up a complete line of output from the ftp PROCESS and pass it |
1490 ;; on to ange-ftp-process-handle-line to deal with. | |
1491 | |
1106 | 1492 (defun ange-ftp-process-filter (proc str) |
1493 (let ((buffer (process-buffer proc)) | |
1494 (old-buffer (current-buffer))) | |
1495 | |
15872
244a4779d1b5
(ange-ftp-process-filter): Discard nulls.
Richard M. Stallman <rms@gnu.org>
parents:
15861
diff
changeset
|
1496 ;; Eliminate nulls. |
244a4779d1b5
(ange-ftp-process-filter): Discard nulls.
Richard M. Stallman <rms@gnu.org>
parents:
15861
diff
changeset
|
1497 (while (string-match "\000+" str) |
244a4779d1b5
(ange-ftp-process-filter): Discard nulls.
Richard M. Stallman <rms@gnu.org>
parents:
15861
diff
changeset
|
1498 (setq str (replace-match "" nil nil str))) |
244a4779d1b5
(ange-ftp-process-filter): Discard nulls.
Richard M. Stallman <rms@gnu.org>
parents:
15861
diff
changeset
|
1499 |
1106 | 1500 ;; see if the buffer is still around... it could have been deleted. |
1501 (if (buffer-name buffer) | |
1502 (unwind-protect | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1503 (progn |
1106 | 1504 (set-buffer (process-buffer proc)) |
1505 | |
1506 ;; handle hash mark printing | |
13594
b7cb31d324cf
(ange-ftp-process-handle-hash): If
Richard M. Stallman <rms@gnu.org>
parents:
13311
diff
changeset
|
1507 (and ange-ftp-process-busy |
1106 | 1508 (string-match "^#+$" str) |
1509 (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
|
1510 (comint-output-filter proc str) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1511 ;; 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
|
1512 (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
|
1513 (process-mark proc))) |
1106 | 1514 (if ange-ftp-process-busy |
1515 (progn | |
1516 (setq ange-ftp-process-string (concat ange-ftp-process-string | |
1517 str)) | |
1518 | |
1519 ;; if we gave an empty password to the USER command earlier | |
1520 ;; then we should send a null password now. | |
1521 (if (string-match "Password: *$" ange-ftp-process-string) | |
1522 (send-string proc "\n")))) | |
1523 (while (and ange-ftp-process-busy | |
1524 (string-match "\n" ange-ftp-process-string)) | |
1525 (let ((line (substring ange-ftp-process-string | |
1526 0 | |
1527 (match-beginning 0)))) | |
1528 (setq ange-ftp-process-string (substring ange-ftp-process-string | |
1529 (match-end 0))) | |
1530 (while (string-match "^ftp> *" line) | |
1531 (setq line (substring line (match-end 0)))) | |
1532 (ange-ftp-process-handle-line line proc))) | |
1533 | |
1534 ;; has the ftp client finished? if so then do some clean-up | |
1535 ;; actions. | |
1536 (if (not ange-ftp-process-busy) | |
1537 (progn | |
1538 ;; reset the xfer size | |
1539 (setq ange-ftp-xfer-size 0) | |
1540 | |
1541 ;; issue the "done" message since we've finished. | |
1542 (if (and ange-ftp-process-msg | |
1543 ange-ftp-process-verbose | |
1544 ange-ftp-process-result) | |
1545 (progn | |
1546 (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
|
1547 (ange-ftp-repaint-minibuffer) |
1106 | 1548 (setq ange-ftp-process-msg nil))) |
1549 | |
1550 ;; is there a continuation we should be calling? if so, | |
1551 ;; we'd better call it, making sure we only call it once. | |
1552 (if ange-ftp-process-continue | |
1553 (let ((cont ange-ftp-process-continue)) | |
1554 (setq ange-ftp-process-continue nil) | |
1555 (ange-ftp-call-cont cont | |
1556 ange-ftp-process-result | |
1557 ange-ftp-process-result-line)))))) | |
1558 (set-buffer old-buffer))))) | |
1559 | |
1560 (defun ange-ftp-process-sentinel (proc str) | |
1561 "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
|
1562 (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
|
1563 (if (string-match "\\*ftp \\([^@]+\\)@\\([^*]+\\)\\*" name) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1564 (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
|
1565 (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
|
1566 (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
|
1567 (setq ange-ftp-ls-cache-file nil)) |
1106 | 1568 |
1569 ;;;; ------------------------------------------------------------ | |
1570 ;;;; Gateway support. | |
1571 ;;;; ------------------------------------------------------------ | |
1572 | |
1573 (defun ange-ftp-use-gateway-p (host) | |
1574 "Returns whether to access this host via a normal (non-smart) gateway." | |
1575 ;; yes, I know that I could simplify the following expression, but it is | |
1576 ;; clearer (to me at least) this way. | |
1577 (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
|
1578 (save-match-data |
1106 | 1579 (not (string-match ange-ftp-local-host-regexp host))))) |
1580 | |
1581 (defun ange-ftp-use-smart-gateway-p (host) | |
1582 "Returns whether to access this host via a smart gateway." | |
1583 (and ange-ftp-smart-gateway | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1584 (save-match-data |
1106 | 1585 (not (string-match ange-ftp-local-host-regexp host))))) |
1586 | |
1587 | |
1588 ;;; ------------------------------------------------------------ | |
1589 ;;; Temporary file location and deletion... | |
1590 ;;; ------------------------------------------------------------ | |
1591 | |
1592 (defvar ange-ftp-tmp-name-files ()) | |
1593 (defvar ange-ftp-tmp-name-hashtable (ange-ftp-make-hashtable 10)) | |
1594 (defvar ange-ftp-pid nil) | |
1595 | |
1596 (defun ange-ftp-get-pid () | |
1597 "Half-hearted attempt to get the current process's id." | |
1598 (setq ange-ftp-pid (substring (make-temp-name "") 1))) | |
1599 | |
1600 (defun ange-ftp-make-tmp-name (host) | |
1601 "This routine will return the name of a new file." | |
1602 (let* ((template (if (ange-ftp-use-gateway-p host) | |
1603 ange-ftp-gateway-tmp-name-template | |
1604 ange-ftp-tmp-name-template)) | |
1605 (pid (or ange-ftp-pid (ange-ftp-get-pid))) | |
1606 (start ?a) | |
1607 file entry) | |
1608 (while | |
1609 (progn | |
1610 (setq file (format "%s%c%s" template start pid)) | |
1611 (setq entry (intern file ange-ftp-tmp-name-hashtable)) | |
1612 (or (memq entry ange-ftp-tmp-name-files) | |
1613 (ange-ftp-real-file-exists-p file))) | |
1614 (if (> (setq start (1+ start)) ?z) | |
1615 (progn | |
1616 (setq template (concat template "X")) | |
1617 (setq start ?a)))) | |
1618 (setq ange-ftp-tmp-name-files | |
1619 (cons entry ange-ftp-tmp-name-files)) | |
1620 file)) | |
1621 | |
1622 (defun ange-ftp-del-tmp-name (temp) | |
1623 (setq ange-ftp-tmp-name-files | |
1624 (delq (intern temp ange-ftp-tmp-name-hashtable) | |
1625 ange-ftp-tmp-name-files)) | |
1626 (condition-case () | |
1627 (ange-ftp-real-delete-file temp) | |
1628 (error nil))) | |
1629 | |
1630 ;;;; ------------------------------------------------------------ | |
1631 ;;;; Interactive gateway program support. | |
1632 ;;;; ------------------------------------------------------------ | |
1633 | |
1634 (defvar ange-ftp-gwp-running t) | |
1635 (defvar ange-ftp-gwp-status nil) | |
1636 | |
1637 (defun ange-ftp-gwp-sentinel (proc str) | |
1638 (setq ange-ftp-gwp-running nil)) | |
1639 | |
1640 (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
|
1641 (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
|
1642 (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
|
1643 (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
|
1644 ;; 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
|
1645 (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
|
1646 (cond ((string-match "login: *$" str) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1647 (send-string proc |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1648 (concat |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1649 (let ((ange-ftp-default-user t)) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1650 (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
|
1651 "\n"))) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1652 ((string-match "Password: *$" str) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1653 (send-string proc |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1654 (concat |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1655 (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
|
1656 (ange-ftp-get-user |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1657 ange-ftp-gateway-host)) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1658 "\n"))) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1659 ((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
|
1660 (delete-process proc) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1661 (setq ange-ftp-gwp-running nil)) |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1662 ((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
|
1663 (setq ange-ftp-gwp-running nil |
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1664 ange-ftp-gwp-status t)))) |
1106 | 1665 |
1666 (defun ange-ftp-gwp-start (host user name args) | |
1667 "Login to the gateway machine and fire up an ftp process." | |
1668 (let* ((gw-user (ange-ftp-get-user ange-ftp-gateway-host)) | |
7042 | 1669 ;; It would be nice to make process-connection-type nil, |
1670 ;; but that doesn't work: ftp never responds. | |
1671 ;; Can anyone find a fix for that? | |
1672 (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
|
1673 (start-process name name |
7042 | 1674 ange-ftp-gateway-program |
1675 ange-ftp-gateway-host))) | |
1106 | 1676 (ftp (mapconcat (function identity) args " "))) |
1677 (process-kill-without-query proc) | |
1678 (set-process-sentinel proc (function ange-ftp-gwp-sentinel)) | |
1679 (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
|
1680 (save-excursion |
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1681 (set-buffer (process-buffer proc)) |
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1682 (internal-ange-ftp-mode) |
c363ad97af4a
(ange-ftp-gwp-start): Call internal-ange-ftp-mode.
Richard M. Stallman <rms@gnu.org>
parents:
7418
diff
changeset
|
1683 (set-marker (process-mark proc) (point))) |
1106 | 1684 (setq ange-ftp-gwp-running t |
1685 ange-ftp-gwp-status nil) | |
1686 (ange-ftp-message "Connecting to gateway %s..." ange-ftp-gateway-host) | |
1687 (while ange-ftp-gwp-running ;perform login sequence | |
1688 (accept-process-output proc)) | |
1689 (if (not ange-ftp-gwp-status) | |
1690 (ange-ftp-error host user "unable to login to gateway")) | |
1691 (ange-ftp-message "Connecting to gateway %s...done" ange-ftp-gateway-host) | |
1692 (setq ange-ftp-gwp-running t | |
1693 ange-ftp-gwp-status nil) | |
1694 (process-send-string proc ange-ftp-gateway-setup-term-command) | |
1695 (while ange-ftp-gwp-running ;zap ^M's and double echoing. | |
1696 (accept-process-output proc)) | |
1697 (if (not ange-ftp-gwp-status) | |
1698 (ange-ftp-error host user "unable to set terminal modes on gateway")) | |
1699 (setq ange-ftp-gwp-running t | |
1700 ange-ftp-gwp-status nil) | |
1701 (process-send-string proc (concat "exec " ftp "\n")) ;spawn ftp process | |
1702 proc)) | |
1703 | |
1704 ;;;; ------------------------------------------------------------ | |
1705 ;;;; Support for sending commands to the ftp process. | |
1706 ;;;; ------------------------------------------------------------ | |
1707 | |
1708 (defun ange-ftp-raw-send-cmd (proc cmd &optional msg cont nowait) | |
1709 "Low-level routine to send the given ftp CMD to the ftp PROCESS. | |
1710 MSG is an optional message to output before and after the command. | |
1711 If CONT is non-NIL then it is either a function or a list of function and | |
1712 some arguments. The function will be called when the ftp command has completed. | |
1713 If CONT is NIL then this routine will return \( RESULT . LINE \) where RESULT | |
1714 is whether the command was successful, and LINE is the line from the FTP | |
1715 process that caused the command to complete. | |
1716 If NOWAIT is given then the routine will return immediately the command has | |
1717 been queued with no result. CONT will still be called, however." | |
1718 (if (memq (process-status proc) '(run open)) | |
1719 (save-excursion | |
1720 (set-buffer (process-buffer proc)) | |
14887
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1721 (ange-ftp-wait-not-busy proc) |
1106 | 1722 (setq ange-ftp-process-string "" |
1723 ange-ftp-process-result-line "" | |
1724 ange-ftp-process-busy t | |
1725 ange-ftp-process-result nil | |
1726 ange-ftp-process-multi-skip nil | |
1727 ange-ftp-process-msg msg | |
1728 ange-ftp-process-continue cont | |
1729 ange-ftp-hash-mark-count 0 | |
1730 ange-ftp-last-percent -1 | |
1731 cmd (concat cmd "\n")) | |
1732 (and msg ange-ftp-process-verbose (ange-ftp-message "%s..." msg)) | |
1733 (goto-char (point-max)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1734 (move-marker comint-last-input-start (point)) |
1106 | 1735 ;; 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
|
1736 (save-match-data |
1106 | 1737 (if (string-match "^user \"[^\"]*\"" cmd) |
1738 (insert (substring cmd 0 (match-end 0)) " Turtle Power!\n") | |
1739 (insert cmd))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1740 (move-marker comint-last-input-end (point)) |
1106 | 1741 (send-string proc cmd) |
1742 (set-marker (process-mark proc) (point)) | |
1743 (if nowait | |
1744 nil | |
14887
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1745 (ange-ftp-wait-not-busy proc) |
1106 | 1746 (if cont |
1747 nil ;cont has already been called | |
1748 (cons ange-ftp-process-result ange-ftp-process-result-line)))))) | |
1749 | |
14887
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1750 ;; 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
|
1751 (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
|
1752 (save-excursion |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1753 (set-buffer (process-buffer proc)) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1754 (condition-case nil |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1755 ;; 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
|
1756 ;; 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
|
1757 ;; 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
|
1758 ;; 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
|
1759 ;; 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
|
1760 ;; wants to quit some command. |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1761 (let ((quit-flag nil) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1762 (inhibit-quit nil)) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1763 (while ange-ftp-process-busy |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1764 (accept-process-output proc))) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1765 (quit |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1766 ;; 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
|
1767 ;; 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
|
1768 ;; 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
|
1769 (delete-process proc) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1770 (signal 'quit nil))))) |
11a44a4c4bfe
(ange-ftp-wait-not-busy): New subroutine.
Richard M. Stallman <rms@gnu.org>
parents:
14869
diff
changeset
|
1771 |
1106 | 1772 (defun ange-ftp-nslookup-host (host) |
1773 "Attempt to resolve the given HOSTNAME using nslookup if possible." | |
1774 (interactive "sHost: ") | |
1775 (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
|
1776 (let ((default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1777 (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
|
1778 default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1779 exec-directory)) |
7042 | 1780 ;; It would be nice to make process-connection-type nil, |
1781 ;; but that doesn't work: ftp never responds. | |
1782 ;; Can anyone find a fix for that? | |
1783 (proc (let ((process-connection-type t)) | |
1784 (start-process " *nslookup*" " *nslookup*" | |
1785 ange-ftp-nslookup-program host))) | |
1106 | 1786 (res host)) |
1787 (process-kill-without-query proc) | |
1788 (save-excursion | |
1789 (set-buffer (process-buffer proc)) | |
1790 (while (memq (process-status proc) '(run open)) | |
1791 (accept-process-output proc)) | |
1792 (goto-char (point-min)) | |
1793 (if (re-search-forward "Name:.*\nAddress: *\\(.*\\)$" nil t) | |
1794 (setq res (buffer-substring (match-beginning 1) | |
1795 (match-end 1)))) | |
1796 (kill-buffer (current-buffer))) | |
1797 res) | |
1798 host)) | |
1799 | |
1800 (defun ange-ftp-start-process (host user name) | |
1801 "Spawn a new ftp process ready to connect to machine HOST and give it NAME. | |
1802 If HOST is only ftp-able through a gateway machine then spawn a shell | |
1803 on the gateway machine to do the ftp instead." | |
1804 (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
|
1805 (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
|
1806 (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
|
1807 (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
|
1808 use-smart-ftp) |
1106 | 1809 ange-ftp-gateway-ftp-program-name |
1810 ange-ftp-ftp-program-name)) | |
1811 (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
|
1812 ;; 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
|
1813 ;; 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
|
1814 ;; 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
|
1815 ;; default-directory. |
26587880d2b4
(ange-ftp-start-process): Bind file-name-handler-alist to nil
Richard M. Stallman <rms@gnu.org>
parents:
7298
diff
changeset
|
1816 (file-name-handler-alist) |
6192
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1817 (default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1818 (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
|
1819 default-directory |
b7fa2446073e
(ange-ftp-nslookup-host, ange-ftp-start-process):
Richard M. Stallman <rms@gnu.org>
parents:
5984
diff
changeset
|
1820 exec-directory)) |
1106 | 1821 proc) |
7042 | 1822 ;; It would be nice to make process-connection-type nil, |
1823 ;; but that doesn't work: ftp never responds. | |
1824 ;; 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
|
1825 (let ((process-connection-type t) |
7ccb22bca972
(ange-ftp-load): Added missing form to `cdr' down
Karl Heuer <kwzh@gnu.org>
parents:
13594
diff
changeset
|
1826 (process-environment process-environment)) |
7ccb22bca972
(ange-ftp-load): Added missing form to `cdr' down
Karl Heuer <kwzh@gnu.org>
parents:
13594
diff
changeset
|
1827 ;; 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
|
1828 (setenv "TERM" "dumb") |
7042 | 1829 (if use-gateway |
1830 (if ange-ftp-gateway-program-interactive | |
1831 (setq proc (ange-ftp-gwp-start host user name args)) | |
1832 (setq proc (apply 'start-process name name | |
1833 (append (list ange-ftp-gateway-program | |
1834 ange-ftp-gateway-host) | |
1835 args)))) | |
1836 (setq proc (apply 'start-process name name args)))) | |
1106 | 1837 (process-kill-without-query proc) |
1838 (save-excursion | |
1839 (set-buffer (process-buffer proc)) | |
3502
c2b4a5b9c8d5
(internal-ange-ftp-mode): Renamed from ange-ftp-mode. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
3441
diff
changeset
|
1840 (internal-ange-ftp-mode)) |
1106 | 1841 (set-process-sentinel proc (function ange-ftp-process-sentinel)) |
1842 (set-process-filter proc (function ange-ftp-process-filter)) | |
1843 (accept-process-output proc) ;wait for ftp startup message | |
1844 proc)) | |
1845 | |
3502
c2b4a5b9c8d5
(internal-ange-ftp-mode): Renamed from ange-ftp-mode. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
3441
diff
changeset
|
1846 (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
|
1847 "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
|
1848 |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1849 \\{comint-mode-map}" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1850 (interactive) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
1851 (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
|
1852 (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
|
1853 (setq mode-name "Internal Ange-ftp") |
1106 | 1854 (let ((proc (get-buffer-process (current-buffer)))) |
1855 (goto-char (point-max)) | |
1856 (set-marker (process-mark proc) (point)) | |
1857 (make-local-variable 'ange-ftp-process-string) | |
1858 (setq ange-ftp-process-string "") | |
1859 (make-local-variable 'ange-ftp-process-busy) | |
1860 (make-local-variable 'ange-ftp-process-result) | |
1861 (make-local-variable 'ange-ftp-process-msg) | |
1862 (make-local-variable 'ange-ftp-process-multi-skip) | |
1863 (make-local-variable 'ange-ftp-process-result-line) | |
1864 (make-local-variable 'ange-ftp-process-continue) | |
1865 (make-local-variable 'ange-ftp-hash-mark-count) | |
1866 (make-local-variable 'ange-ftp-binary-hash-mark-size) | |
1867 (make-local-variable 'ange-ftp-ascii-hash-mark-size) | |
1868 (make-local-variable 'ange-ftp-hash-mark-unit) | |
1869 (make-local-variable 'ange-ftp-xfer-size) | |
1870 (make-local-variable 'ange-ftp-last-percent) | |
1871 (setq ange-ftp-hash-mark-count 0) | |
1872 (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
|
1873 (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
|
1874 |
61a2355759aa
(internal-ange-ftp-mode): Set comint-prompt-regexp and paragraph-start.
Richard M. Stallman <rms@gnu.org>
parents:
7043
diff
changeset
|
1875 (setq comint-prompt-regexp "^ftp> ") |
13278
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
1876 (make-local-variable 'comint-password-prompt-regexp) |
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
1877 ;; This is a regexp that can't match anything. |
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
1878 ;; ange-ftp has its own ways of handling passwords. |
9493a12ca8a5
(internal-ange-ftp-mode):
Richard M. Stallman <rms@gnu.org>
parents:
13089
diff
changeset
|
1879 (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
|
1880 (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
|
1881 (setq paragraph-start comint-prompt-regexp))) |
1106 | 1882 |
1883 (defun ange-ftp-smart-login (host user pass account proc) | |
1884 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
1885 PROC is the FTP-client's process. This routine uses the smart-gateway | |
1886 host specified in ``ange-ftp-gateway-host''." | |
1887 (let ((result (ange-ftp-raw-send-cmd | |
1888 proc | |
1889 (format "open %s %s" | |
1890 (ange-ftp-nslookup-host ange-ftp-gateway-host) | |
1891 ange-ftp-smart-gateway-port) | |
1892 (format "Opening FTP connection to %s via %s" | |
1893 host | |
1894 ange-ftp-gateway-host)))) | |
1895 (or (car result) | |
1896 (ange-ftp-error host user | |
1897 (concat "OPEN request failed: " | |
1898 (cdr result)))) | |
1899 (setq result (ange-ftp-raw-send-cmd | |
1900 proc (format "user \"%s\"@%s %s %s" | |
1901 user | |
1902 (ange-ftp-nslookup-host host) | |
1903 pass | |
1904 account) | |
1905 (format "Logging in as user %s@%s" | |
1906 user host))) | |
1907 (or (car result) | |
1908 (progn | |
1909 (ange-ftp-set-passwd host user nil) ; reset password | |
1910 (ange-ftp-set-account host user nil) ; reset account | |
1911 (ange-ftp-error host user | |
1912 (concat "USER request failed: " | |
1913 (cdr result))))))) | |
1914 | |
1915 (defun ange-ftp-normal-login (host user pass account proc) | |
1916 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
1917 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
|
1918 (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
|
1919 (result (ange-ftp-raw-send-cmd |
1106 | 1920 proc |
12441
597f9723ddf6
(ange-ftp-normal-login): if ange-ftp-smart-gateway
Richard M. Stallman <rms@gnu.org>
parents:
11315
diff
changeset
|
1921 (format "open %s" nshost) |
1106 | 1922 (format "Opening FTP connection to %s" host)))) |
1923 (or (car result) | |
1924 (ange-ftp-error host user | |
1925 (concat "OPEN request failed: " | |
1926 (cdr result)))) | |
1927 (setq result (ange-ftp-raw-send-cmd | |
1928 proc | |
16611
e746a7bd6376
(ange-ftp-normal-login): If using a smart gateway,
Karl Heuer <kwzh@gnu.org>
parents:
16427
diff
changeset
|
1929 (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
|
1930 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
|
1931 (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
|
1932 (format "user \"%s\" %s %s" user pass account)) |
1106 | 1933 (format "Logging in as user %s@%s" user host))) |
1934 (or (car result) | |
1935 (progn | |
1936 (ange-ftp-set-passwd host user nil) ;reset password. | |
1937 (ange-ftp-set-account host user nil) ;reset account. | |
1938 (ange-ftp-error host user | |
1939 (concat "USER request failed: " | |
1940 (cdr result))))))) | |
1941 | |
5480
f193f880c524
(ange-ftp-hash-mark-msgs): Undo previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5350
diff
changeset
|
1942 ;; ange@hplb.hpl.hp.com says this should not be changed. |
1106 | 1943 (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
|
1944 "[hH]ash mark [^0-9]*\\([0-9]+\\)" |
1106 | 1945 "*Regexp matching the FTP client's output upon doing a HASH command.") |
1946 | |
1947 (defun ange-ftp-guess-hash-mark-size (proc) | |
1948 (if ange-ftp-send-hash | |
1949 (save-excursion | |
1950 (set-buffer (process-buffer proc)) | |
1951 (let* ((status (ange-ftp-raw-send-cmd proc "hash")) | |
1952 (result (car status)) | |
1953 (line (cdr status))) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
1954 (save-match-data |
1106 | 1955 (if (string-match ange-ftp-hash-mark-msgs line) |
1956 (let ((size (string-to-int | |
1957 (substring line | |
1958 (match-beginning 1) | |
1959 (match-end 1))))) | |
1960 (setq ange-ftp-ascii-hash-mark-size size | |
1961 ange-ftp-hash-mark-unit (ash size -4)) | |
1962 | |
1963 ;; if a default value for this is set, use that value. | |
1964 (or ange-ftp-binary-hash-mark-size | |
1965 (setq ange-ftp-binary-hash-mark-size size))))))))) | |
1966 | |
1967 (defun ange-ftp-get-process (host user) | |
7042 | 1968 "Return an FTP subprocess connected to HOST and logged in as USER. |
1969 Create a new process if needed." | |
1106 | 1970 (let* ((name (ange-ftp-ftp-process-buffer host user)) |
1971 (proc (get-process name))) | |
1972 (if (and proc (memq (process-status proc) '(run open))) | |
1973 proc | |
1974 (let ((pass (ange-ftp-quote-string | |
1975 (ange-ftp-get-passwd host user))) | |
1976 (account (ange-ftp-quote-string | |
1977 (ange-ftp-get-account host user)))) | |
1978 ;; grab a suitable process. | |
1979 (setq proc (ange-ftp-start-process host user name)) | |
1980 | |
1981 ;; 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
|
1982 (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
|
1983 ange-ftp-gateway-host) |
1106 | 1984 (ange-ftp-smart-login host user pass account proc) |
1985 (ange-ftp-normal-login host user pass account proc)) | |
1986 | |
1987 ;; Tell client to send back hash-marks as progress. It isn't usually | |
1988 ;; fatal if this command fails. | |
1989 (ange-ftp-guess-hash-mark-size proc) | |
1990 | |
1991 ;; Guess at the host type. | |
1992 (ange-ftp-guess-host-type host user) | |
1993 | |
1994 ;; Run any user-specified hooks. Note that proc, host and user are | |
1995 ;; dynamically bound at this point. | |
1996 (run-hooks 'ange-ftp-process-startup-hook)) | |
1997 proc))) | |
1998 | |
1999 ;; Variables for caching host and host-type | |
2000 (defvar ange-ftp-host-cache nil) | |
2001 (defvar ange-ftp-host-type-cache nil) | |
2002 | |
2003 ;; If ange-ftp-host-type is called with the optional user | |
2004 ;; argument, it will attempt to guess the host type by connecting | |
2005 ;; as user, if necessary. For efficiency, I have tried to give this | |
2006 ;; optional second argument only when necessary. Have I missed any calls | |
2007 ;; to ange-ftp-host-type where it should have been supplied? | |
2008 | |
2009 (defun ange-ftp-host-type (host &optional user) | |
2010 "Return a symbol which represents the type of the HOST given. | |
2011 If the optional argument USER is given, attempts to guess the | |
2012 host-type by logging in as USER." | |
2013 (if (eq host ange-ftp-host-cache) | |
2014 ange-ftp-host-type-cache | |
2015 ;; Trigger an ftp connection, in case we need to guess at the host type. | |
2016 (if (and user (ange-ftp-get-process host user) (eq host ange-ftp-host-cache)) | |
2017 ange-ftp-host-type-cache | |
2018 (setq ange-ftp-host-cache host | |
2019 ange-ftp-host-type-cache | |
2020 (cond ((ange-ftp-dumb-unix-host host) | |
2021 'dumb-unix) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2022 ;; ((and (fboundp 'ange-ftp-vos-host) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2023 ;; (ange-ftp-vos-host host)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2024 ;; 'vos) |
1106 | 2025 ((and (fboundp 'ange-ftp-vms-host) |
2026 (ange-ftp-vms-host host)) | |
2027 'vms) | |
2028 ((and (fboundp 'ange-ftp-mts-host) | |
2029 (ange-ftp-mts-host host)) | |
2030 'mts) | |
2031 ((and (fboundp 'ange-ftp-cms-host) | |
2032 (ange-ftp-cms-host host)) | |
2033 'cms) | |
2034 (t | |
2035 'unix)))))) | |
2036 | |
2037 ;; It would be nice to abstract the functions ange-ftp-TYPE-host and | |
2038 ;; ange-ftp-add-TYPE-host. The trick is to abstract these functions | |
2039 ;; without sacrificing speed. Also, having separate variables | |
2040 ;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to | |
2041 ;; set an alist to indicate that a host is of a given type. Even with | |
2042 ;; automatic host type recognition, setting a regexp is still a good idea | |
2043 ;; (for efficiency) if you log into a particular non-UNIX host frequently. | |
2044 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2045 (defvar ange-ftp-fix-name-func-alist nil |
7042 | 2046 "Alist saying how to convert file name to the host's syntax. |
2047 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
|
2048 which can change a UNIX file name into a name more suitable for a host of type |
1106 | 2049 TYPE.") |
2050 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2051 (defvar ange-ftp-fix-dir-name-func-alist nil |
7042 | 2052 "Alist saying how to convert directory name to the host's syntax. |
2053 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
|
2054 which can change UNIX directory name into a directory name more suitable |
1106 | 2055 for a host of type TYPE.") |
2056 | |
2057 ;; *** Perhaps the sense of this variable should be inverted, since there | |
2058 ;; *** is only 1 host type that can take ls-style listing options. | |
2059 (defvar ange-ftp-dumb-host-types '(dumb-unix) | |
2060 "List of host types that can't take UNIX ls-style listing options.") | |
2061 | |
2062 (defun ange-ftp-send-cmd (host user cmd &optional msg cont nowait) | |
2063 "Find an ftp process connected to HOST logged in as USER and send it CMD. | |
2064 MSG is an optional status message to be output before and after issuing the | |
2065 command. | |
2066 See the documentation for ange-ftp-raw-send-cmd for a description of CONT | |
2067 and NOWAIT." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2068 ;; Handle conversion to remote file name syntax and remote ls option |
1106 | 2069 ;; capability. |
2070 (let ((cmd0 (car cmd)) | |
2071 (cmd1 (nth 1 cmd)) | |
4498
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2072 (ange-ftp-this-user user) |
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2073 (ange-ftp-this-host host) |
c050d8a0c3db
(ange-ftp-send-cmd): Bind ange-ftp-this-...
Richard M. Stallman <rms@gnu.org>
parents:
4185
diff
changeset
|
2074 (ange-ftp-this-msg msg) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2075 cmd2 cmd3 host-type fix-name-func) |
1106 | 2076 |
2077 (cond | |
2078 | |
2079 ;; pwd case (We don't care what host-type.) | |
2080 ((null cmd1)) | |
2081 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2082 ;; cmd == 'dir "remote-name" "local-name" "ls-switches" |
1106 | 2083 ((progn |
2084 (setq cmd2 (nth 2 cmd) | |
2085 host-type (ange-ftp-host-type host user)) | |
2086 ;; This will trigger an FTP login, if one doesn't exist | |
2087 (eq cmd0 'dir)) | |
2088 (setq cmd1 (funcall | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2089 (or (cdr (assq host-type ange-ftp-fix-dir-name-func-alist)) |
1106 | 2090 'identity) |
2091 cmd1) | |
2092 cmd3 (nth 3 cmd)) | |
2093 ;; Need to deal with the HP-UX ftp bug. This should also allow | |
2094 ;; us to resolve symlinks to directories on SysV machines. (Sebastian will | |
2095 ;; be happy.) | |
2096 (and (eq host-type 'unix) | |
2097 (string-match "/$" cmd1) | |
2098 (not (string-match "R" cmd3)) | |
2099 (setq cmd1 (concat cmd1 "."))) | |
2100 ;; If the remote ls can take switches, put them in | |
2101 (or (memq host-type ange-ftp-dumb-host-types) | |
2102 (setq cmd0 'ls | |
2103 cmd1 (format "\"%s %s\"" cmd3 cmd1)))) | |
2104 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2105 ;; 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
|
2106 ((progn |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2107 (setq fix-name-func (or (cdr (assq host-type |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2108 ange-ftp-fix-name-func-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2109 'identity)) |
1106 | 2110 (memq cmd0 '(get delete mkdir rmdir cd))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2111 (setq cmd1 (funcall fix-name-func cmd1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2112 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2113 ;; Second argument is the remote name |
1106 | 2114 ((memq cmd0 '(append put chmod)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2115 (setq cmd2 (funcall fix-name-func cmd2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2116 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2117 ;; Both arguments are remote names |
1106 | 2118 ((eq cmd0 'rename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2119 (setq cmd1 (funcall fix-name-func cmd1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2120 cmd2 (funcall fix-name-func cmd2)))) |
1106 | 2121 |
2122 ;; Turn the command into one long string | |
2123 (setq cmd0 (symbol-name cmd0)) | |
2124 (setq cmd (concat cmd0 | |
2125 (and cmd1 (concat " " cmd1)) | |
2126 (and cmd2 (concat " " cmd2)))) | |
2127 | |
2128 ;; Actually send the resulting command. | |
2129 (let (afsc-result | |
2130 afsc-line) | |
2131 (ange-ftp-raw-send-cmd | |
2132 (ange-ftp-get-process host user) | |
2133 cmd | |
2134 msg | |
2135 (list | |
2136 (function (lambda (result line host user | |
2137 cmd msg cont nowait) | |
2138 (or cont | |
2139 (setq afsc-result result | |
2140 afsc-line line)) | |
2141 (if result | |
2142 (ange-ftp-call-cont cont result line) | |
2143 (ange-ftp-raw-send-cmd | |
2144 (ange-ftp-get-process host user) | |
2145 cmd | |
2146 msg | |
2147 (list | |
2148 (function (lambda (result line cont) | |
2149 (or cont | |
2150 (setq afsc-result result | |
2151 afsc-line line)) | |
2152 (ange-ftp-call-cont cont result line))) | |
2153 cont) | |
2154 nowait)))) | |
2155 host user cmd msg cont nowait) | |
2156 nowait) | |
2157 | |
2158 (if nowait | |
2159 nil | |
2160 (if cont | |
2161 nil | |
2162 (cons afsc-result afsc-line)))))) | |
2163 | |
2164 ;; It might be nice to message users about the host type identified, | |
2165 ;; but there is so much other messaging going on, it would not be | |
2166 ;; seen. No point in slowing things down just so users can read | |
2167 ;; a host type message. | |
2168 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2169 (defconst ange-ftp-cms-name-template |
1106 | 2170 (concat |
2171 "^[-A-Z0-9$*][-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?" | |
2172 "[-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
|
2173 (defconst ange-ftp-vms-name-template |
1106 | 2174 "^[-A-Z0-9_$]+:\\[[-A-Z0-9_$]+\\(\\.[-A-Z0-9_$]+\\)*\\]$") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2175 (defconst ange-ftp-mts-name-template |
1106 | 2176 "^[A-Z0-9._][A-Z0-9._][A-Z0-9._][A-Z0-9._]:$") |
2177 | |
2178 (defun ange-ftp-guess-host-type (host user) | |
7042 | 2179 "Guess at the the host type of HOST. |
2180 Works by doing a pwd and examining the directory syntax." | |
1106 | 2181 (let ((host-type (ange-ftp-host-type host)) |
2182 (key (concat host "/" user "/~"))) | |
2183 (if (eq host-type 'unix) | |
2184 ;; 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
|
2185 (save-match-data |
1106 | 2186 (let* ((result (ange-ftp-get-pwd host user)) |
2187 (dir (car result)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2188 fix-name-func) |
1106 | 2189 (cond ((null dir) |
2190 (message "Warning! Unable to get home directory") | |
2191 (sit-for 1) | |
2192 (if (string-match | |
2193 "^450 No current working directory defined$" | |
2194 (cdr result)) | |
2195 | |
2196 ;; We'll assume that if pwd bombs with this | |
2197 ;; error message, then it's CMS. | |
2198 (progn | |
2199 (ange-ftp-add-cms-host host) | |
2200 (setq ange-ftp-host-cache host | |
2201 ange-ftp-host-type-cache 'cms)))) | |
2202 | |
2203 ;; try for VMS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2204 ((string-match ange-ftp-vms-name-template dir) |
1106 | 2205 (ange-ftp-add-vms-host host) |
2206 ;; The add-host functions clear the host type cache. | |
2207 ;; Therefore, need to set the cache afterwards. | |
2208 (setq ange-ftp-host-cache host | |
2209 ange-ftp-host-type-cache 'vms)) | |
2210 | |
2211 ;; try for MTS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2212 ((string-match ange-ftp-mts-name-template dir) |
1106 | 2213 (ange-ftp-add-mts-host host) |
2214 (setq ange-ftp-host-cache host | |
2215 ange-ftp-host-type-cache 'mts)) | |
2216 | |
2217 ;; try for CMS | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2218 ((string-match ange-ftp-cms-name-template dir) |
1106 | 2219 (ange-ftp-add-cms-host host) |
2220 (setq ange-ftp-host-cache host | |
2221 ange-ftp-host-type-cache 'cms)) | |
2222 | |
2223 ;; assume UN*X | |
2224 (t | |
2225 (setq ange-ftp-host-cache host | |
2226 ange-ftp-host-type-cache 'unix))) | |
2227 | |
2228 ;; Now that we have done a pwd, might as well put it in | |
2229 ;; the expand-dir hashtable. | |
2230 (let ((ange-ftp-this-user user) | |
2231 (ange-ftp-this-host host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2232 (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
|
2233 ange-ftp-fix-name-func-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2234 (if fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2235 (setq dir (funcall fix-name-func dir 'reverse)))) |
1106 | 2236 (ange-ftp-put-hash-entry key dir |
2237 ange-ftp-expand-dir-hashtable)))) | |
2238 | |
2239 ;; In the special case of CMS make sure that know the | |
2240 ;; expansion of the home minidisk now, because we will | |
2241 ;; be doing a lot of cd's. | |
2242 (if (and (eq host-type 'cms) | |
2243 (not (ange-ftp-hash-entry-exists-p | |
2244 key ange-ftp-expand-dir-hashtable))) | |
2245 (let ((dir (car (ange-ftp-get-pwd host user)))) | |
2246 (if dir | |
2247 (ange-ftp-put-hash-entry key (concat "/" dir) | |
2248 ange-ftp-expand-dir-hashtable) | |
2249 (message "Warning! Unable to get home directory") | |
2250 (sit-for 1)))))) | |
2251 | |
2252 | |
2253 ;;;; ------------------------------------------------------------ | |
2254 ;;;; Remote file and directory listing support. | |
2255 ;;;; ------------------------------------------------------------ | |
2256 | |
7042 | 2257 ;; Returns whether HOST's FTP server doesn't like \'ls\' or \'dir\' commands |
2258 ;; to take switch arguments. | |
1106 | 2259 (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
|
2260 (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
|
2261 (save-match-data |
1106 | 2262 (string-match ange-ftp-dumb-unix-host-regexp host)))) |
2263 | |
2264 (defun ange-ftp-add-dumb-unix-host (host) | |
2265 "Interactively adds a given HOST to ange-ftp-dumb-unix-host-regexp." | |
2266 (interactive | |
2267 (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
|
2268 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2269 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 2270 (if (not (ange-ftp-dumb-unix-host host)) |
2271 (setq ange-ftp-dumb-unix-host-regexp | |
2272 (concat "^" (regexp-quote host) "$" | |
2273 (and ange-ftp-dumb-unix-host-regexp "\\|") | |
2274 ange-ftp-dumb-unix-host-regexp) | |
2275 ange-ftp-host-cache nil))) | |
2276 | |
2277 (defvar ange-ftp-parse-list-func-alist nil | |
7042 | 2278 "Alist saying how to parse directory listings for certain OS types. |
2279 Association list of \( TYPE \. FUNC \) pairs. The FUNC is a routine | |
1106 | 2280 which can parse the output from a DIR listing for a host of type TYPE.") |
2281 | |
2282 ;; With no-error nil, this function returns: | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2283 ;; an error if file is not an ange-ftp-name |
1106 | 2284 ;; (This should never happen.) |
2285 ;; an error if either the listing is unreadable or there is an ftp error. | |
2286 ;; the listing (a string), if everything works. | |
2287 ;; | |
2288 ;; With no-error t, it returns: | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2289 ;; an error if not an ange-ftp-name |
14040 | 2290 ;; error if listing is unreadable (most likely caused by a slow connection) |
1106 | 2291 ;; nil if ftp error (this is because although asking to list a nonexistent |
2292 ;; directory on a remote unix machine usually (except | |
2293 ;; maybe for dumb hosts) returns an ls error, but no | |
2294 ;; ftp error, if the same is done on a VMS machine, | |
2295 ;; an ftp error is returned. Need to trap the error | |
2296 ;; so we can go on and try to list the parent.) | |
2297 ;; the listing, if everything works. | |
2298 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2299 ;; 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
|
2300 ;; 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
|
2301 ;; of FILE within the directory specified by `default-directory'. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2302 |
15958
58742d1b996a
(ange-ftp-ls): Run ange-ftp-before-parse-ls-hook.
Richard M. Stallman <rms@gnu.org>
parents:
15872
diff
changeset
|
2303 (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
|
2304 "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
|
2305 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2306 (defun ange-ftp-ls (file lsargs parse &optional no-error wildcard) |
1106 | 2307 "Return the output of an `DIR' or `ls' command done over ftp. |
2308 FILE is the full name of the remote file, LSARGS is any args to pass to the | |
2309 `ls' command, and PARSE specifies that the output should be parsed and stored | |
2310 away in the internal cache." | |
2311 ;; If parse is t, we assume that file is a directory. i.e. we only parse | |
2312 ;; full directory listings. | |
2313 (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
|
2314 (parsed (ange-ftp-ftp-name ange-ftp-this-file))) |
1106 | 2315 (if parsed |
2316 (let* ((host (nth 0 parsed)) | |
2317 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2318 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2319 (key (directory-file-name ange-ftp-this-file)) |
2320 (host-type (ange-ftp-host-type host user)) | |
2321 (dumb (memq host-type ange-ftp-dumb-host-types)) | |
2322 result | |
2323 temp | |
2324 lscmd parse-func) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2325 (if (string-equal name "") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2326 (setq name |
1106 | 2327 (ange-ftp-real-file-name-as-directory |
2328 (ange-ftp-expand-dir host user "~")))) | |
2329 (if (and ange-ftp-ls-cache-file | |
2330 (string-equal key ange-ftp-ls-cache-file) | |
2331 ;; Don't care about lsargs for dumb hosts. | |
2332 (or dumb (string-equal lsargs ange-ftp-ls-cache-lsargs))) | |
2333 ange-ftp-ls-cache-res | |
2334 (setq temp (ange-ftp-make-tmp-name host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2335 (if wildcard |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2336 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2337 (ange-ftp-cd host user (file-name-directory name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2338 (setq lscmd (list 'dir file temp lsargs))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2339 (setq lscmd (list 'dir name temp lsargs))) |
1106 | 2340 (unwind-protect |
2341 (if (car (setq result (ange-ftp-send-cmd | |
2342 host | |
2343 user | |
2344 lscmd | |
2345 (format "Listing %s" | |
2346 (ange-ftp-abbreviate-filename | |
2347 ange-ftp-this-file))))) | |
2348 (save-excursion | |
2349 (set-buffer (get-buffer-create | |
2350 ange-ftp-data-buffer-name)) | |
2351 (erase-buffer) | |
2352 (if (ange-ftp-real-file-readable-p temp) | |
2353 (ange-ftp-real-insert-file-contents temp) | |
2354 (sleep-for ange-ftp-retry-time) | |
2355 ;wait for file to possibly appear | |
2356 (if (ange-ftp-real-file-readable-p temp) | |
2357 ;; Try again. | |
2358 (ange-ftp-real-insert-file-contents temp) | |
2359 (ange-ftp-error host user | |
2360 (format | |
2361 "list data file %s not readable" | |
2362 temp)))) | |
15958
58742d1b996a
(ange-ftp-ls): Run ange-ftp-before-parse-ls-hook.
Richard M. Stallman <rms@gnu.org>
parents:
15872
diff
changeset
|
2363 (run-hooks 'ange-ftp-before-parse-ls-hook) |
1106 | 2364 (if parse |
2365 (ange-ftp-set-files | |
2366 ange-ftp-this-file | |
2367 (if (setq | |
2368 parse-func | |
2369 (cdr (assq host-type | |
2370 ange-ftp-parse-list-func-alist))) | |
2371 (funcall parse-func) | |
2372 (ange-ftp-parse-dired-listing lsargs)))) | |
2373 (setq ange-ftp-ls-cache-file key | |
2374 ange-ftp-ls-cache-lsargs lsargs | |
2375 ; For dumb hosts-types this is | |
2376 ; meaningless but harmless. | |
2377 ange-ftp-ls-cache-res (buffer-string)) | |
2378 ;; (kill-buffer (current-buffer)) | |
2379 ange-ftp-ls-cache-res) | |
2380 (if no-error | |
2381 nil | |
2382 (ange-ftp-error host user | |
2383 (concat "DIR failed: " (cdr result))))) | |
2384 (ange-ftp-del-tmp-name temp)))) | |
2385 (error "Should never happen. Please report. Bug ref. no.: 1")))) | |
2386 | |
2387 ;;;; ------------------------------------------------------------ | |
2388 ;;;; Directory information caching support. | |
2389 ;;;; ------------------------------------------------------------ | |
2390 | |
2391 (defconst ange-ftp-date-regexp | |
2392 (concat | |
2393 " \\(Jan\\|Feb\\|Mar\\|Apr\\|May\\|Jun\\|Jul\\|Aug\\|Sep\\|Oct" | |
2394 "\\|Nov\\|Dec\\) +[0-3]?[0-9] ")) | |
2395 | |
2396 (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
|
2397 "Alist saying how to add file entries on certain OS types. |
7042 | 2398 Association list of pairs \( TYPE \. FUNC \), where FUNC |
1106 | 2399 is a function to be used to add a file entry for the OS TYPE. The |
2400 main reason for this alist is to deal with file versions in VMS.") | |
2401 | |
2402 (defvar ange-ftp-delete-file-entry-alist nil | |
7042 | 2403 "Alist saying how to delete files on certain OS types. |
2404 Association list of pairs \( TYPE \. FUNC \), where FUNC | |
1106 | 2405 is a function to be used to delete a file entry for the OS TYPE. |
7042 | 2406 The main reason for this alist is to deal with file versions in VMS.") |
1106 | 2407 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2408 (defun ange-ftp-add-file-entry (name &optional dir-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2409 "Add a file entry for file NAME, if its directory info exists." |
1106 | 2410 (funcall (or (cdr (assq (ange-ftp-host-type |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2411 (car (ange-ftp-ftp-name name))) |
1106 | 2412 ange-ftp-add-file-entry-alist)) |
2413 'ange-ftp-internal-add-file-entry) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2414 name dir-p) |
1106 | 2415 (setq ange-ftp-ls-cache-file nil)) |
2416 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2417 (defun ange-ftp-delete-file-entry (name &optional dir-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2418 "Delete the file entry for file NAME, if its directory info exists." |
1106 | 2419 (funcall (or (cdr (assq (ange-ftp-host-type |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2420 (car (ange-ftp-ftp-name name))) |
1106 | 2421 ange-ftp-delete-file-entry-alist)) |
2422 'ange-ftp-internal-delete-file-entry) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2423 name dir-p) |
1106 | 2424 (setq ange-ftp-ls-cache-file nil)) |
2425 | |
2426 (defmacro ange-ftp-parse-filename () | |
2427 ;;Extract the filename from the current line of a dired-like listing. | |
2428 (` (let ((eol (progn (end-of-line) (point)))) | |
2429 (beginning-of-line) | |
2430 (if (re-search-forward ange-ftp-date-regexp eol t) | |
2431 (progn | |
2432 (skip-chars-forward " ") | |
2433 (skip-chars-forward "^ " eol) | |
2434 (skip-chars-forward " " eol) | |
2435 ;; We bomb on filenames starting with a space. | |
2436 (buffer-substring (point) eol)))))) | |
2437 | |
2438 ;; This deals with the F switch. Should also do something about | |
2439 ;; unquoting names obtained with the SysV b switch and the GNU Q | |
2440 ;; switch. See Sebastian's dired-get-filename. | |
2441 | |
2442 (defmacro ange-ftp-ls-parser () | |
2443 ;; Note that switches is dynamically bound. | |
2444 ;; Meant to be called by ange-ftp-parse-dired-listing | |
2445 (` (let ((tbl (ange-ftp-make-hashtable)) | |
2446 (used-F (and (stringp switches) | |
2447 (string-match "F" switches))) | |
2448 file-type symlink directory file) | |
2449 (while (setq file (ange-ftp-parse-filename)) | |
2450 (beginning-of-line) | |
2451 (skip-chars-forward "\t 0-9") | |
2452 (setq file-type (following-char) | |
2453 directory (eq file-type ?d)) | |
2454 (if (eq file-type ?l) | |
2455 (if (string-match " -> " file) | |
2456 (setq symlink (substring file (match-end 0)) | |
2457 file (substring file 0 (match-beginning 0))) | |
2458 ;; Shouldn't happen | |
2459 (setq symlink "")) | |
2460 (setq symlink nil)) | |
2461 ;; Only do a costly regexp search if the F switch was used. | |
2462 (if (and used-F | |
2463 (not (string-equal file "")) | |
2464 (looking-at | |
2465 ".[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)")) | |
2466 (let ((socket (eq file-type ?s)) | |
2467 (executable | |
2468 (and (not symlink) ; x bits don't mean a thing for symlinks | |
2469 (string-match "[xst]" | |
2470 (concat | |
2471 (buffer-substring | |
2472 (match-beginning 1) | |
2473 (match-end 1)) | |
2474 (buffer-substring | |
2475 (match-beginning 2) | |
2476 (match-end 2)) | |
2477 (buffer-substring | |
2478 (match-beginning 3) | |
2479 (match-end 3))))))) | |
2480 ;; Some ls's with the F switch mark symlinks with an @ (ULTRIX) | |
2481 ;; and others don't. (sigh...) Beware, that some Unix's don't | |
2482 ;; seem to believe in the F-switch | |
2483 (if (or (and symlink (string-match "@$" file)) | |
2484 (and directory (string-match "/$" file)) | |
2485 (and executable (string-match "*$" file)) | |
2486 (and socket (string-match "=$" file))) | |
2487 (setq file (substring file 0 -1))))) | |
2488 (ange-ftp-put-hash-entry file (or symlink directory) tbl) | |
2489 (forward-line 1)) | |
2490 (ange-ftp-put-hash-entry "." t tbl) | |
2491 (ange-ftp-put-hash-entry ".." t tbl) | |
2492 tbl))) | |
2493 | |
2494 ;;; The dl stuff for descriptive listings | |
2495 | |
2496 (defvar ange-ftp-dl-dir-regexp nil | |
7042 | 2497 "Regexp matching directories which are listed in dl format. |
2498 This regexp should not be anchored with a trailing `$', because it should | |
2499 match subdirectories as well.") | |
1106 | 2500 |
2501 (defun ange-ftp-add-dl-dir (dir) | |
1233 | 2502 "Interactively adds a DIR to ange-ftp-dl-dir-regexp." |
1106 | 2503 (interactive |
2504 (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
|
2505 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2506 (and name (ange-ftp-ftp-name name) |
1106 | 2507 (file-name-directory name)))))) |
2508 (if (not (and ange-ftp-dl-dir-regexp | |
2509 (string-match ange-ftp-dl-dir-regexp dir))) | |
2510 (setq ange-ftp-dl-dir-regexp | |
2511 (concat "^" (regexp-quote dir) | |
2512 (and ange-ftp-dl-dir-regexp "\\|") | |
2513 ange-ftp-dl-dir-regexp)))) | |
2514 | |
2515 (defmacro ange-ftp-dl-parser () | |
2516 ;; Parse the current buffer, which is assumed to be a descriptive | |
2517 ;; listing, and return a hashtable. | |
2518 (` (let ((tbl (ange-ftp-make-hashtable))) | |
2519 (while (not (eobp)) | |
2520 (ange-ftp-put-hash-entry | |
2521 (buffer-substring (point) | |
2522 (progn | |
2523 (skip-chars-forward "^ /\n") | |
2524 (point))) | |
2525 (eq (following-char) ?/) | |
2526 tbl) | |
2527 (forward-line 1)) | |
2528 (ange-ftp-put-hash-entry "." t tbl) | |
2529 (ange-ftp-put-hash-entry ".." t tbl) | |
2530 tbl))) | |
2531 | |
7042 | 2532 ;; Parse the current buffer which is assumed to be in a dired-like listing |
2533 ;; format, and return a hashtable as the result. If the listing is not really | |
2534 ;; a listing, then return nil. | |
2535 | |
1106 | 2536 (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
|
2537 (save-match-data |
1106 | 2538 (cond |
2539 ((looking-at "^total [0-9]+$") | |
2540 (forward-line 1) | |
5067
4854aff5c5b3
(ange-ftp-parse-dired-listing): Skip extra blank line
Richard M. Stallman <rms@gnu.org>
parents:
4912
diff
changeset
|
2541 ;; 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
|
2542 (if (eolp) (forward-line 1)) |
1106 | 2543 (ange-ftp-ls-parser)) |
2544 ((looking-at "[^\n]+\\( not found\\|: Not a directory\\)\n\\'") | |
2545 ;; It's an ls error message. | |
2546 nil) | |
2547 ((eobp) ; i.e. (zerop (buffer-size)) | |
2548 ;; This could be one of: | |
2549 ;; (1) An Ultrix ls error message | |
2550 ;; (2) A listing with the A switch of an empty directory | |
2551 ;; on a machine which doesn't give a total line. | |
2552 ;; (3) The twilight zone. | |
2553 ;; We'll assume (1) for now. | |
2554 nil) | |
2555 ((re-search-forward ange-ftp-date-regexp nil t) | |
2556 (beginning-of-line) | |
2557 (ange-ftp-ls-parser)) | |
2558 ((re-search-forward "^[^ \n\t]+ +\\([0-9]+\\|-\\|=\\) " nil t) | |
2559 ;; It's a dl listing (I hope). | |
2560 ;; file is bound by the call to ange-ftp-ls | |
2561 (ange-ftp-add-dl-dir ange-ftp-this-file) | |
2562 (beginning-of-line) | |
2563 (ange-ftp-dl-parser)) | |
2564 (t nil)))) | |
2565 | |
2566 (defun ange-ftp-set-files (directory files) | |
2567 "For a given DIRECTORY, set or change the associated FILES hashtable." | |
2568 (and files (ange-ftp-put-hash-entry (file-name-as-directory directory) | |
2569 files ange-ftp-files-hashtable))) | |
2570 | |
2571 (defun ange-ftp-get-files (directory &optional no-error) | |
2572 "Given a given DIRECTORY, return a hashtable of file entries. | |
2573 This will give an error or return nil, depending on the value of | |
2574 NO-ERROR, if a listing for DIRECTORY cannot be obtained." | |
2575 (setq directory (file-name-as-directory directory)) ;normalize | |
2576 (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
|
2577 (save-match-data |
1106 | 2578 (and (ange-ftp-ls directory |
2579 ;; This is an efficiency hack. We try to | |
2580 ;; anticipate what sort of listing dired | |
2581 ;; might want, and cache just such a listing. | |
2582 (if (and (boundp 'dired-actual-switches) | |
2583 (stringp dired-actual-switches) | |
2584 ;; We allow the A switch, which lists | |
2585 ;; all files except "." and "..". | |
2586 ;; This is OK because we manually | |
2587 ;; insert these entries | |
2588 ;; in the hash table. | |
2589 (string-match | |
2590 "[aA]" dired-actual-switches) | |
2591 (string-match | |
2592 "l" dired-actual-switches) | |
2593 (not (string-match | |
2594 "R" dired-actual-switches))) | |
2595 dired-actual-switches | |
2596 (if (and (boundp 'dired-listing-switches) | |
2597 (stringp dired-listing-switches) | |
2598 (string-match | |
2599 "[aA]" dired-listing-switches) | |
2600 (string-match | |
2601 "l" dired-listing-switches) | |
2602 (not (string-match | |
2603 "R" dired-listing-switches))) | |
2604 dired-listing-switches | |
2605 "-al")) | |
2606 t no-error) | |
2607 (ange-ftp-get-hash-entry | |
2608 directory ange-ftp-files-hashtable))))) | |
2609 | |
7042 | 2610 ;; Given NAME, return the file part that can be used for looking up the |
2611 ;; file's entry in a hashtable. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2612 (defmacro ange-ftp-get-file-part (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2613 (` (let ((file (file-name-nondirectory (, name)))) |
1106 | 2614 (if (string-equal file "") |
2615 "." | |
2616 file)))) | |
2617 | |
7042 | 2618 ;; Return whether ange-ftp-file-entry-p and ange-ftp-get-file-entry are |
2619 ;; allowed to determine if NAME is a sub-directory by listing it directly, | |
2620 ;; rather than listing its parent directory. This is used for efficiency so | |
2621 ;; that a wasted listing is not done: | |
2622 ;; 1. When looking for a .dired file in dired-x.el. | |
2623 ;; 2. The syntax of FILE and DIR make it impossible that FILE could be a valid | |
2624 ;; subdirectory. This is of course an OS dependent judgement. | |
2625 | |
1106 | 2626 (defmacro ange-ftp-allow-child-lookup (dir file) |
2627 (` (not | |
2628 (let* ((efile (, file)) ; expand once. | |
2629 (edir (, dir)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2630 (parsed (ange-ftp-ftp-name edir)) |
1106 | 2631 (host-type (ange-ftp-host-type |
2632 (car parsed)))) | |
2633 (or | |
1456
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2634 ;;; This variable seems not to exist in Emacs 19 -- rms. |
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2635 ;;; ;; Deal with dired |
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2636 ;;; (and (boundp 'dired-local-variables-file) |
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2637 ;;; (stringp dired-local-variables-file) |
5f42c7680da7
(ange-ftp-add-vms-host, ange-ftp-add-dl-dir, ange-ftp-add-mts-host):
Richard M. Stallman <rms@gnu.org>
parents:
1454
diff
changeset
|
2638 ;;; (string-equal dired-local-variables-file efile)) |
1106 | 2639 ;; No dots in dir names in vms. |
2640 (and (eq host-type 'vms) | |
2641 (string-match "\\." efile)) | |
2642 ;; No subdirs in mts of cms. | |
2643 (and (memq host-type '(mts cms)) | |
2644 (not (string-equal "/" (nth 2 parsed))))))))) | |
2645 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2646 (defun ange-ftp-file-entry-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2647 "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
|
2648 (let* ((name (directory-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2649 (dir (file-name-directory name)) |
1106 | 2650 (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
|
2651 (file (ange-ftp-get-file-part name))) |
1106 | 2652 (if ent |
2653 (ange-ftp-hash-entry-exists-p file ent) | |
2654 (or (and (ange-ftp-allow-child-lookup dir file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2655 (setq ent (ange-ftp-get-files name t)) |
1106 | 2656 ;; Try a child lookup. i.e. try to list file as a |
2657 ;; subdirectory of dir. This is a good idea because | |
2658 ;; we may not have read permission for file's parent. Also, | |
2659 ;; people tend to work down directory trees anyway. We use | |
2660 ;; no-error ;; because if file does not exist as a subdir., | |
2661 ;; then dumb hosts will give an ftp error. Smart unix hosts | |
2662 ;; will simply send back the ls | |
2663 ;; error message. | |
2664 (ange-ftp-get-hash-entry "." ent)) | |
2665 ;; Child lookup failed. Try the parent. If this bombs, | |
2666 ;; we are at wits end -- signal an error. | |
2667 ;; Problem: If this signals an error, the error message | |
2668 ;; may not have a lot to do with what went wrong. | |
2669 (ange-ftp-hash-entry-exists-p file | |
2670 (ange-ftp-get-files dir)))))) | |
2671 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2672 (defun ange-ftp-get-file-entry (name) |
1233 | 2673 "Given NAME, return the given file entry. |
2674 The entry will be either t for a directory, nil for a normal file, | |
2675 or a string for a symlink. If the file isn't in the hashtable, | |
2676 this also returns nil." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2677 (let* ((name (directory-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2678 (dir (file-name-directory name)) |
1106 | 2679 (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
|
2680 (file (ange-ftp-get-file-part name))) |
1106 | 2681 (if ent |
2682 (ange-ftp-get-hash-entry file ent) | |
2683 (or (and (ange-ftp-allow-child-lookup dir file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2684 (setq ent (ange-ftp-get-files name t)) |
1106 | 2685 (ange-ftp-get-hash-entry "." ent)) |
2686 ;; i.e. it's a directory by child lookup | |
2687 (ange-ftp-get-hash-entry file | |
2688 (ange-ftp-get-files dir)))))) | |
2689 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2690 (defun ange-ftp-internal-delete-file-entry (name &optional dir-p) |
1106 | 2691 (if dir-p |
2692 (progn | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2693 (setq name (file-name-as-directory name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2694 (ange-ftp-del-hash-entry name ange-ftp-files-hashtable) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2695 (setq name (directory-file-name name)))) |
1106 | 2696 ;; Note that file-name-as-directory followed by directory-file-name |
2697 ;; serves to canonicalize directory file names to their unix form. | |
2698 ;; i.e. in VMS, FOO.DIR -> FOO/ -> FOO | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2699 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) |
1106 | 2700 ange-ftp-files-hashtable))) |
2701 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2702 (ange-ftp-del-hash-entry (ange-ftp-get-file-part name) |
1106 | 2703 files)))) |
2704 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2705 (defun ange-ftp-internal-add-file-entry (name &optional dir-p) |
1106 | 2706 (and dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2707 (setq name (directory-file-name name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2708 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) |
1106 | 2709 ange-ftp-files-hashtable))) |
2710 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2711 (ange-ftp-put-hash-entry (ange-ftp-get-file-part name) |
1106 | 2712 dir-p |
2713 files)))) | |
2714 | |
2715 (defun ange-ftp-wipe-file-entries (host user) | |
7042 | 2716 "Get rid of entry for HOST, USER pair from file entry information hashtable." |
1106 | 2717 (let ((new-tbl (ange-ftp-make-hashtable (length ange-ftp-files-hashtable)))) |
2718 (ange-ftp-map-hashtable | |
2719 (function | |
2720 (lambda (key val) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2721 (let ((parsed (ange-ftp-ftp-name key))) |
1106 | 2722 (if parsed |
2723 (let ((h (nth 0 parsed)) | |
2724 (u (nth 1 parsed))) | |
2725 (or (and (equal host h) (equal user u)) | |
2726 (ange-ftp-put-hash-entry key val new-tbl))))))) | |
2727 ange-ftp-files-hashtable) | |
2728 (setq ange-ftp-files-hashtable new-tbl))) | |
2729 | |
2730 ;;;; ------------------------------------------------------------ | |
2731 ;;;; File transfer mode support. | |
2732 ;;;; ------------------------------------------------------------ | |
2733 | |
2734 (defun ange-ftp-set-binary-mode (host user) | |
2735 "Tell the ftp process for the given HOST & USER to switch to binary mode." | |
2736 (let ((result (ange-ftp-send-cmd host user '(type "binary")))) | |
2737 (if (not (car result)) | |
2738 (ange-ftp-error host user (concat "BINARY failed: " (cdr result))) | |
2739 (save-excursion | |
2740 (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
|
2741 (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
|
2742 (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
|
2743 (ash ange-ftp-binary-hash-mark-size -4))))))) |
1106 | 2744 |
2745 (defun ange-ftp-set-ascii-mode (host user) | |
2746 "Tell the ftp process for the given HOST & USER to switch to ascii mode." | |
2747 (let ((result (ange-ftp-send-cmd host user '(type "ascii")))) | |
2748 (if (not (car result)) | |
2749 (ange-ftp-error host user (concat "ASCII failed: " (cdr result))) | |
2750 (save-excursion | |
2751 (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
|
2752 (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
|
2753 (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
|
2754 (ash ange-ftp-ascii-hash-mark-size -4))))))) |
1106 | 2755 |
2756 (defun ange-ftp-cd (host user dir) | |
2757 (let ((result (ange-ftp-send-cmd host user (list 'cd dir) "Doing CD"))) | |
2758 (or (car result) | |
2759 (ange-ftp-error host user (concat "CD failed: " (cdr result)))))) | |
2760 | |
2761 (defun ange-ftp-get-pwd (host user) | |
2762 "Attempts to get the current working directory for the given HOST/USER pair. | |
2763 Returns \( DIR . LINE \) where DIR is either the directory or NIL if not found, | |
2764 and LINE is the relevant success or fail line from the FTP-client." | |
2765 (let* ((result (ange-ftp-send-cmd host user '(pwd) "Getting PWD")) | |
2766 (line (cdr result)) | |
2767 dir) | |
2768 (if (car result) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2769 (save-match-data |
1106 | 2770 (and (or (string-match "\"\\([^\"]*\\)\"" line) |
2771 (string-match " \\([^ ]+\\) " line)) ; stone-age VMS servers! | |
2772 (setq dir (substring line | |
2773 (match-beginning 1) | |
2774 (match-end 1)))))) | |
2775 (cons dir line))) | |
2776 | |
2777 ;;; ------------------------------------------------------------ | |
2778 ;;; expand-file-name and friends...which currently don't work | |
2779 ;;; ------------------------------------------------------------ | |
2780 | |
2781 (defun ange-ftp-expand-dir (host user dir) | |
7042 | 2782 "Return the result of doing a PWD in the current FTP session. |
2783 Use the connection to machine HOST | |
1106 | 2784 logged in as user USER and cd'd to directory DIR." |
2785 (let* ((host-type (ange-ftp-host-type host user)) | |
2786 ;; It is more efficient to call ange-ftp-host-type | |
2787 ;; before binding res, because ange-ftp-host-type sometimes | |
2788 ;; adds to the info in the expand-dir-hashtable. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2789 (fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2790 (cdr (assq host-type ange-ftp-fix-name-func-alist))) |
1106 | 2791 (key (concat host "/" user "/" dir)) |
2792 (res (ange-ftp-get-hash-entry key ange-ftp-expand-dir-hashtable))) | |
2793 (or res | |
2794 (progn | |
2795 (or | |
2796 (string-equal user "anonymous") | |
2797 (string-equal user "ftp") | |
2798 (not (eq host-type 'unix)) | |
2799 (let* ((ange-ftp-good-msgs (concat ange-ftp-expand-dir-regexp | |
2800 "\\|" | |
2801 ange-ftp-good-msgs)) | |
2802 (result (ange-ftp-send-cmd host user | |
2803 (list 'get dir "/dev/null") | |
2804 (format "expanding %s" dir))) | |
2805 (line (cdr result))) | |
2806 (setq res | |
2807 (if (string-match ange-ftp-expand-dir-regexp line) | |
2808 (substring line | |
2809 (match-beginning 1) | |
2810 (match-end 1)))))) | |
2811 (or res | |
2812 (if (string-equal dir "~") | |
2813 (setq res (car (ange-ftp-get-pwd host user))) | |
2814 (let ((home (ange-ftp-expand-dir host user "~"))) | |
2815 (unwind-protect | |
2816 (and (ange-ftp-cd host user dir) | |
2817 (setq res (car (ange-ftp-get-pwd host user)))) | |
2818 (ange-ftp-cd host user home))))) | |
2819 (if res | |
2820 (let ((ange-ftp-this-user user) | |
2821 (ange-ftp-this-host host)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2822 (if fix-name-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2823 (setq res (funcall fix-name-func res 'reverse))) |
1106 | 2824 (ange-ftp-put-hash-entry |
2825 key res ange-ftp-expand-dir-hashtable))) | |
2826 res)))) | |
2827 | |
2828 (defun ange-ftp-canonize-filename (n) | |
2829 "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
|
2830 (if (string-match "[^:]+//" n) ;don't upset Apollo users |
1106 | 2831 (setq n (substring n (1- (match-end 0))))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2832 (let ((parsed (ange-ftp-ftp-name n))) |
1106 | 2833 (if parsed |
2834 (let ((host (car parsed)) | |
2835 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2836 (name (nth 2 parsed))) |
1106 | 2837 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2838 ;; 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
|
2839 ;; replace the name component of the overall name. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2840 (cond ((string-match "^/" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2841 name) |
1106 | 2842 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2843 ;; Name starts with ~ or ~user. Resolve that part of the name |
1106 | 2844 ;; making it absolute then re-expand it. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2845 ((string-match "^~[^/]*" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2846 (let* ((tilda (substring name |
1106 | 2847 (match-beginning 0) |
2848 (match-end 0))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2849 (rest (substring name (match-end 0))) |
1106 | 2850 (dir (ange-ftp-expand-dir host user tilda))) |
2851 (if dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2852 (setq name (concat dir rest)) |
1106 | 2853 (error "User \"%s\" is not known" |
2854 (substring tilda 1))))) | |
2855 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2856 ;; relative name. Tack on homedir and re-expand. |
1106 | 2857 (t |
2858 (let ((dir (ange-ftp-expand-dir host user "~"))) | |
2859 (if dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2860 (setq name (concat |
1106 | 2861 (ange-ftp-real-file-name-as-directory dir) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2862 name)) |
1106 | 2863 (error "Unable to obtain CWD"))))) |
2864 | |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
2865 ;; 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
|
2866 (if (not (string-match "^//" name)) |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
2867 (progn |
7923
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2868 (setq name (ange-ftp-real-expand-file-name name)) |
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2869 |
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2870 (if (string-match "^//" name) |
457dc75d1d60
(ange-ftp-canonize-filename): Fix wrong var name.
Richard M. Stallman <rms@gnu.org>
parents:
7829
diff
changeset
|
2871 (setq name (substring name 1))))) |
1106 | 2872 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2873 ;; Now substitute the expanded name back into the overall filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2874 (ange-ftp-replace-name-component n name)) |
1106 | 2875 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2876 ;; non-ange-ftp name. Just expand normally. |
1106 | 2877 (if (eq (string-to-char n) ?/) |
2878 (ange-ftp-real-expand-file-name n) | |
2879 (ange-ftp-real-expand-file-name | |
2880 (ange-ftp-real-file-name-nondirectory n) | |
2881 (ange-ftp-real-file-name-directory n)))))) | |
2882 | |
2883 (defun ange-ftp-expand-file-name (name &optional default) | |
2884 "Documented as original." | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2885 (save-match-data |
1106 | 2886 (if (eq (string-to-char name) ?/) |
7829
5412b8112b6e
(ange-ftp-canonize-filename): Preserve // after colon.
Richard M. Stallman <rms@gnu.org>
parents:
7747
diff
changeset
|
2887 (while (cond ((string-match "[^:]+//" name) ;don't upset Apollo users |
1106 | 2888 (setq name (substring name (1- (match-end 0))))) |
2889 ((string-match "/~" name) | |
2890 (setq name (substring name (1- (match-end 0)))))))) | |
2891 (cond ((eq (string-to-char name) ?~) | |
2892 (ange-ftp-real-expand-file-name name)) | |
2893 ((eq (string-to-char name) ?/) | |
2894 (ange-ftp-canonize-filename name)) | |
2895 ((zerop (length name)) | |
2896 (ange-ftp-canonize-filename (or default default-directory))) | |
2897 ((ange-ftp-canonize-filename | |
2898 (concat (file-name-as-directory (or default default-directory)) | |
2899 name)))))) | |
2900 | |
2901 ;;; These are problems--they are currently not enabled. | |
2902 | |
2903 (defvar ange-ftp-file-name-as-directory-alist nil | |
7042 | 2904 "Association list of \( TYPE \. FUNC \) pairs. |
1106 | 2905 FUNC converts a filename to a directory name for the operating |
2906 system TYPE.") | |
2907 | |
2908 (defun ange-ftp-file-name-as-directory (name) | |
2909 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2910 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2911 (if parsed |
2912 (if (string-equal (nth 2 parsed) "") | |
2913 name | |
2914 (funcall (or (cdr (assq | |
2915 (ange-ftp-host-type (car parsed)) | |
2916 ange-ftp-file-name-as-directory-alist)) | |
2917 'ange-ftp-real-file-name-as-directory) | |
2918 name)) | |
2919 (ange-ftp-real-file-name-as-directory name)))) | |
2920 | |
2921 (defun ange-ftp-file-name-directory (name) | |
2922 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2923 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2924 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2925 (let ((filename (nth 2 parsed))) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2926 (if (save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2927 (string-match "^~[^/]*$" filename)) |
1106 | 2928 name |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2929 (ange-ftp-replace-name-component |
1106 | 2930 name |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2931 (ange-ftp-real-file-name-directory filename)))) |
1106 | 2932 (ange-ftp-real-file-name-directory name)))) |
2933 | |
2934 (defun ange-ftp-file-name-nondirectory (name) | |
2935 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2936 (let ((parsed (ange-ftp-ftp-name name))) |
1106 | 2937 (if parsed |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
2938 (let ((filename (nth 2 parsed))) |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
2939 (if (save-match-data |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
2940 (string-match "^~[^/]*$" filename)) |
1106 | 2941 "" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2942 (ange-ftp-real-file-name-nondirectory name))) |
1106 | 2943 (ange-ftp-real-file-name-nondirectory name)))) |
2944 | |
2945 (defun ange-ftp-directory-file-name (dir) | |
2946 "Documented as original." | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2947 (let ((parsed (ange-ftp-ftp-name dir))) |
1106 | 2948 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2949 (ange-ftp-replace-name-component |
1106 | 2950 dir |
2951 (ange-ftp-real-directory-file-name (nth 2 parsed))) | |
2952 (ange-ftp-real-directory-file-name dir)))) | |
2953 | |
2954 | |
2955 ;;; Hooks that handle Emacs primitives. | |
2956 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2957 ;; Returns non-nil if should transfer FILE in binary mode. |
1106 | 2958 (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
|
2959 (save-match-data |
1106 | 2960 (string-match ange-ftp-binary-file-name-regexp file))) |
2961 | |
2962 (defun ange-ftp-write-region (start end filename &optional append visit) | |
2963 (setq filename (expand-file-name filename)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2964 (let ((parsed (ange-ftp-ftp-name filename))) |
1106 | 2965 (if parsed |
2966 (let* ((host (nth 0 parsed)) | |
2967 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2968 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 2969 (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
|
2970 (binary (or (ange-ftp-binary-file filename) |
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
2971 (eq (ange-ftp-host-type host user) 'unix))) |
1106 | 2972 (cmd (if append 'append 'put)) |
2973 (abbr (ange-ftp-abbreviate-filename filename))) | |
2974 (unwind-protect | |
2975 (progn | |
14466
97e0e30a6eaa
(ange-ftp-default-user): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
2976 (let ((executing-kbd-macro t) |
1106 | 2977 (filename (buffer-file-name)) |
2978 (mod-p (buffer-modified-p))) | |
2979 (unwind-protect | |
2980 (ange-ftp-real-write-region start end temp nil visit) | |
2981 ;; cleanup forms | |
2982 (setq buffer-file-name filename) | |
2983 (set-buffer-modified-p mod-p))) | |
2984 (if binary | |
2985 (ange-ftp-set-binary-mode host user)) | |
2986 | |
2987 ;; tell the process filter what size the transfer will be. | |
2988 (let ((attr (file-attributes temp))) | |
2989 (if attr | |
2990 (ange-ftp-set-xfer-size host user (nth 7 attr)))) | |
2991 | |
2992 ;; put or append the file. | |
2993 (let ((result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
2994 (list cmd temp name) |
1106 | 2995 (format "Writing %s" abbr)))) |
2996 (or (car result) | |
2997 (signal 'ftp-error | |
2998 (list | |
2999 "Opening output file" | |
3000 (format "FTP Error: \"%s\"" (cdr result)) | |
3001 filename))))) | |
3002 (ange-ftp-del-tmp-name temp) | |
3003 (if binary | |
3004 (ange-ftp-set-ascii-mode host user))) | |
3005 (if (eq visit t) | |
3006 (progn | |
5350
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
3007 (set-visited-file-modtime '(0 0)) |
1106 | 3008 (ange-ftp-set-buffer-mode) |
3009 (setq buffer-file-name filename) | |
3010 (set-buffer-modified-p nil))) | |
3011 (ange-ftp-message "Wrote %s" abbr) | |
3012 (ange-ftp-add-file-entry filename)) | |
3013 (ange-ftp-real-write-region start end filename append visit)))) | |
3014 | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3015 (defun ange-ftp-insert-file-contents (filename &optional visit beg end replace) |
1106 | 3016 (barf-if-buffer-read-only) |
3017 (setq filename (expand-file-name filename)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3018 (let ((parsed (ange-ftp-ftp-name filename))) |
1106 | 3019 (if parsed |
3020 (progn | |
3021 (if visit | |
3022 (setq buffer-file-name filename)) | |
3023 (if (or (file-exists-p filename) | |
3024 (progn | |
3025 (setq ange-ftp-ls-cache-file nil) | |
3026 (ange-ftp-del-hash-entry (file-name-directory filename) | |
3027 ange-ftp-files-hashtable) | |
3028 (file-exists-p filename))) | |
3029 (let* ((host (nth 0 parsed)) | |
3030 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3031 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 3032 (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
|
3033 (binary (or (ange-ftp-binary-file filename) |
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3034 (eq (ange-ftp-host-type host user) 'unix))) |
1106 | 3035 (abbr (ange-ftp-abbreviate-filename filename)) |
3036 size) | |
3037 (unwind-protect | |
3038 (progn | |
3039 (if binary | |
3040 (ange-ftp-set-binary-mode host user)) | |
3041 (let ((result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3042 (list 'get name temp) |
1106 | 3043 (format "Retrieving %s" abbr)))) |
3044 (or (car result) | |
3045 (signal 'ftp-error | |
3046 (list | |
3047 "Opening input file" | |
3048 (format "FTP Error: \"%s\"" (cdr result)) | |
3049 filename)))) | |
3050 (if (or (ange-ftp-real-file-readable-p temp) | |
3051 (sleep-for ange-ftp-retry-time) | |
3052 ;; Wait for file to hopefully appear. | |
3053 (ange-ftp-real-file-readable-p temp)) | |
3054 (setq | |
3055 size | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3056 (nth 1 (ange-ftp-real-insert-file-contents |
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3057 temp visit beg end replace))) |
1106 | 3058 (signal 'ftp-error |
3059 (list | |
3060 "Opening input file:" | |
3061 (format | |
3062 "FTP Error: %s not arrived or readable" | |
3063 filename))))) | |
3064 (if binary | |
3065 (ange-ftp-set-ascii-mode host user)) | |
3066 (ange-ftp-del-tmp-name temp)) | |
3067 (if visit | |
5350
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
3068 (progn |
722bd9d45ab2
(ange-ftp-write-region): Call set-visited-file-modtime.
Richard M. Stallman <rms@gnu.org>
parents:
5265
diff
changeset
|
3069 (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
|
3070 (setq buffer-file-name filename))) |
1106 | 3071 (list filename size)) |
3072 (signal 'file-error | |
3073 (list | |
3074 "Opening input file" | |
3075 filename)))) | |
5984
ec9477c8db1d
(ange-ftp-insert-file-contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5840
diff
changeset
|
3076 (ange-ftp-real-insert-file-contents filename visit beg end replace)))) |
1106 | 3077 |
3078 (defun ange-ftp-expand-symlink (file dir) | |
3079 (if (file-name-absolute-p file) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3080 (ange-ftp-replace-name-component dir file) |
1106 | 3081 (expand-file-name file dir))) |
3082 | |
3083 (defun ange-ftp-file-symlink-p (file) | |
3084 ;; call ange-ftp-expand-file-name rather than the normal | |
3085 ;; expand-file-name to stop loops when using a package that | |
3086 ;; redefines both file-symlink-p and expand-file-name. | |
3087 (setq file (ange-ftp-expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3088 (if (ange-ftp-ftp-name file) |
1106 | 3089 (let ((file-ent |
3090 (ange-ftp-get-hash-entry | |
3091 (ange-ftp-get-file-part file) | |
3092 (ange-ftp-get-files (file-name-directory file))))) | |
3093 (if (stringp file-ent) | |
3094 (if (file-name-absolute-p file-ent) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3095 (ange-ftp-replace-name-component |
1106 | 3096 (file-name-directory file) file-ent) |
3097 file-ent))) | |
3098 (ange-ftp-real-file-symlink-p file))) | |
3099 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3100 (defun ange-ftp-file-exists-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3101 (setq name (expand-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3102 (if (ange-ftp-ftp-name name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3103 (if (ange-ftp-file-entry-p name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3104 (let ((file-ent (ange-ftp-get-file-entry name))) |
1106 | 3105 (if (stringp file-ent) |
3106 (file-exists-p | |
3107 (ange-ftp-expand-symlink file-ent | |
3108 (file-name-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3109 (directory-file-name name)))) |
1106 | 3110 t))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3111 (ange-ftp-real-file-exists-p name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3112 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3113 (defun ange-ftp-file-directory-p (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3114 (setq name (expand-file-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3115 (if (ange-ftp-ftp-name name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3116 ;; We do a file-name-as-directory on name here because some |
1106 | 3117 ;; machines (VMS) use a .DIR to indicate the filename associated |
3118 ;; with a directory. This needs to be canonicalized. | |
3119 (let ((file-ent (ange-ftp-get-file-entry | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3120 (ange-ftp-file-name-as-directory name)))) |
1106 | 3121 (if (stringp file-ent) |
3122 (file-directory-p | |
3123 (ange-ftp-expand-symlink file-ent | |
3124 (file-name-directory | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3125 (directory-file-name name)))) |
1106 | 3126 file-ent)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3127 (ange-ftp-real-file-directory-p name))) |
1106 | 3128 |
3129 (defun ange-ftp-directory-files (directory &optional full match | |
3130 &rest v19-args) | |
3131 (setq directory (expand-file-name directory)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3132 (if (ange-ftp-ftp-name directory) |
1106 | 3133 (progn |
3134 (ange-ftp-barf-if-not-directory directory) | |
3135 (let ((tail (ange-ftp-hash-table-keys | |
3136 (ange-ftp-get-files directory))) | |
3137 files f) | |
3138 (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
|
3139 (save-match-data |
1106 | 3140 (while tail |
3141 (setq f (car tail) | |
3142 tail (cdr tail)) | |
3143 (if (or (not match) (string-match match f)) | |
3144 (setq files | |
3145 (cons (if full (concat directory f) f) files))))) | |
3146 (nreverse files))) | |
3147 (apply 'ange-ftp-real-directory-files directory full match v19-args))) | |
3148 | |
3149 (defun ange-ftp-file-attributes (file) | |
3150 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3151 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3152 (if parsed |
3153 (let ((part (ange-ftp-get-file-part file)) | |
3154 (files (ange-ftp-get-files (file-name-directory file)))) | |
3155 (if (ange-ftp-hash-entry-exists-p part files) | |
3156 (let ((host (nth 0 parsed)) | |
3157 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3158 (name (nth 2 parsed)) |
1106 | 3159 (dirp (ange-ftp-get-hash-entry part files))) |
3160 (list (if (and (stringp dirp) (file-name-absolute-p dirp)) | |
3161 (ange-ftp-expand-symlink dirp | |
3162 (file-name-directory file)) | |
3163 dirp) ;0 file type | |
3164 -1 ;1 link count | |
3165 -1 ;2 uid | |
3166 -1 ;3 gid | |
3167 '(0 0) ;4 atime | |
3168 '(0 0) ;5 mtime | |
3169 '(0 0) ;6 ctime | |
3170 -1 ;7 size | |
3171 (concat (if (stringp dirp) "l" (if dirp "d" "-")) | |
3172 "?????????") ;8 mode | |
3173 nil ;9 gid weird | |
3174 ;; Hack to give remote files a unique "inode number". | |
3175 ;; It's actually the sum of the characters in its name. | |
3176 (apply '+ (nconc (mapcar 'identity host) | |
3177 (mapcar 'identity user) | |
3178 (mapcar 'identity | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3179 (directory-file-name name)))) |
1106 | 3180 -1 ;11 device number [v19 only] |
3181 )))) | |
3182 (ange-ftp-real-file-attributes file)))) | |
3183 | |
3184 (defun ange-ftp-file-writable-p (file) | |
3185 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3186 (if (ange-ftp-ftp-name file) |
1106 | 3187 (or (file-exists-p file) ;guess here for speed |
3188 (file-directory-p (file-name-directory file))) | |
3189 (ange-ftp-real-file-writable-p file))) | |
3190 | |
3191 (defun ange-ftp-file-readable-p (file) | |
3192 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3193 (if (ange-ftp-ftp-name file) |
1106 | 3194 (file-exists-p file) |
3195 (ange-ftp-real-file-readable-p file))) | |
3196 | |
4674
8db3c141cb62
(ange-ftp-file-executable-p): New function, handles file-executable-p.
Roland McGrath <roland@gnu.org>
parents:
4498
diff
changeset
|
3197 (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
|
3198 (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
|
3199 (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
|
3200 (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
|
3201 (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
|
3202 |
1106 | 3203 (defun ange-ftp-delete-file (file) |
3204 (interactive "fDelete file: ") | |
3205 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3206 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 3207 (if parsed |
3208 (let* ((host (nth 0 parsed)) | |
3209 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3210 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 3211 (abbr (ange-ftp-abbreviate-filename file)) |
3212 (result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3213 (list 'delete name) |
1106 | 3214 (format "Deleting %s" abbr)))) |
3215 (or (car result) | |
3216 (signal 'ftp-error | |
3217 (list | |
3218 "Removing old name" | |
3219 (format "FTP Error: \"%s\"" (cdr result)) | |
3220 file))) | |
3221 (ange-ftp-delete-file-entry file)) | |
3222 (ange-ftp-real-delete-file file)))) | |
3223 | |
3224 (defun ange-ftp-verify-visited-file-modtime (buf) | |
3225 (let ((name (buffer-file-name buf))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3226 (if (and (stringp name) (ange-ftp-ftp-name name)) |
1106 | 3227 t |
3228 (ange-ftp-real-verify-visited-file-modtime buf)))) | |
3229 | |
3230 ;;;; ------------------------------------------------------------ | |
3231 ;;;; File copying support... totally re-written 6/24/92. | |
3232 ;;;; ------------------------------------------------------------ | |
3233 | |
3234 (defun ange-ftp-barf-or-query-if-file-exists (absname querystring interactive) | |
3235 (if (file-exists-p absname) | |
3236 (if (not interactive) | |
3237 (signal 'file-already-exists (list absname)) | |
3238 (if (not (yes-or-no-p (format "File %s already exists; %s anyway? " | |
3239 absname querystring))) | |
3240 (signal 'file-already-exists (list absname)))))) | |
3241 | |
3242 ;; async local copy commented out for now since I don't seem to get | |
3243 ;; the process sentinel called for some processes. | |
3244 ;; | |
3245 ;; (defun ange-ftp-copy-file-locally (filename newname ok-if-already-exists | |
3246 ;; keep-date cont) | |
3247 ;; "Kludge to copy a local file and call a continuation when the copy | |
3248 ;; finishes." | |
3249 ;; ;; check to see if we can overwrite | |
3250 ;; (if (or (not ok-if-already-exists) | |
3251 ;; (numberp ok-if-already-exists)) | |
3252 ;; (ange-ftp-barf-or-query-if-file-exists newname "copy to it" | |
3253 ;; (numberp ok-if-already-exists))) | |
3254 ;; (let ((proc (start-process " *copy*" | |
3255 ;; (generate-new-buffer "*copy*") | |
3256 ;; "cp" | |
3257 ;; filename | |
3258 ;; newname)) | |
3259 ;; res) | |
3260 ;; (set-process-sentinel proc (function ange-ftp-copy-file-locally-sentinel)) | |
3261 ;; (process-kill-without-query proc) | |
3262 ;; (save-excursion | |
3263 ;; (set-buffer (process-buffer proc)) | |
3264 ;; (make-variable-buffer-local 'copy-cont) | |
3265 ;; (setq copy-cont cont)))) | |
3266 ;; | |
3267 ;; (defun ange-ftp-copy-file-locally-sentinel (proc status) | |
3268 ;; (save-excursion | |
3269 ;; (set-buffer (process-buffer proc)) | |
3270 ;; (let ((cont copy-cont) | |
3271 ;; (result (buffer-string))) | |
3272 ;; (unwind-protect | |
3273 ;; (if (and (string-equal status "finished\n") | |
3274 ;; (zerop (length result))) | |
3275 ;; (ange-ftp-call-cont cont t nil) | |
3276 ;; (ange-ftp-call-cont cont | |
3277 ;; nil | |
3278 ;; (if (zerop (length result)) | |
3279 ;; (substring status 0 -1) | |
3280 ;; (substring result 0 -1)))) | |
3281 ;; (kill-buffer (current-buffer)))))) | |
3282 | |
3283 ;; 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
|
3284 ;; asynchronously if asked nicely. |
1106 | 3285 (defun ange-ftp-copy-file-internal (filename newname ok-if-already-exists |
3286 keep-date &optional msg cont nowait) | |
3287 (setq filename (expand-file-name filename) | |
3288 newname (expand-file-name newname)) | |
3289 | |
3290 ;; canonicalize newname if a directory. | |
3291 (if (file-directory-p newname) | |
3292 (setq newname (expand-file-name (file-name-nondirectory filename) newname))) | |
3293 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3294 (let ((f-parsed (ange-ftp-ftp-name filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3295 (t-parsed (ange-ftp-ftp-name newname))) |
1106 | 3296 |
3297 ;; local file to local file copy? | |
3298 (if (and (not f-parsed) (not t-parsed)) | |
3299 (progn | |
3300 (ange-ftp-real-copy-file filename newname ok-if-already-exists | |
3301 keep-date) | |
3302 (if cont | |
3303 (ange-ftp-call-cont cont t "Copied locally"))) | |
3304 ;; one or both files are remote. | |
3305 (let* ((f-host (and f-parsed (nth 0 f-parsed))) | |
3306 (f-user (and f-parsed (nth 1 f-parsed))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3307 (f-name (and f-parsed (ange-ftp-quote-string (nth 2 f-parsed)))) |
1106 | 3308 (f-abbr (ange-ftp-abbreviate-filename filename)) |
3309 (t-host (and t-parsed (nth 0 t-parsed))) | |
3310 (t-user (and t-parsed (nth 1 t-parsed))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3311 (t-name (and t-parsed (ange-ftp-quote-string (nth 2 t-parsed)))) |
1106 | 3312 (t-abbr (ange-ftp-abbreviate-filename newname filename)) |
3313 (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
|
3314 (ange-ftp-binary-file newname) |
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3315 (and (eq (ange-ftp-host-type f-host f-user) 'unix) |
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3316 (eq (ange-ftp-host-type t-host t-user) 'unix)))) |
1106 | 3317 temp1 |
3318 temp2) | |
3319 | |
3320 ;; check to see if we can overwrite | |
3321 (if (or (not ok-if-already-exists) | |
3322 (numberp ok-if-already-exists)) | |
3323 (ange-ftp-barf-or-query-if-file-exists newname "copy to it" | |
3324 (numberp ok-if-already-exists))) | |
3325 | |
3326 ;; do the copying. | |
3327 (if f-parsed | |
3328 | |
3329 ;; filename was remote. | |
3330 (progn | |
3331 (if (or (ange-ftp-use-gateway-p f-host) | |
3332 t-parsed) | |
3333 ;; have to use intermediate file if we are getting via | |
3334 ;; gateway machine or we are doing a remote to remote copy. | |
3335 (setq temp1 (ange-ftp-make-tmp-name f-host))) | |
3336 | |
3337 (if binary | |
3338 (ange-ftp-set-binary-mode f-host f-user)) | |
3339 | |
3340 (ange-ftp-send-cmd | |
3341 f-host | |
3342 f-user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3343 (list 'get f-name (or temp1 newname)) |
1106 | 3344 (or msg |
3345 (if (and temp1 t-parsed) | |
3346 (format "Getting %s" f-abbr) | |
3347 (format "Copying %s to %s" f-abbr t-abbr))) | |
3348 (list (function ange-ftp-cf1) | |
3349 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3350 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3351 t-parsed t-host t-user t-name t-abbr |
1106 | 3352 temp1 temp2 cont nowait) |
3353 nowait)) | |
3354 | |
3355 ;; filename wasn't remote. newname must be remote. call the | |
3356 ;; function which does the remainder of the copying work. | |
3357 (ange-ftp-cf1 t nil | |
3358 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3359 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3360 t-parsed t-host t-user t-name t-abbr |
1106 | 3361 nil nil cont nowait)))))) |
3362 | |
3363 ;; next part of copying routine. | |
3364 (defun ange-ftp-cf1 (result line | |
3365 filename newname binary msg | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3366 f-parsed f-host f-user f-name f-abbr |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3367 t-parsed t-host t-user t-name t-abbr |
1106 | 3368 temp1 temp2 cont nowait) |
3369 (if line | |
3370 ;; filename must have been remote, and we must have just done a GET. | |
3371 (unwind-protect | |
3372 (or result | |
3373 ;; GET failed for some reason. Clean up and get out. | |
3374 (progn | |
3375 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3376 (or cont | |
3377 (signal 'ftp-error (list "Opening input file" | |
3378 (format "FTP Error: \"%s\"" line) | |
3379 filename))))) | |
3380 ;; cleanup | |
3381 (if binary | |
3382 (ange-ftp-set-ascii-mode f-host f-user)))) | |
3383 | |
3384 (if result | |
3385 ;; We now have to copy either temp1 or filename to newname. | |
3386 (if t-parsed | |
3387 | |
3388 ;; newname was remote. | |
3389 (progn | |
3390 (if (ange-ftp-use-gateway-p t-host) | |
3391 (setq temp2 (ange-ftp-make-tmp-name t-host))) | |
3392 | |
3393 ;; make sure data is moved into the right place for the | |
3394 ;; outgoing transfer. gateway temporary files complicate | |
3395 ;; things nicely. | |
3396 (if temp1 | |
3397 (if temp2 | |
3398 (if (string-equal temp1 temp2) | |
3399 (setq temp1 nil) | |
3400 (ange-ftp-real-copy-file temp1 temp2 t)) | |
3401 (setq temp2 temp1 temp1 nil)) | |
3402 (if temp2 | |
3403 (ange-ftp-real-copy-file filename temp2 t))) | |
3404 | |
3405 (if binary | |
3406 (ange-ftp-set-binary-mode t-host t-user)) | |
3407 | |
3408 ;; tell the process filter what size the file is. | |
3409 (let ((attr (file-attributes (or temp2 filename)))) | |
3410 (if attr | |
3411 (ange-ftp-set-xfer-size t-host t-user (nth 7 attr)))) | |
3412 | |
3413 (ange-ftp-send-cmd | |
3414 t-host | |
3415 t-user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3416 (list 'put (or temp2 filename) t-name) |
1106 | 3417 (or msg |
3418 (if (and temp2 f-parsed) | |
3419 (format "Putting %s" newname) | |
3420 (format "Copying %s to %s" f-abbr t-abbr))) | |
3421 (list (function ange-ftp-cf2) | |
3422 newname t-host t-user binary temp1 temp2 cont) | |
3423 nowait)) | |
3424 | |
3425 ;; newname wasn't remote. | |
3426 (ange-ftp-cf2 t nil newname t-host t-user binary temp1 temp2 cont)) | |
3427 | |
3428 ;; first copy failed, tell caller | |
3429 (ange-ftp-call-cont cont result line))) | |
3430 | |
3431 ;; last part of copying routine. | |
3432 (defun ange-ftp-cf2 (result line newname t-host t-user binary temp1 temp2 cont) | |
3433 (unwind-protect | |
3434 (if line | |
3435 ;; result from doing a local to remote copy. | |
3436 (unwind-protect | |
3437 (progn | |
3438 (or result | |
3439 (or cont | |
3440 (signal 'ftp-error | |
3441 (list "Opening output file" | |
3442 (format "FTP Error: \"%s\"" line) | |
3443 newname)))) | |
3444 | |
3445 (ange-ftp-add-file-entry newname)) | |
3446 | |
3447 ;; cleanup. | |
3448 (if binary | |
3449 (ange-ftp-set-ascii-mode t-host t-user))) | |
3450 | |
3451 ;; newname was local. | |
3452 (if temp1 | |
3453 (ange-ftp-real-copy-file temp1 newname t))) | |
3454 | |
3455 ;; clean up | |
3456 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3457 (and temp2 (ange-ftp-del-tmp-name temp2)) | |
3458 (ange-ftp-call-cont cont result line))) | |
3459 | |
3460 (defun ange-ftp-copy-file (filename newname &optional ok-if-already-exists | |
3461 keep-date) | |
3462 (interactive "fCopy file: \nFCopy %s to file: \np") | |
3463 (ange-ftp-copy-file-internal filename | |
3464 newname | |
3465 ok-if-already-exists | |
3466 keep-date | |
3467 nil | |
3468 nil | |
3469 (interactive-p))) | |
3470 | |
3471 ;;;; ------------------------------------------------------------ | |
3472 ;;;; File renaming support. | |
3473 ;;;; ------------------------------------------------------------ | |
3474 | |
10748
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3475 (defun ange-ftp-rename-remote-to-remote (filename newname f-parsed t-parsed) |
1106 | 3476 "Rename remote file FILE to remote file NEWNAME." |
3477 (let ((f-host (nth 0 f-parsed)) | |
3478 (f-user (nth 1 f-parsed)) | |
3479 (t-host (nth 0 t-parsed)) | |
3480 (t-user (nth 1 t-parsed))) | |
3481 (if (and (string-equal f-host t-host) | |
3482 (string-equal f-user t-user)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3483 (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
|
3484 (t-name (ange-ftp-quote-string (nth 2 t-parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3485 (cmd (list 'rename f-name t-name)) |
1106 | 3486 (fabbr (ange-ftp-abbreviate-filename filename)) |
3487 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3488 (result (ange-ftp-send-cmd f-host f-user cmd | |
3489 (format "Renaming %s to %s" | |
3490 fabbr | |
3491 nabbr)))) | |
3492 (or (car result) | |
3493 (signal 'ftp-error | |
3494 (list | |
3495 "Renaming" | |
3496 (format "FTP Error: \"%s\"" (cdr result)) | |
3497 filename | |
3498 newname))) | |
3499 (ange-ftp-add-file-entry newname) | |
3500 (ange-ftp-delete-file-entry filename)) | |
3501 (ange-ftp-copy-file-internal filename newname t nil) | |
3502 (delete-file filename)))) | |
3503 | |
3504 (defun ange-ftp-rename-local-to-remote (filename newname) | |
1233 | 3505 "Rename local FILENAME to remote file NEWNAME." |
1106 | 3506 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3507 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3508 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3509 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3510 (let (ange-ftp-process-verbose) | |
3511 (delete-file filename)))) | |
3512 | |
3513 (defun ange-ftp-rename-remote-to-local (filename newname) | |
1233 | 3514 "Rename remote file FILENAME to local file NEWNAME." |
1106 | 3515 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3516 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3517 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3518 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3519 (let (ange-ftp-process-verbose) | |
3520 (delete-file filename)))) | |
3521 | |
3522 (defun ange-ftp-rename-file (filename newname &optional ok-if-already-exists) | |
3523 (interactive "fRename file: \nFRename %s to file: \np") | |
3524 (setq filename (expand-file-name filename)) | |
3525 (setq newname (expand-file-name newname)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3526 (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
|
3527 (t-parsed (ange-ftp-ftp-name newname))) |
1106 | 3528 (if (and (or f-parsed t-parsed) |
3529 (or (not ok-if-already-exists) | |
3530 (numberp ok-if-already-exists))) | |
3531 (ange-ftp-barf-or-query-if-file-exists | |
3532 newname | |
3533 "rename to it" | |
3534 (numberp ok-if-already-exists))) | |
3535 (if f-parsed | |
3536 (if t-parsed | |
3537 (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
|
3538 t-parsed) |
1106 | 3539 (ange-ftp-rename-remote-to-local filename newname)) |
3540 (if t-parsed | |
3541 (ange-ftp-rename-local-to-remote filename newname) | |
3542 (ange-ftp-real-rename-file filename newname ok-if-already-exists))))) | |
3543 | |
3544 ;;;; ------------------------------------------------------------ | |
3545 ;;;; File name completion support. | |
3546 ;;;; ------------------------------------------------------------ | |
3547 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3548 ;; 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
|
3549 ;; Note that `ange-ftp-this-dir' is used as a free variable. |
1106 | 3550 (defun ange-ftp-file-entry-active-p (sym) |
3551 (let ((val (get sym 'val))) | |
3552 (or (not (stringp val)) | |
3553 (file-exists-p (ange-ftp-expand-symlink val ange-ftp-this-dir))))) | |
3554 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3555 ;; 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
|
3556 ;; 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
|
3557 ;; by completion-ignored-extensions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3558 ;; 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
|
3559 ;; are used as free variables. |
1106 | 3560 (defun ange-ftp-file-entry-not-ignored-p (sym) |
3561 (let ((val (get sym 'val)) | |
3562 (symname (symbol-name sym))) | |
3563 (if (stringp val) | |
3564 (let ((file (ange-ftp-expand-symlink val ange-ftp-this-dir))) | |
3565 (or (file-directory-p file) | |
3566 (and (file-exists-p file) | |
3567 (not (string-match ange-ftp-completion-ignored-pattern | |
3568 symname))))) | |
3569 (or val ; is a directory name | |
3570 (not (string-match ange-ftp-completion-ignored-pattern symname)))))) | |
3571 | |
3572 (defun ange-ftp-file-name-all-completions (file dir) | |
3573 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3574 (if (ange-ftp-ftp-name ange-ftp-this-dir) |
1106 | 3575 (progn |
3576 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3577 (setq ange-ftp-this-dir | |
3578 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) | |
3579 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3580 (completions | |
3581 (all-completions file tbl | |
3582 (function ange-ftp-file-entry-active-p)))) | |
3583 | |
3584 ;; see whether each matching file is a directory or not... | |
3585 (mapcar | |
3586 (function | |
3587 (lambda (file) | |
3588 (let ((ent (ange-ftp-get-hash-entry file tbl))) | |
3589 (if (and ent | |
3590 (or (not (stringp ent)) | |
3591 (file-directory-p | |
3592 (ange-ftp-expand-symlink ent | |
3593 ange-ftp-this-dir)))) | |
3594 (concat file "/") | |
3595 file)))) | |
3596 completions))) | |
3597 | |
3598 (if (string-equal "/" ange-ftp-this-dir) | |
3599 (nconc (all-completions file (ange-ftp-generate-root-prefixes)) | |
3600 (ange-ftp-real-file-name-all-completions file | |
3601 ange-ftp-this-dir)) | |
3602 (ange-ftp-real-file-name-all-completions file ange-ftp-this-dir))))) | |
3603 | |
3604 (defun ange-ftp-file-name-completion (file dir) | |
3605 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3606 (if (ange-ftp-ftp-name ange-ftp-this-dir) |
1106 | 3607 (progn |
3608 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3609 (if (equal file "") | |
3610 "" | |
3611 (setq ange-ftp-this-dir | |
3612 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) ;real? | |
3613 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3614 (ange-ftp-completion-ignored-pattern | |
3615 (mapconcat (function | |
3616 (lambda (s) (if (stringp s) | |
3617 (concat (regexp-quote s) "$") | |
3618 "/"))) ; / never in filename | |
3619 completion-ignored-extensions | |
3620 "\\|"))) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
3621 (save-match-data |
1106 | 3622 (or (ange-ftp-file-name-completion-1 |
3623 file tbl ange-ftp-this-dir | |
3624 (function ange-ftp-file-entry-not-ignored-p)) | |
3625 (ange-ftp-file-name-completion-1 | |
3626 file tbl ange-ftp-this-dir | |
3627 (function ange-ftp-file-entry-active-p))))))) | |
3628 | |
3629 (if (string-equal "/" ange-ftp-this-dir) | |
3630 (try-completion | |
3631 file | |
3632 (nconc (ange-ftp-generate-root-prefixes) | |
3633 (mapcar 'list | |
3634 (ange-ftp-real-file-name-all-completions file "/")))) | |
3635 (ange-ftp-real-file-name-completion file ange-ftp-this-dir))))) | |
3636 | |
3637 | |
3638 (defun ange-ftp-file-name-completion-1 (file tbl dir predicate) | |
3639 (let ((bestmatch (try-completion file tbl predicate))) | |
3640 (if bestmatch | |
3641 (if (eq bestmatch t) | |
3642 (if (file-directory-p (expand-file-name file dir)) | |
3643 (concat file "/") | |
3644 t) | |
3645 (if (and (eq (try-completion bestmatch tbl predicate) t) | |
3646 (file-directory-p | |
3647 (expand-file-name bestmatch dir))) | |
3648 (concat bestmatch "/") | |
3649 bestmatch))))) | |
3650 | |
3651 ;; Put these lines uncommmented in your .emacs if you want C-r to refresh | |
3652 ;; ange-ftp's cache whilst doing filename completion. | |
3653 ;; | |
3654 ;;(define-key minibuffer-local-completion-map "\C-r" 'ange-ftp-re-read-dir) | |
3655 ;;(define-key minibuffer-local-must-match-map "\C-r" 'ange-ftp-re-read-dir) | |
3656 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3657 ;; Force a re-read of the directory DIR. If DIR is omitted then it defaults |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3658 ;; to the directory part of the contents of the current buffer. |
1106 | 3659 (defun ange-ftp-re-read-dir (&optional dir) |
3660 (interactive) | |
3661 (if dir | |
3662 (setq dir (expand-file-name dir)) | |
3663 (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
|
3664 (if (ange-ftp-ftp-name dir) |
1106 | 3665 (progn |
3666 (setq ange-ftp-ls-cache-file nil) | |
3667 (ange-ftp-del-hash-entry dir ange-ftp-files-hashtable) | |
3668 (ange-ftp-get-files dir t)))) | |
3669 | |
3611
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3670 (defun ange-ftp-make-directory (dir &optional parents) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3671 (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
|
3672 (if parents |
2250b4880589
* ange-ftp.el (ange-ftp-make-directory): Take second optional
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
3673 (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
|
3674 (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
|
3675 (ange-ftp-make-directory parent parents)))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3676 (if (file-exists-p dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3677 (error "Cannot make directory %s: file already exists" dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3678 (let ((parsed (ange-ftp-ftp-name dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3679 (if parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3680 (let* ((host (nth 0 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3681 (user (nth 1 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3682 ;; Some ftp's on unix machines (at least on Suns) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3683 ;; insist that mkdir take a filename, and not a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3684 ;; 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
|
3685 ;; Non-unix machines will probably always insist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3686 ;; that mkdir takes a directory-name as an arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3687 ;; (as the ftp man page says it should). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3688 (name (ange-ftp-quote-string |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3689 (if (eq (ange-ftp-host-type host) 'unix) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3690 (ange-ftp-real-directory-file-name (nth 2 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3691 (ange-ftp-real-file-name-as-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3692 (nth 2 parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3693 (abbr (ange-ftp-abbreviate-filename dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3694 (result (ange-ftp-send-cmd host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3695 (list 'mkdir name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3696 (format "Making directory %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3697 abbr)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3698 (or (car result) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3699 (ange-ftp-error host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3700 (format "Could not make directory %s: %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3701 dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3702 (cdr result)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3703 (ange-ftp-add-file-entry dir t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3704 (ange-ftp-real-make-directory dir))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3705 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3706 (defun ange-ftp-delete-directory (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3707 (if (file-directory-p dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3708 (let ((parsed (ange-ftp-ftp-name dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3709 (if parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3710 (let* ((host (nth 0 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3711 (user (nth 1 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3712 ;; Some ftp's on unix machines (at least on Suns) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3713 ;; insist that rmdir take a filename, and not a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3714 ;; 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
|
3715 ;; Non-unix machines will probably always insist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3716 ;; that rmdir takes a directory-name as an arg |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3717 ;; (as the ftp man page says it should). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3718 (name (ange-ftp-quote-string |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3719 (if (eq (ange-ftp-host-type host) 'unix) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3720 (ange-ftp-real-directory-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3721 (nth 2 parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3722 (ange-ftp-real-file-name-as-directory |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3723 (nth 2 parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3724 (abbr (ange-ftp-abbreviate-filename dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3725 (result (ange-ftp-send-cmd host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3726 (list 'rmdir name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3727 (format "Removing directory %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3728 abbr)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3729 (or (car result) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3730 (ange-ftp-error host user |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3731 (format "Could not remove directory %s: %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3732 dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3733 (cdr result)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3734 (ange-ftp-delete-file-entry dir t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3735 (ange-ftp-real-delete-directory dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3736 (error "Not a directory: %s" dir))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3737 |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3738 ;; Make a local copy of FILE and return its name. |
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3739 |
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3740 (defun ange-ftp-file-local-copy (file) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3741 (let* ((fn1 (expand-file-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3742 (pa1 (ange-ftp-ftp-name fn1))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3743 (if pa1 |
10748
0bee4d7bc9a4
(ange-ftp-write-region, ange-ftp-insert-file-contents)
Richard M. Stallman <rms@gnu.org>
parents:
10451
diff
changeset
|
3744 (let ((tmp1 (ange-ftp-make-tmp-name (car pa1)))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3745 (ange-ftp-copy-file-internal fn1 tmp1 t nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3746 (format "Getting %s" fn1)) |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3747 tmp1)))) |
3532
09bff9415131
(ange-ftp-real-load): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3502
diff
changeset
|
3748 |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3749 (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
|
3750 (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
|
3751 (let ((tryfiles (if nosuffix |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3752 (list file) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3753 (list (concat file ".elc") (concat file ".el") file))) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3754 copy) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3755 (while (and tryfiles (not copy)) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3756 (condition-case error |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3757 (setq copy (ange-ftp-file-local-copy (car tryfiles))) |
13789
7ccb22bca972
(ange-ftp-load): Added missing form to `cdr' down
Karl Heuer <kwzh@gnu.org>
parents:
13594
diff
changeset
|
3758 (ftp-error nil)) |
7ccb22bca972
(ange-ftp-load): Added missing form to `cdr' down
Karl Heuer <kwzh@gnu.org>
parents:
13594
diff
changeset
|
3759 (setq tryfiles (cdr tryfiles))) |
5840
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3760 (if copy |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3761 (unwind-protect |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3762 (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
|
3763 (delete-file copy)) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3764 (or noerror |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3765 (signal 'file-error (list "Cannot open load file" file))))) |
e173b4b346e5
(ange-ftp-load): Honor the NOERROR and NOSUFFIX flags.
Karl Heuer <kwzh@gnu.org>
parents:
5480
diff
changeset
|
3766 (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
|
3767 |
1670
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3768 ;; 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
|
3769 (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
|
3770 (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
|
3771 |
174817d23858
* ange-ftp.el (ange-ftp-unhandled-file-name-directory): New
Jim Blandy <jimb@redhat.com>
parents:
1603
diff
changeset
|
3772 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3773 ;; Need the following functions for making filenames of compressed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3774 ;; 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
|
3775 ;; have two extensions. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3776 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3777 (defvar ange-ftp-make-compressed-filename-alist nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3778 "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
|
3779 Each element has the form (TYPE . FUNC). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3780 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
|
3781 of the form (COMPRESSING NEWNAME). |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3782 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
|
3783 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
|
3784 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
|
3785 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3786 (defun ange-ftp-dired-compress-file (name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3787 (let ((parsed (ange-ftp-ftp-name name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3788 conversion-func) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3789 (if (and parsed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3790 (setq conversion-func |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3791 (cdr (assq (ange-ftp-host-type (car parsed)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3792 ange-ftp-make-compressed-filename-alist)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3793 (let* ((decision |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
3794 (save-match-data (funcall conversion-func name))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3795 (compressing (car decision)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3796 (newfile (nth 1 decision))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3797 (if compressing |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3798 (ange-ftp-compress name newfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3799 (ange-ftp-uncompress name newfile))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3800 (let (file-name-handler-alist) |
3230
103f34320cb5
(ange-ftp-dired-compress-file):
Richard M. Stallman <rms@gnu.org>
parents:
3000
diff
changeset
|
3801 (dired-compress-file name))))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3802 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3803 ;; 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
|
3804 (defun ange-ftp-compress (file nfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3805 (let* ((parsed (ange-ftp-ftp-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3806 (tmp1 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3807 (tmp2 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3808 (abbr (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3809 (nabbr (ange-ftp-abbreviate-filename nfile)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3810 (msg1 (format "Getting %s" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3811 (msg2 (format "Putting %s" nabbr))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3812 (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3813 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3814 (ange-ftp-copy-file-internal file tmp1 t nil msg1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3815 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3816 (ange-ftp-message "Compressing %s..." abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3817 (call-process-region (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3818 (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3819 shell-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3820 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3821 t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3822 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3823 "-c" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3824 (format "compress -f -c < %s > %s" tmp1 tmp2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3825 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3826 (ange-ftp-message "Compressing %s...done" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3827 (if (zerop (buffer-size)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3828 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3829 (let (ange-ftp-process-verbose) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3830 (delete-file file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3831 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3832 (ange-ftp-del-tmp-name tmp1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3833 (ange-ftp-del-tmp-name tmp2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3834 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3835 ;; 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
|
3836 (defun ange-ftp-uncompress (file nfile) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3837 (let* ((parsed (ange-ftp-ftp-name file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3838 (tmp1 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3839 (tmp2 (ange-ftp-make-tmp-name (car parsed))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3840 (abbr (ange-ftp-abbreviate-filename file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3841 (nabbr (ange-ftp-abbreviate-filename nfile)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3842 (msg1 (format "Getting %s" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3843 (msg2 (format "Putting %s" nabbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3844 ;; ;; Cheap hack because of problems with binary file transfers from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3845 ;; ;; VMS hosts. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3846 ;; (gbinary (not (eq 'vms (ange-ftp-host-type (car parsed))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3847 ) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3848 (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3849 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3850 (ange-ftp-copy-file-internal file tmp1 t nil msg1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3851 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3852 (ange-ftp-message "Uncompressing %s..." abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3853 (call-process-region (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3854 (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3855 shell-file-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3856 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3857 t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3858 nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3859 "-c" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3860 (format "uncompress -c < %s > %s" tmp1 tmp2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3861 (and ange-ftp-process-verbose |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3862 (ange-ftp-message "Uncompressing %s...done" abbr)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3863 (if (zerop (buffer-size)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3864 (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3865 (let (ange-ftp-process-verbose) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3866 (delete-file file)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3867 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3868 (ange-ftp-del-tmp-name tmp1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3869 (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
|
3870 |
8b26137996f9
(ange-ftp-set-buffer-mode): Don't set make-backup-files.
Richard M. Stallman <rms@gnu.org>
parents:
10244
diff
changeset
|
3871 (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
|
3872 ;; 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
|
3873 ;; 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
|
3874 (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
|
3875 (ange-ftp-real-find-backup-file-name fn))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3876 |
1106 | 3877 ;;; Define the handler for special file names |
3878 ;;; that causes ange-ftp to be invoked. | |
3879 | |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3880 ;;;###autoload |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3881 (defun ange-ftp-hook-function (operation &rest args) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3882 (let ((fn (get operation 'ange-ftp))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3883 (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
|
3884 (ange-ftp-run-real-handler operation args)))) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3885 |
3893
d04e12f9153f
* ange-ftp.el: Loosen file-name-handler-alist regexp so we can do
Jim Blandy <jimb@redhat.com>
parents:
3831
diff
changeset
|
3886 |
d04e12f9153f
* ange-ftp.el: Loosen file-name-handler-alist regexp so we can do
Jim Blandy <jimb@redhat.com>
parents:
3831
diff
changeset
|
3887 ;;; 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
|
3888 ;;; 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
|
3889 ;;; 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
|
3890 ;;;###autoload |
12741
bcaa94db623c
(file-name-handler-alist): Don't match host name ending in period.
Richard M. Stallman <rms@gnu.org>
parents:
12441
diff
changeset
|
3891 (or (assoc "^/[^/:]*[^/:.]:" file-name-handler-alist) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3892 (setq file-name-handler-alist |
12741
bcaa94db623c
(file-name-handler-alist): Don't match host name ending in period.
Richard M. Stallman <rms@gnu.org>
parents:
12441
diff
changeset
|
3893 (cons '("^/[^/:]*[^/:.]:" . ange-ftp-hook-function) |
4185
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3894 file-name-handler-alist))) |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3895 |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3896 ;;; This regexp recognizes and absolute filenames with only one component, |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3897 ;;; 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
|
3898 ;;;###autoload |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3899 (or (assoc "^/[^/:]*\\'" file-name-handler-alist) |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3900 (setq file-name-handler-alist |
05a314aafd74
(file-name-handler-alist): Have two separate regexps with different hooks.
Richard M. Stallman <rms@gnu.org>
parents:
4128
diff
changeset
|
3901 (cons '("^/[^/:]*\\'" . ange-ftp-completion-hook-function) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3902 file-name-handler-alist))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3903 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3904 ;;; 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
|
3905 ;;; 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
|
3906 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3907 ;;; This sets the mode |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3908 (or (memq 'ange-ftp-set-buffer-mode find-file-hooks) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3909 (setq find-file-hooks |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3910 (cons 'ange-ftp-set-buffer-mode find-file-hooks))) |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3911 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3912 ;;; Now say where to find the handlers for particular operations. |
1106 | 3913 |
3914 (put 'file-name-directory 'ange-ftp 'ange-ftp-file-name-directory) | |
3915 (put 'file-name-nondirectory 'ange-ftp 'ange-ftp-file-name-nondirectory) | |
3916 (put 'file-name-as-directory 'ange-ftp 'ange-ftp-file-name-as-directory) | |
3917 (put 'directory-file-name 'ange-ftp 'ange-ftp-directory-file-name) | |
3918 (put 'expand-file-name 'ange-ftp 'ange-ftp-expand-file-name) | |
3919 (put 'make-directory 'ange-ftp 'ange-ftp-make-directory) | |
3920 (put 'delete-directory 'ange-ftp 'ange-ftp-delete-directory) | |
3921 (put 'insert-file-contents 'ange-ftp 'ange-ftp-insert-file-contents) | |
3922 (put 'directory-files 'ange-ftp 'ange-ftp-directory-files) | |
3923 (put 'file-directory-p 'ange-ftp 'ange-ftp-file-directory-p) | |
3924 (put 'file-writable-p 'ange-ftp 'ange-ftp-file-writable-p) | |
3925 (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
|
3926 (put 'file-executable-p 'ange-ftp 'ange-ftp-file-executable-p) |
1106 | 3927 (put 'file-symlink-p 'ange-ftp 'ange-ftp-file-symlink-p) |
3928 (put 'delete-file 'ange-ftp 'ange-ftp-delete-file) | |
3929 (put 'read-file-name-internal 'ange-ftp 'ange-ftp-read-file-name-internal) | |
3930 (put 'verify-visited-file-modtime 'ange-ftp | |
3931 'ange-ftp-verify-visited-file-modtime) | |
3932 (put 'file-exists-p 'ange-ftp 'ange-ftp-file-exists-p) | |
3933 (put 'write-region 'ange-ftp 'ange-ftp-write-region) | |
3934 (put 'backup-buffer 'ange-ftp 'ange-ftp-backup-buffer) | |
3935 (put 'copy-file 'ange-ftp 'ange-ftp-copy-file) | |
3936 (put 'rename-file 'ange-ftp 'ange-ftp-rename-file) | |
3937 (put 'file-attributes 'ange-ftp 'ange-ftp-file-attributes) | |
3938 (put 'file-name-all-completions 'ange-ftp 'ange-ftp-file-name-all-completions) | |
3939 (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
|
3940 (put 'insert-directory 'ange-ftp 'ange-ftp-insert-directory) |
1158
b48094d3cc42
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1132
diff
changeset
|
3941 (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
|
3942 (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
|
3943 'ange-ftp-unhandled-file-name-directory) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3944 (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
|
3945 (put 'dired-uncache 'ange-ftp 'ange-ftp-dired-uncache) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
3946 (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
|
3947 (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
|
3948 (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
|
3949 |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3950 ;; 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
|
3951 ;; 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
|
3952 (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
|
3953 |
035c3f9fa12f
Add dummy handlers for file-truename and vc-registered.
Richard M. Stallman <rms@gnu.org>
parents:
1242
diff
changeset
|
3954 ;; 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
|
3955 ;; 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
|
3956 (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
|
3957 |
c7dfe102acc3
(dired-call-process): Put on ange-ftp property.
Karl Heuer <kwzh@gnu.org>
parents:
14572
diff
changeset
|
3958 (put 'dired-call-process 'ange-ftp 'ange-ftp-dired-call-process) |
1107
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3959 |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3960 ;;; Define ways of getting at unmodified Emacs primitives, |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3961 ;;; turning off our handler. |
e1519ff908b3
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1106
diff
changeset
|
3962 |
7042 | 3963 (defun ange-ftp-run-real-handler (operation args) |
3964 (let ((inhibit-file-name-handlers | |
3965 (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
|
3966 (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
|
3967 (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
|
3968 inhibit-file-name-handlers)))) |
7042 | 3969 (inhibit-file-name-operation operation)) |
3970 (apply operation args))) | |
3971 | |
1106 | 3972 (defun ange-ftp-real-file-name-directory (&rest args) |
7042 | 3973 (ange-ftp-run-real-handler 'file-name-directory args)) |
1106 | 3974 (defun ange-ftp-real-file-name-nondirectory (&rest args) |
7042 | 3975 (ange-ftp-run-real-handler 'file-name-nondirectory args)) |
1106 | 3976 (defun ange-ftp-real-file-name-as-directory (&rest args) |
7042 | 3977 (ange-ftp-run-real-handler 'file-name-as-directory args)) |
1106 | 3978 (defun ange-ftp-real-directory-file-name (&rest args) |
7042 | 3979 (ange-ftp-run-real-handler 'directory-file-name args)) |
1106 | 3980 (defun ange-ftp-real-expand-file-name (&rest args) |
7042 | 3981 (ange-ftp-run-real-handler 'expand-file-name args)) |
1106 | 3982 (defun ange-ftp-real-make-directory (&rest args) |
7042 | 3983 (ange-ftp-run-real-handler 'make-directory args)) |
1106 | 3984 (defun ange-ftp-real-delete-directory (&rest args) |
7042 | 3985 (ange-ftp-run-real-handler 'delete-directory args)) |
1106 | 3986 (defun ange-ftp-real-insert-file-contents (&rest args) |
7042 | 3987 (ange-ftp-run-real-handler 'insert-file-contents args)) |
1106 | 3988 (defun ange-ftp-real-directory-files (&rest args) |
7042 | 3989 (ange-ftp-run-real-handler 'directory-files args)) |
1106 | 3990 (defun ange-ftp-real-file-directory-p (&rest args) |
7042 | 3991 (ange-ftp-run-real-handler 'file-directory-p args)) |
1106 | 3992 (defun ange-ftp-real-file-writable-p (&rest args) |
7042 | 3993 (ange-ftp-run-real-handler 'file-writable-p args)) |
1106 | 3994 (defun ange-ftp-real-file-readable-p (&rest args) |
7042 | 3995 (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
|
3996 (defun ange-ftp-real-file-executable-p (&rest args) |
7042 | 3997 (ange-ftp-run-real-handler 'file-executable-p args)) |
1106 | 3998 (defun ange-ftp-real-file-symlink-p (&rest args) |
7042 | 3999 (ange-ftp-run-real-handler 'file-symlink-p args)) |
1106 | 4000 (defun ange-ftp-real-delete-file (&rest args) |
7042 | 4001 (ange-ftp-run-real-handler 'delete-file args)) |
1106 | 4002 (defun ange-ftp-real-read-file-name-internal (&rest args) |
7042 | 4003 (ange-ftp-run-real-handler 'read-file-name-internal args)) |
1106 | 4004 (defun ange-ftp-real-verify-visited-file-modtime (&rest args) |
7042 | 4005 (ange-ftp-run-real-handler 'verify-visited-file-modtime args)) |
1106 | 4006 (defun ange-ftp-real-file-exists-p (&rest args) |
7042 | 4007 (ange-ftp-run-real-handler 'file-exists-p args)) |
1106 | 4008 (defun ange-ftp-real-write-region (&rest args) |
7042 | 4009 (ange-ftp-run-real-handler 'write-region args)) |
1106 | 4010 (defun ange-ftp-real-backup-buffer (&rest args) |
7042 | 4011 (ange-ftp-run-real-handler 'backup-buffer args)) |
1106 | 4012 (defun ange-ftp-real-copy-file (&rest args) |
7042 | 4013 (ange-ftp-run-real-handler 'copy-file args)) |
1106 | 4014 (defun ange-ftp-real-rename-file (&rest args) |
7042 | 4015 (ange-ftp-run-real-handler 'rename-file args)) |
1106 | 4016 (defun ange-ftp-real-file-attributes (&rest args) |
7042 | 4017 (ange-ftp-run-real-handler 'file-attributes args)) |
1106 | 4018 (defun ange-ftp-real-file-name-all-completions (&rest args) |
7042 | 4019 (ange-ftp-run-real-handler 'file-name-all-completions args)) |
1106 | 4020 (defun ange-ftp-real-file-name-completion (&rest args) |
7042 | 4021 (ange-ftp-run-real-handler 'file-name-completion args)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4022 (defun ange-ftp-real-insert-directory (&rest args) |
7042 | 4023 (ange-ftp-run-real-handler 'insert-directory args)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4024 (defun ange-ftp-real-file-name-sans-versions (&rest args) |
7042 | 4025 (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
|
4026 (defun ange-ftp-real-shell-command (&rest args) |
7042 | 4027 (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
|
4028 (defun ange-ftp-real-load (&rest args) |
7042 | 4029 (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
|
4030 (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
|
4031 (ange-ftp-run-real-handler 'find-backup-file-name args)) |
1106 | 4032 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4033 ;; Here we support using dired on remote hosts. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4034 ;; 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
|
4035 ;; That involves too many unclean hooks. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4036 ;; It would be cleaner to support such operations by |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4037 ;; converting the foreign directory format to something dired can understand; |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4038 ;; something close to ls -l output. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4039 ;; 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
|
4040 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4041 ;; 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
|
4042 ;; I have preserved (and modernized) those hooks. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4043 ;; So the format conversion should be all that is needed. |
1106 | 4044 |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4045 (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
|
4046 (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
|
4047 (parsed (ange-ftp-ftp-name (expand-file-name file)))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4048 (if parsed |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4049 (insert |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4050 (if wildcard |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4051 (let ((default-directory (file-name-directory file))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4052 (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
|
4053 (ange-ftp-ls file switches full))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4054 (ange-ftp-real-insert-directory file switches wildcard full)))) |
1106 | 4055 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4056 (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
|
4057 (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
|
4058 (setq ange-ftp-ls-cache-file nil))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4059 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4060 (defvar ange-ftp-sans-version-alist nil |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4061 "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
|
4062 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4063 (defun ange-ftp-file-name-sans-versions (file keep-backup-version) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4064 (setq file (ange-ftp-abbreviate-filename file)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4065 (let ((parsed (ange-ftp-ftp-name file)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4066 host-type func) |
1106 | 4067 (if parsed |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4068 (setq host-type (ange-ftp-host-type (car parsed)) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4069 func (cdr (assq (ange-ftp-host-type (car parsed)) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4070 ange-ftp-sans-version-alist)))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4071 (if func (funcall func file keep-backup-version) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1107
diff
changeset
|
4072 (ange-ftp-real-file-name-sans-versions file keep-backup-version)))) |
1106 | 4073 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4074 ;;; This doesn't work yet; a new hook needs to be created. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4075 ;;; Maybe the new hook should be in call-process. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4076 (defun ange-ftp-shell-command (command) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4077 (let* ((parsed (ange-ftp-ftp-name default-directory)) |
1106 | 4078 (host (nth 0 parsed)) |
4079 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4080 (name (nth 2 parsed))) |
1106 | 4081 (if (not parsed) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4082 (ange-ftp-real-shell-command command) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4083 (if (> (length name) 0) ; else it's $HOME |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4084 (setq command (concat "cd " name "; " command))) |
1106 | 4085 (setq command |
4086 (format "%s %s \"%s\"" ; remsh -l USER does not work well | |
4087 ; 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
|
4088 remote-shell-program host command)) |
1106 | 4089 (ange-ftp-message "Remote command '%s' ..." command) |
4090 ;; Cannot call ange-ftp-real-dired-run-shell-command here as it | |
4091 ;; would prepend "cd default-directory" --- which bombs because | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4092 ;; default-directory is in ange-ftp syntax for remote file names. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4093 (ange-ftp-real-shell-command command)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4094 |
14634
c7dfe102acc3
(dired-call-process): Put on ange-ftp property.
Karl Heuer <kwzh@gnu.org>
parents:
14572
diff
changeset
|
4095 ;;; This is the handler for call-process. |
1106 | 4096 (defun ange-ftp-dired-call-process (program discard &rest arguments) |
4097 ;; PROGRAM is always one of those below in the cond in dired.el. | |
4098 ;; The ARGUMENTS are (nearly) always files. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4099 (if (ange-ftp-ftp-name default-directory) |
1106 | 4100 ;; Can't use ange-ftp-dired-host-type here because the current |
4101 ;; buffer is *dired-check-process output* | |
4102 (condition-case oops | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4103 (cond ((equal "chmod" program) |
1106 | 4104 (ange-ftp-call-chmod arguments)) |
4105 ;; ((equal "chgrp" program)) | |
4106 ;; ((equal dired-chown-program program)) | |
4107 (t (error "Unknown remote command: %s" program))) | |
4108 (ftp-error (insert (format "%s: %s, %s\n" | |
4109 (nth 1 oops) | |
4110 (nth 2 oops) | |
14869
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4111 (nth 3 oops))) |
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4112 ;; 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
|
4113 1) |
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4114 (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
|
4115 1)) |
1106 | 4116 (apply 'call-process program nil (not discard) nil arguments))) |
4117 | |
14869
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4118 (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
|
4119 "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
|
4120 |
14868
cca4562fbafd
(ange-ftp-call-chmod): Return proper value.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
4121 ;; 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
|
4122 ;; by using the ftp chmod command. |
1106 | 4123 (defun ange-ftp-call-chmod (args) |
4124 (if (< (length args) 2) | |
4125 (error "ange-ftp-call-chmod: missing mode and/or filename: %s" args)) | |
4126 (let ((mode (car args))) | |
4127 (mapcar | |
4128 (function | |
4129 (lambda (file) | |
4130 (setq file (expand-file-name file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4131 (let ((parsed (ange-ftp-ftp-name file))) |
1106 | 4132 (if parsed |
4133 (let* ((host (nth 0 parsed)) | |
4134 (user (nth 1 parsed)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4135 (name (ange-ftp-quote-string (nth 2 parsed))) |
1106 | 4136 (abbr (ange-ftp-abbreviate-filename file)) |
4137 (result (ange-ftp-send-cmd host user | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4138 (list 'chmod mode name) |
1106 | 4139 (format "doing chmod %s" |
4140 abbr)))) | |
4141 (or (car result) | |
14869
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4142 (call-process |
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4143 ange-ftp-remote-shell |
a9ba8d3ffd87
(ange-ftp-dired-call-process): Return 1 if error.
Richard M. Stallman <rms@gnu.org>
parents:
14868
diff
changeset
|
4144 nil t nil host "chmod" mode name))))))) |
1106 | 4145 (cdr args))) |
14868
cca4562fbafd
(ange-ftp-call-chmod): Return proper value.
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
4146 (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
|
4147 0) |
1106 | 4148 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4149 ;;; 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
|
4150 ;;; with dired. It could be reasonable to adapt this to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4151 ;;; replace ange-ftp-copy-file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4152 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4153 ;;;;; ------------------------------------------------------------ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4154 ;;;;; Noddy support for async copy-file within dired. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4155 ;;;;; ------------------------------------------------------------ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4156 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4157 ;;(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
|
4158 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4159 ;; (dired-handle-overwrite to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4160 ;; (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
|
4161 ;; cont nowait)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4162 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4163 ;;(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
|
4164 ;; &optional marker-char op1 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4165 ;; how-to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4166 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4167 ;; ;; 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
|
4168 ;; ;; called it rather than somebody else. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4169 ;; (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
|
4170 ;; (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
|
4171 ;; arg marker-char op1 how-to))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4172 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4173 ;;(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
|
4174 ;; &optional marker-char) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4175 ;; "Documented as original." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4176 ;; (if (and (boundp 'ange-ftp-dired-do-create-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4177 ;; ;; called from ange-ftp-dired-do-create-files? |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4178 ;; ange-ftp-dired-do-create-files |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4179 ;; ;; any files worth copying? |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4180 ;; fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4181 ;; ;; we only support async copy-file at the mo. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4182 ;; (eq file-creator 'dired-copy-file) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4183 ;; ;; 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
|
4184 ;; ;; as we tie ourself in recursive knots otherwise. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4185 ;; (or (ange-ftp-ftp-name (car fn-list)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4186 ;; ;; 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
|
4187 ;; ;; since the one for regexps starts prompting here, there and |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4188 ;; ;; everywhere. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4189 ;; (ange-ftp-ftp-name (funcall name-constructor (car fn-list))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4190 ;; ;; 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
|
4191 ;; (ange-ftp-dcf-1 file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4192 ;; operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4193 ;; fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4194 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4195 ;; (and (boundp 'target) target) ;dynamically bound |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4196 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4197 ;; (current-buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4198 ;; nil ;overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4199 ;; nil ;overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4200 ;; nil ;failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4201 ;; nil ;skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4202 ;; 0 ;success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4203 ;; (length fn-list) ;total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4204 ;; ) |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3532
diff
changeset
|
4205 ;; ;; normal case... use the interactive routine... much cheaper. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4206 ;; (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
|
4207 ;; name-constructor marker-char))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4208 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4209 ;;(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
|
4210 ;; target marker-char buffer overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4211 ;; overwrite-backup-query failures skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4212 ;; success-count total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4213 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4214 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4215 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4216 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4217 ;; (if (null fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4218 ;; (ange-ftp-dcf-3 failures operation total skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4219 ;; success-count buffer) |
1106 | 4220 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4221 ;; (let* ((from (car fn-list)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4222 ;; (to (funcall name-constructor from))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4223 ;; (if (equal to from) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4224 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4225 ;; (setq to nil) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4226 ;; (dired-log "Cannot %s to same file: %s\n" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4227 ;; (downcase operation) from))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4228 ;; (if (not to) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4229 ;; (ange-ftp-dcf-1 file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4230 ;; operation |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4231 ;; (cdr fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4232 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4233 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4234 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4235 ;; buffer |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4236 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4237 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4238 ;; failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4239 ;; (cons (dired-make-relative from) skipped) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4240 ;; success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4241 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4242 ;; (let* ((overwrite (file-exists-p to)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4243 ;; (overwrite-confirmed ; for dired-handle-overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4244 ;; (and overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4245 ;; (let ((help-form '(format "\ |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4246 ;;Type SPC or `y' to overwrite file `%s', |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4247 ;;DEL or `n' to skip to next, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4248 ;;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
|
4249 ;;`!' to overwrite all remaining files with no more questions." to))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4250 ;; (dired-query 'overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4251 ;; "Overwrite `%s'?" to)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4252 ;; ;; must determine if FROM is marked before file-creator |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4253 ;; ;; 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
|
4254 ;; (actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4255 ;; (cond ((integerp marker-char) marker-char) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4256 ;; (marker-char (dired-file-marker from)) ; slow |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4257 ;; (t nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4258 ;; (condition-case err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4259 ;; (funcall file-creator from to overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4260 ;; (list (function ange-ftp-dcf-2) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4261 ;; nil ;err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4262 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4263 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4264 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4265 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4266 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4267 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4268 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4269 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4270 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4271 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4272 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4273 ;; t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4274 ;; (file-error ; FILE-CREATOR aborted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4275 ;; (ange-ftp-dcf-2 nil ;result |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4276 ;; nil ;line |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4277 ;; err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4278 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4279 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4280 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4281 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4282 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4283 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4284 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4285 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4286 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4287 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4288 ;; total)))))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4289 ;; (set-buffer old-buf)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4290 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4291 ;;(defun ange-ftp-dcf-2 (result line err |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4292 ;; file-creator operation fn-list |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4293 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4294 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4295 ;; marker-char actual-marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4296 ;; buffer to from |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4297 ;; overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4298 ;; overwrite-confirmed |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4299 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4300 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4301 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4302 ;; total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4303 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4304 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4305 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4306 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4307 ;; (if (or err (not result)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4308 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4309 ;; (setq failures (cons (dired-make-relative from) failures)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4310 ;; (dired-log "%s `%s' to `%s' failed:\n%s\n" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4311 ;; operation from to (or err line))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4312 ;; (if overwrite |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4313 ;; ;; If we get here, file-creator hasn't been aborted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4314 ;; ;; and the old entry (if any) has to be deleted |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4315 ;; ;; before adding the new entry. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4316 ;; (dired-remove-file to)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4317 ;; (setq success-count (1+ success-count)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4318 ;; (message "%s: %d of %d" operation success-count total) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4319 ;; (dired-add-file to actual-marker-char)) |
1106 | 4320 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4321 ;; (ange-ftp-dcf-1 file-creator operation (cdr fn-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4322 ;; name-constructor |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4323 ;; target |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4324 ;; marker-char |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4325 ;; buffer |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4326 ;; overwrite-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4327 ;; overwrite-backup-query |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4328 ;; failures skipped success-count |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4329 ;; total)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4330 ;; (set-buffer old-buf)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4331 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4332 ;;(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
|
4333 ;; buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4334 ;; (let ((old-buf (current-buffer))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4335 ;; (unwind-protect |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4336 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4337 ;; (set-buffer buffer) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4338 ;; (cond |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4339 ;; (failures |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4340 ;; (dired-log-summary |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4341 ;; (message "%s failed for %d of %d file%s %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4342 ;; operation (length failures) total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4343 ;; (dired-plural-s total) failures))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4344 ;; (skipped |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4345 ;; (dired-log-summary |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4346 ;; (message "%s: %d of %d file%s skipped %s" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4347 ;; operation (length skipped) total |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4348 ;; (dired-plural-s total) skipped))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4349 ;; (t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4350 ;; (message "%s: %s file%s." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4351 ;; operation success-count (dired-plural-s success-count)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4352 ;; (dired-move-to-filename)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4353 ;; (set-buffer old-buf)))) |
1106 | 4354 |
4355 ;;;; ----------------------------------------------- | |
4356 ;;;; Unix Descriptive Listing (dl) Support | |
4357 ;;;; ----------------------------------------------- | |
4358 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4359 ;; This is turned off because nothing uses it currently |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4360 ;; 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
|
4361 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4362 ;;(defconst ange-ftp-dired-dl-re-dir |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4363 ;; "^. [^ /]+/[ \n]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4364 ;; "Regular expression to use to search for dl directories.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4365 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4366 ;;(or (assq 'unix:dl ange-ftp-dired-re-dir-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4367 ;; (setq ange-ftp-dired-re-dir-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4368 ;; (cons (cons 'unix:dl ange-ftp-dired-dl-re-dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4369 ;; ange-ftp-dired-re-dir-alist))) |
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 ;;(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
|
4372 ;; "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
|
4373 ;; ;; This is the Unix dl version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4374 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4375 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4376 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4377 ;; (if (looking-at ". [^ ]+ +\\([0-9]+\\|-\\|=\\) ") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4378 ;; (goto-char (+ (point) 2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4379 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4380 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4381 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4382 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4383 ;;(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
|
4384 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4385 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4386 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4387 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4388 ;;(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
|
4389 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4390 ;; ;; 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
|
4391 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4392 ;; ;; This is the Unix dl version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4393 ;; (let ((opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4394 ;; case-fold-search hidden) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4395 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4396 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4397 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4398 ;; (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4399 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4400 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4401 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4402 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4403 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4404 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4405 ;; (skip-chars-forward "^ /" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4406 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4407 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4408 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4409 ;; (error "No file on this line")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4410 ;; (point))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4411 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4412 ;;(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
|
4413 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4414 ;; (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
|
4415 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 4416 |
4417 ;;;; ------------------------------------------------------------ | |
4418 ;;;; VOS support (VOS support is probably broken, | |
4419 ;;;; but I don't know anything about VOS.) | |
4420 ;;;; ------------------------------------------------------------ | |
4421 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4422 ;(defun ange-ftp-fix-name-for-vos (name &optional reverse) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4423 ; (setq name (copy-sequence name)) |
1106 | 4424 ; (let ((from (if reverse ?\> ?\/)) |
4425 ; (to (if reverse ?\/ ?\>)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4426 ; (i (1- (length name)))) |
1106 | 4427 ; (while (>= i 0) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4428 ; (if (= (aref name i) from) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4429 ; (aset name i to)) |
1106 | 4430 ; (setq i (1- i))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4431 ; name)) |
1106 | 4432 ; |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4433 ;(or (assq 'vos ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4434 ; (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4435 ; (cons '(vos . ange-ftp-fix-name-for-vos) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4436 ; ange-ftp-fix-name-func-alist))) |
1106 | 4437 ; |
4438 ;(or (memq 'vos ange-ftp-dumb-host-types) | |
4439 ; (setq ange-ftp-dumb-host-types | |
4440 ; (cons 'vos ange-ftp-dumb-host-types))) | |
4441 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4442 ;(defun ange-ftp-fix-dir-name-for-vos (dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4443 ; (ange-ftp-fix-name-for-vos |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4444 ; (concat dir-name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4445 ; (if (eq ?/ (aref dir-name (1- (length dir-name)))) |
1106 | 4446 ; "" "/") |
4447 ; "*"))) | |
4448 ; | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4449 ;(or (assq 'vos ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4450 ; (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4451 ; (cons '(vos . ange-ftp-fix-dir-name-for-vos) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4452 ; ange-ftp-fix-dir-name-func-alist))) |
1106 | 4453 ; |
4454 ;(defvar ange-ftp-vos-host-regexp nil | |
4455 ; "If a host matches this regexp then it is assumed to be running VOS.") | |
4456 ; | |
4457 ;(defun ange-ftp-vos-host (host) | |
4458 ; (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
|
4459 ; (save-match-data |
1106 | 4460 ; (string-match ange-ftp-vos-host-regexp host)))) |
4461 ; | |
4462 ;(defun ange-ftp-parse-vos-listing () | |
4463 ; "Parse the current buffer which is assumed to be in VOS list -all | |
4464 ;format, and return a hashtable as the result." | |
4465 ; (let ((tbl (ange-ftp-make-hashtable)) | |
4466 ; (type-list | |
4467 ; '(("^Files: [0-9]+ +Blocks: [0-9]+\n+" nil 40) | |
4468 ; ("^Dirs: [0-9]+\n+" t 30))) | |
4469 ; type-regexp type-is-dir type-col file) | |
4470 ; (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
4471 ; (save-match-data |
1106 | 4472 ; (while type-list |
4473 ; (setq type-regexp (car (car type-list)) | |
4474 ; type-is-dir (nth 1 (car type-list)) | |
4475 ; type-col (nth 2 (car type-list)) | |
4476 ; type-list (cdr type-list)) | |
4477 ; (if (re-search-forward type-regexp nil t) | |
4478 ; (while (eq (char-after (point)) ? ) | |
4479 ; (move-to-column type-col) | |
4480 ; (setq file (buffer-substring (point) | |
4481 ; (progn | |
4482 ; (end-of-line 1) | |
4483 ; (point)))) | |
4484 ; (ange-ftp-put-hash-entry file type-is-dir tbl) | |
4485 ; (forward-line 1)))) | |
4486 ; (ange-ftp-put-hash-entry "." 'vosdir tbl) | |
4487 ; (ange-ftp-put-hash-entry ".." 'vosdir tbl)) | |
4488 ; tbl)) | |
4489 ; | |
4490 ;(or (assq 'vos ange-ftp-parse-list-func-alist) | |
4491 ; (setq ange-ftp-parse-list-func-alist | |
4492 ; (cons '(vos . ange-ftp-parse-vos-listing) | |
4493 ; ange-ftp-parse-list-func-alist))) | |
4494 | |
4495 ;;;; ------------------------------------------------------------ | |
4496 ;;;; VMS support. | |
4497 ;;;; ------------------------------------------------------------ | |
4498 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4499 ;; 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
|
4500 ;; to UNIX-ish. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4501 (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
|
4502 (save-match-data |
1106 | 4503 (if reverse |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4504 (if (string-match "^\\([^:]+:\\)?\\(\\[.*\\]\\)?\\([^][]*\\)$" name) |
1106 | 4505 (let (drive dir file) |
4506 (if (match-beginning 1) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4507 (setq drive (substring name |
1106 | 4508 (match-beginning 1) |
4509 (match-end 1)))) | |
4510 (if (match-beginning 2) | |
4511 (setq dir | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4512 (substring name (match-beginning 2) (match-end 2)))) |
1106 | 4513 (if (match-beginning 3) |
4514 (setq file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4515 (substring name (match-beginning 3) (match-end 3)))) |
1106 | 4516 (and dir |
4517 (setq dir (apply (function concat) | |
4518 (mapcar (function | |
4519 (lambda (char) | |
4520 (if (= char ?.) | |
4521 (vector ?/) | |
4522 (vector char)))) | |
4523 (substring dir 1 -1))))) | |
4524 (concat (and drive | |
4525 (concat "/" drive "/")) | |
4526 dir (and dir "/") | |
4527 file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4528 (error "name %s didn't match" name)) |
1106 | 4529 (let (drive dir file tmp) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4530 (if (string-match "^/[^:]+:/" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4531 (setq drive (substring name 1 |
1106 | 4532 (1- (match-end 0))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4533 name (substring name (match-end 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4534 (setq tmp (file-name-directory name)) |
1106 | 4535 (if tmp |
4536 (setq dir (apply (function concat) | |
4537 (mapcar (function | |
4538 (lambda (char) | |
4539 (if (= char ?/) | |
4540 (vector ?.) | |
4541 (vector char)))) | |
4542 (substring tmp 0 -1))))) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4543 (setq file (file-name-nondirectory name)) |
1106 | 4544 (concat drive |
4545 (and dir (concat "[" (if drive nil ".") dir "]")) | |
4546 file))))) | |
4547 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4548 ;; (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
|
4549 ;; (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
|
4550 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4551 (or (assq 'vms ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4552 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4553 (cons '(vms . ange-ftp-fix-name-for-vms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4554 ange-ftp-fix-name-func-alist))) |
1106 | 4555 |
4556 (or (memq 'vms ange-ftp-dumb-host-types) | |
4557 (setq ange-ftp-dumb-host-types | |
4558 (cons 'vms ange-ftp-dumb-host-types))) | |
4559 | |
4560 ;; It is important that this function barf for directories for which we know | |
4561 ;; that we cannot possibly get a directory listing, such as "/" and "/DEV:/". | |
4562 ;; This is because it saves an unnecessary FTP error, or possibly the listing | |
4563 ;; might succeed, but give erroneous info. This last case is particularly | |
4564 ;; likely for OS's (like MTS) for which we need to use a wildcard in order | |
4565 ;; to list a directory. | |
4566 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4567 ;; 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
|
4568 (defun ange-ftp-fix-dir-name-for-vms (dir-name) |
1106 | 4569 ;; Should there be entries for .. -> [-] and . -> [] below. Don't |
4570 ;; think so, because expand-filename should have already short-circuited | |
4571 ;; them. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4572 (cond ((string-equal dir-name "/") |
1106 | 4573 (error "Cannot get listing for fictitious \"/\" directory.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4574 ((string-match "^/[-A-Z0-9_$]+:/$" dir-name) |
1106 | 4575 (error "Cannot get listing for device.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4576 ((ange-ftp-fix-name-for-vms dir-name)))) |
1106 | 4577 |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4578 (or (assq 'vms ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4579 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4580 (cons '(vms . ange-ftp-fix-dir-name-for-vms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4581 ange-ftp-fix-dir-name-func-alist))) |
1106 | 4582 |
4583 (defvar ange-ftp-vms-host-regexp nil) | |
4584 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4585 ;; Return non-nil if HOST is running VMS. |
1106 | 4586 (defun ange-ftp-vms-host (host) |
4587 (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
|
4588 (save-match-data |
1106 | 4589 (string-match ange-ftp-vms-host-regexp host)))) |
4590 | |
4591 ;; Because some VMS ftp servers convert filenames to lower case | |
4592 ;; we allow a-z in the filename regexp. I'm not too happy about this. | |
4593 | |
4594 (defconst ange-ftp-vms-filename-regexp | |
4595 (concat | |
6309
9217f29851c2
Don't use triple-hyphen in a character class.
Karl Heuer <kwzh@gnu.org>
parents:
6192
diff
changeset
|
4596 "\\(\\([_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
|
4597 "[-_A-Za-z0-9$]*;+[0-9]*\\)") |
1106 | 4598 "Regular expression to match for a valid VMS file name in Dired buffer. |
4599 Stupid freaking bug! Position of _ and $ shouldn't matter but they do. | |
4600 Having [A-Z0-9$_] bombs on filename _$$CHANGE_LOG$.TXT$ and $CHANGE_LOG$.TX | |
4601 Other orders of $ and _ seem to all work just fine.") | |
4602 | |
4603 ;; These parsing functions are as general as possible because the syntax | |
4604 ;; of ftp listings from VMS hosts is a bit erratic. What saves us is that | |
4605 ;; the VMS filename syntax is so rigid. If they bomb on a listing in the | |
4606 ;; standard VMS Multinet format, then this is a bug. If they bomb on a listing | |
4607 ;; from vms.weird.net, then too bad. | |
4608 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4609 ;; Extract the next filename from a VMS dired-like listing. |
1106 | 4610 (defun ange-ftp-parse-vms-filename () |
4611 (if (re-search-forward | |
4612 ange-ftp-vms-filename-regexp | |
4613 nil t) | |
4614 (buffer-substring (match-beginning 0) (match-end 0)))) | |
4615 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4616 ;; 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
|
4617 ;; format, and return a hashtable as the result. |
1106 | 4618 (defun ange-ftp-parse-vms-listing () |
4619 (let ((tbl (ange-ftp-make-hashtable)) | |
4620 file) | |
4621 (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
4622 (save-match-data |
1106 | 4623 (while (setq file (ange-ftp-parse-vms-filename)) |
4624 (if (string-match "\\.\\(DIR\\|dir\\);[0-9]+" file) | |
4625 ;; deal with directories | |
4626 (ange-ftp-put-hash-entry | |
4627 (substring file 0 (match-beginning 0)) t tbl) | |
4628 (ange-ftp-put-hash-entry file nil tbl) | |
4629 (if (string-match ";[0-9]+$" file) ; deal with extension | |
4630 ;; sans extension | |
4631 (ange-ftp-put-hash-entry | |
4632 (substring file 0 (match-beginning 0)) nil tbl))) | |
4633 (forward-line 1)) | |
4634 ;; Would like to look for a "Total" line, or a "Directory" line to | |
4635 ;; make sure that the listing isn't complete garbage before putting | |
4636 ;; in "." and "..", but we can't even count on all VAX's giving us | |
4637 ;; either of these. | |
4638 (ange-ftp-put-hash-entry "." t tbl) | |
4639 (ange-ftp-put-hash-entry ".." t tbl)) | |
4640 tbl)) | |
4641 | |
4642 (or (assq 'vms ange-ftp-parse-list-func-alist) | |
4643 (setq ange-ftp-parse-list-func-alist | |
4644 (cons '(vms . ange-ftp-parse-vms-listing) | |
4645 ange-ftp-parse-list-func-alist))) | |
4646 | |
4647 ;; This version only deletes file entries which have | |
4648 ;; explicit version numbers, because that is all VMS allows. | |
4649 | |
4650 ;; Can the following two functions be speeded up using file | |
4651 ;; completion functions? | |
4652 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4653 (defun ange-ftp-vms-delete-file-entry (name &optional dir-p) |
1106 | 4654 (if dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4655 (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
|
4656 (save-match-data |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4657 (let ((file (ange-ftp-get-file-part name))) |
1106 | 4658 (if (string-match ";[0-9]+$" file) |
4659 ;; In VMS you can't delete a file without an explicit | |
4660 ;; version number, or wild-card (e.g. FOO;*) | |
4661 ;; For now, we give up on wildcards. | |
4662 (let ((files (ange-ftp-get-hash-entry | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4663 (file-name-directory name) |
1106 | 4664 ange-ftp-files-hashtable))) |
4665 (if files | |
4666 (let* ((root (substring file 0 | |
4667 (match-beginning 0))) | |
4668 (regexp (concat "^" | |
4669 (regexp-quote root) | |
4670 ";[0-9]+$")) | |
4671 versions) | |
4672 (ange-ftp-del-hash-entry file files) | |
4673 ;; Now we need to check if there are any | |
4674 ;; versions left. If not, then delete the | |
4675 ;; root entry. | |
4676 (mapatoms | |
4677 '(lambda (sym) | |
4678 (and (string-match regexp (get sym 'key)) | |
4679 (setq versions t))) | |
4680 files) | |
4681 (or versions | |
4682 (ange-ftp-del-hash-entry root files)))))))))) | |
4683 | |
4684 (or (assq 'vms ange-ftp-delete-file-entry-alist) | |
4685 (setq ange-ftp-delete-file-entry-alist | |
4686 (cons '(vms . ange-ftp-vms-delete-file-entry) | |
4687 ange-ftp-delete-file-entry-alist))) | |
4688 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4689 (defun ange-ftp-vms-add-file-entry (name &optional dir-p) |
1106 | 4690 (if dir-p |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4691 (ange-ftp-internal-add-file-entry name t) |
1106 | 4692 (let ((files (ange-ftp-get-hash-entry |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4693 (file-name-directory name) |
1106 | 4694 ange-ftp-files-hashtable))) |
4695 (if files | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4696 (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
|
4697 (save-match-data |
1106 | 4698 (if (string-match ";[0-9]+$" file) |
4699 (ange-ftp-put-hash-entry | |
4700 (substring file 0 (match-beginning 0)) | |
4701 nil files) | |
4702 ;; Need to figure out what version of the file | |
4703 ;; is being added. | |
4704 (let ((regexp (concat "^" | |
4705 (regexp-quote file) | |
4706 ";\\([0-9]+\\)$")) | |
4707 (version 0)) | |
4708 (mapatoms | |
4709 '(lambda (sym) | |
4710 (let ((name (get sym 'key))) | |
4711 (and (string-match regexp name) | |
4712 (setq version | |
4713 (max version | |
4714 (string-to-int | |
4715 (substring name | |
4716 (match-beginning 1) | |
4717 (match-end 1)))))))) | |
4718 files) | |
4719 (setq version (1+ version)) | |
4720 (ange-ftp-put-hash-entry | |
4721 (concat file ";" (int-to-string version)) | |
4722 nil files)))) | |
4723 (ange-ftp-put-hash-entry file nil files)))))) | |
4724 | |
4725 (or (assq 'vms ange-ftp-add-file-entry-alist) | |
4726 (setq ange-ftp-add-file-entry-alist | |
4727 (cons '(vms . ange-ftp-vms-add-file-entry) | |
4728 ange-ftp-add-file-entry-alist))) | |
4729 | |
4730 | |
4731 (defun ange-ftp-add-vms-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4732 "Mark HOST as the name of a machine running VMS." |
1106 | 4733 (interactive |
4734 (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
|
4735 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4736 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 4737 (if (not (ange-ftp-vms-host host)) |
4738 (setq ange-ftp-vms-host-regexp | |
4739 (concat "^" (regexp-quote host) "$" | |
4740 (and ange-ftp-vms-host-regexp "\\|") | |
4741 ange-ftp-vms-host-regexp) | |
4742 ange-ftp-host-cache nil))) | |
4743 | |
4744 | |
4745 (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
|
4746 (save-match-data |
1106 | 4747 (if (string-match "\\.\\(DIR\\|dir\\)\\(;[0-9]+\\)?$" name) |
4748 (setq name (substring name 0 (match-beginning 0)))) | |
4749 (ange-ftp-real-file-name-as-directory name))) | |
4750 | |
4751 (or (assq 'vms ange-ftp-file-name-as-directory-alist) | |
4752 (setq ange-ftp-file-name-as-directory-alist | |
4753 (cons '(vms . ange-ftp-vms-file-name-as-directory) | |
4754 ange-ftp-file-name-as-directory-alist))) | |
4755 | |
4756 ;;; Tree dired support: | |
4757 | |
4758 ;; For this code I have borrowed liberally from Sebastian Kremer's | |
4759 ;; dired-vms.el | |
4760 | |
4761 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4762 ;;;; These regexps must be anchored to beginning of line. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4763 ;;;; 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
|
4764 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4765 ;;(defconst ange-ftp-dired-vms-re-exe "^. [^ \t.]+\\.\\(EXE\\|exe\\)[; ]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4766 ;; "Regular expression to use to search for VMS executable files.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4767 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4768 ;;(defconst ange-ftp-dired-vms-re-dir "^. [^ \t.]+\\.\\(DIR\\|dir\\)[; ]" |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4769 ;; "Regular expression to use to search for VMS directories.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4770 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4771 ;;(or (assq 'vms ange-ftp-dired-re-exe-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4772 ;; (setq ange-ftp-dired-re-exe-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4773 ;; (cons (cons 'vms ange-ftp-dired-vms-re-exe) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4774 ;; ange-ftp-dired-re-exe-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4775 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4776 ;;(or (assq 'vms ange-ftp-dired-re-dir-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4777 ;; (setq ange-ftp-dired-re-dir-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4778 ;; (cons (cons 'vms ange-ftp-dired-vms-re-dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4779 ;; ange-ftp-dired-re-dir-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4780 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4781 ;;(defun ange-ftp-dired-vms-insert-headerline (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4782 ;; ;; VMS inserts a headerline. I would prefer the headerline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4783 ;; ;; to be in ange-ftp format. This version tries to |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4784 ;; ;; be careful, because we can't count on a headerline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4785 ;; ;; over ftp, and we wouldn't want to delete anything |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4786 ;; ;; important. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4787 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4788 ;; (if (looking-at "^ wildcard ") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4789 ;; (forward-line 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4790 ;; (if (looking-at "^[ \n\t]*[^\n]+\\][ \t]*\n") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4791 ;; (delete-region (point) (match-end 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4792 ;; (ange-ftp-real-dired-insert-headerline dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4793 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4794 ;;(or (assq 'vms ange-ftp-dired-insert-headerline-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4795 ;; (setq ange-ftp-dired-insert-headerline-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4796 ;; (cons '(vms . ange-ftp-dired-vms-insert-headerline) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4797 ;; ange-ftp-dired-insert-headerline-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4798 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4799 ;;(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
|
4800 ;; "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
|
4801 ;;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
|
4802 ;; ;; This is the VMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4803 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4804 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4805 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4806 ;; (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
|
4807 ;; (goto-char (match-beginning 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4808 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4809 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4810 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4811 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4812 ;;(or (assq 'vms ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4813 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4814 ;; (cons '(vms . ange-ftp-dired-vms-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4815 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4816 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4817 ;;(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
|
4818 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4819 ;; ;; 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
|
4820 ;; ;; case-fold-search must be nil, at least for VMS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4821 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4822 ;; ;; This is the VMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4823 ;; (let (opoint hidden case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4824 ;; (setq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4825 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4826 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4827 ;; (save-excursion (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4828 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4829 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4830 ;; (re-search-forward ange-ftp-vms-filename-regexp eol t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4831 ;; (or no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4832 ;; (not (eq opoint (point))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4833 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4834 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4835 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4836 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4837 ;; "No file on this line"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4838 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4839 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4840 ;; (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4841 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4842 ;;(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
|
4843 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4844 ;; (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
|
4845 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4846 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4847 ;;(defun ange-ftp-dired-vms-between-files () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4848 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4849 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4850 ;; (or (equal (following-char) 10) ; newline |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4851 ;; (equal (following-char) 9) ; tab |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4852 ;; (progn (forward-char 2) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4853 ;; (or (looking-at "Total of") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4854 ;; (equal (following-char) 32)))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4855 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4856 ;;(or (assq 'vms ange-ftp-dired-between-files-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4857 ;; (setq ange-ftp-dired-between-files-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4858 ;; (cons '(vms . ange-ftp-dired-vms-between-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4859 ;; ange-ftp-dired-between-files-alist))) |
1106 | 4860 |
4861 ;; Beware! In VMS filenames must be of the form "FILE.TYPE". | |
4862 ;; Therefore, we cannot just append a ".Z" to filenames for | |
4863 ;; compressed files. Instead, we turn "FILE.TYPE" into | |
4864 ;; "FILE.TYPE-Z". Hope that this is a reasonable thing to do. | |
4865 | |
4866 (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
|
4867 (cond |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4868 ((string-match "-Z;[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4869 (list nil (substring name 0 (match-beginning 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4870 ((string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4871 (list nil (substring name 0 (match-beginning 0)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4872 ((string-match "-Z$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4873 (list nil (substring name 0 -2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4874 (t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4875 (list t |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4876 (if (string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4877 (concat (substring name 0 (match-beginning 0)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4878 "-Z") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4879 (concat name "-Z")))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4880 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4881 (or (assq 'vms ange-ftp-make-compressed-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4882 (setq ange-ftp-make-compressed-filename-alist |
1106 | 4883 (cons '(vms . ange-ftp-vms-make-compressed-filename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4884 ange-ftp-make-compressed-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4885 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4886 ;;;; 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
|
4887 ;;;; (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
|
4888 ;;;; 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
|
4889 ;;;; (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
|
4890 ;;;; If dired gets confused, revert-buffer will fix it. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4891 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4892 ;;(defun ange-ftp-dired-vms-ls-trim () |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4893 ;; (goto-char (point-min)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4894 ;; (let ((case-fold-search nil)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4895 ;; (re-search-forward ange-ftp-vms-filename-regexp)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4896 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4897 ;; (delete-region (point-min) (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4898 ;; (forward-line 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4899 ;; (delete-region (point) (point-max))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4900 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4901 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4902 ;;(or (assq 'vms ange-ftp-dired-ls-trim-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4903 ;; (setq ange-ftp-dired-ls-trim-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4904 ;; (cons '(vms . ange-ftp-dired-vms-ls-trim) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4905 ;; ange-ftp-dired-ls-trim-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4906 |
12977
046bc1e2acc9
(ange-ftp-vms-sans-version): Accept extra args.
Richard M. Stallman <rms@gnu.org>
parents:
12741
diff
changeset
|
4907 (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
|
4908 (save-match-data |
1106 | 4909 (if (string-match ";[0-9]+$" name) |
4910 (substring name 0 (match-beginning 0)) | |
4911 name))) | |
4912 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4913 (or (assq 'vms ange-ftp-sans-version-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4914 (setq ange-ftp-sans-version-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4915 (cons '(vms . ange-ftp-vms-sans-version) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4916 ange-ftp-sans-version-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4917 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4918 ;;(defvar ange-ftp-file-version-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4919 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4920 ;;;;; 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
|
4921 ;;;;; 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
|
4922 ;;;;; ange-ftp-dired-vms-flag-backup-files. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4923 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4924 ;;(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
|
4925 ;; "Flag numerical backups for deletion. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4926 ;;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
|
4927 ;;Positive prefix arg KEEP overrides `dired-kept-versions'; |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4928 ;;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
|
4929 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4930 ;;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
|
4931 ;;with a prefix argument." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4932 ;;; (interactive "P") ; Never actually called interactively. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4933 ;; (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
|
4934 ;; (let ((early-retention (if (< keep 0) (- keep) kept-old-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4935 ;; ;; 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
|
4936 ;; ;; This could wipe ALL copies of the file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4937 ;; (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
|
4938 ;; (action (or msg "Cleaning")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4939 ;; (ange-ftp-trample-marker (or marker dired-del-marker)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4940 ;; (ange-ftp-file-version-alist ())) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4941 ;; (message (concat action |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4942 ;; " numerical backups (keeping %d late, %d old)...") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4943 ;; late-retention early-retention) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4944 ;; ;; Look at each file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4945 ;; ;; If the file has numeric backup versions, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4946 ;; ;; 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
|
4947 ;; ;; (FILENAME . VERSION-NUMBER-LIST) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4948 ;; (dired-map-dired-file-lines (function |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4949 ;; ange-ftp-dired-vms-collect-file-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4950 ;; ;; Sort each VERSION-NUMBER-LIST, |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4951 ;; ;; and remove the versions not to be deleted. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4952 ;; (let ((fval ange-ftp-file-version-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4953 ;; (while fval |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4954 ;; (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4955 ;; (v-count (length sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4956 ;; (if (> v-count (+ early-retention late-retention)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4957 ;; (rplacd (nthcdr early-retention sorted-v-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4958 ;; (nthcdr (- v-count late-retention) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4959 ;; sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4960 ;; (rplacd (car fval) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4961 ;; (cdr sorted-v-list))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4962 ;; (setq fval (cdr fval)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4963 ;; ;; 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
|
4964 ;; ;; 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
|
4965 ;; (dired-map-dired-file-lines |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4966 ;; (function |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4967 ;; ange-ftp-dired-vms-trample-file-versions mark)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4968 ;; (message (concat action " numerical backups...done")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4969 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4970 ;;(or (assq 'vms ange-ftp-dired-clean-directory-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4971 ;; (setq ange-ftp-dired-clean-directory-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4972 ;; (cons '(vms . ange-ftp-dired-vms-clean-directory) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4973 ;; ange-ftp-dired-clean-directory-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4974 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4975 ;;(defun ange-ftp-dired-vms-collect-file-versions (fn) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4976 ;; ;; "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
|
4977 ;; ;;That is a list of strings which are file names. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4978 ;; ;;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
|
4979 ;;(let ((name (nth 2 (ange-ftp-ftp-name fn)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4980 ;; (if (string-match ";[0-9]+$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4981 ;; (let* ((name (substring name 0 (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4982 ;; (fn (ange-ftp-replace-name-component fn name))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4983 ;; (if (not (assq fn ange-ftp-file-version-alist)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4984 ;; (let* ((base-versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4985 ;; (concat (file-name-nondirectory name) ";")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4986 ;; (bv-length (length base-versions)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4987 ;; (possibilities (file-name-all-completions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4988 ;; base-versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4989 ;; (file-name-directory fn))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4990 ;; (versions (mapcar |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4991 ;; '(lambda (arg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4992 ;; (if (and (string-match |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4993 ;; "[0-9]+$" arg bv-length) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4994 ;; (= (match-beginning 0) bv-length)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4995 ;; (string-to-int (substring arg bv-length)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4996 ;; 0)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4997 ;; possibilities))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4998 ;; (if versions |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
4999 ;; (setq |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5000 ;; ange-ftp-file-version-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5001 ;; (cons (cons fn versions) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5002 ;; ange-ftp-file-version-alist))))))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5003 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5004 ;;(defun ange-ftp-dired-vms-trample-file-versions (fn) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5005 ;; (let* ((start-vn (string-match ";[0-9]+$" fn)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5006 ;; base-version-list) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5007 ;; (and start-vn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5008 ;; (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
|
5009 ;; (assoc (substring fn 0 start-vn) ; this looks like a |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5010 ;; ange-ftp-file-version-alist)) ; subversion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5011 ;; (not (memq (string-to-int (substring fn (1+ start-vn))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5012 ;; base-version-list)) ; this one doesn't make the cut |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5013 ;; (progn (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5014 ;; (delete-char 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5015 ;; (insert ange-ftp-trample-marker))))) |
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-flag-backup-files (&optional unflag-p) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5018 ;; (let ((dired-kept-versions 1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5019 ;; (kept-old-versions 0) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5020 ;; marker msg) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5021 ;; (if unflag-p |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5022 ;; (setq marker ?\040 msg "Unflagging") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5023 ;; (setq marker dired-del-marker msg "Cleaning")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5024 ;; (ange-ftp-dired-vms-clean-directory nil marker msg))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5025 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5026 ;;(or (assq 'vms ange-ftp-dired-flag-backup-files-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5027 ;; (setq ange-ftp-dired-flag-backup-files-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5028 ;; (cons '(vms . ange-ftp-dired-vms-flag-backup-files) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5029 ;; ange-ftp-dired-flag-backup-files-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5030 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5031 ;;(defun ange-ftp-dired-vms-backup-diff (&optional switches) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5032 ;; (let ((file (dired-get-filename 'no-dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5033 ;; bak) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5034 ;; (if (and (string-match ";[0-9]+$" file) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5035 ;; ;; Find most recent previous version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5036 ;; (let ((root (substring file 0 (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5037 ;; (ver |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5038 ;; (string-to-int (substring file (1+ (match-beginning 0))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5039 ;; found) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5040 ;; (setq ver (1- ver)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5041 ;; (while (and (> ver 0) (not found)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5042 ;; (setq bak (concat root ";" (int-to-string ver))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5043 ;; (and (file-exists-p bak) (setq found t)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5044 ;; (setq ver (1- ver))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5045 ;; found)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5046 ;; (if switches |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5047 ;; (diff (expand-file-name bak) (expand-file-name file) switches) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5048 ;; (diff (expand-file-name bak) (expand-file-name file))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5049 ;; (error "No previous version found for %s" file)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5050 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5051 ;;(or (assq 'vms ange-ftp-dired-backup-diff-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5052 ;; (setq ange-ftp-dired-backup-diff-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5053 ;; (cons '(vms . ange-ftp-dired-vms-backup-diff) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5054 ;; ange-ftp-dired-backup-diff-alist))) |
1106 | 5055 |
5056 | |
5057 ;;;; ------------------------------------------------------------ | |
5058 ;;;; MTS support | |
5059 ;;;; ------------------------------------------------------------ | |
5060 | |
5061 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5062 ;; 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
|
5063 ;; MTS to UNIX-ish. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5064 (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
|
5065 (save-match-data |
1106 | 5066 (if reverse |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5067 (if (string-match "^\\([^:]+:\\)?\\(.*\\)$" name) |
1106 | 5068 (let (acct file) |
5069 (if (match-beginning 1) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5070 (setq acct (substring name 0 (match-end 1)))) |
1106 | 5071 (if (match-beginning 2) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5072 (setq file (substring name |
1106 | 5073 (match-beginning 2) (match-end 2)))) |
5074 (concat (and acct (concat "/" acct "/")) | |
5075 file)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5076 (error "name %s didn't match" name)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5077 (if (string-match "^/\\([^:]+:\\)/\\(.*\\)$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5078 (concat (substring name 1 (match-end 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5079 (substring name (match-beginning 2) (match-end 2))) |
1106 | 5080 ;; Let's hope that mts will recognize it anyway. |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5081 name)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5082 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5083 (or (assq 'mts ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5084 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5085 (cons '(mts . ange-ftp-fix-name-for-mts) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5086 ange-ftp-fix-name-func-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5087 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5088 ;; 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
|
5089 ;; Remember that there are no directories in MTS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5090 (defun ange-ftp-fix-dir-name-for-mts (dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5091 (if (string-equal dir-name "/") |
1106 | 5092 (error "Cannot get listing for fictitious \"/\" directory.") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5093 (let ((dir-name (ange-ftp-fix-name-for-mts dir-name))) |
1106 | 5094 (cond |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5095 ((string-equal dir-name "") |
1106 | 5096 "?") |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5097 ((string-match ":$" dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5098 (concat dir-name "?")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5099 (dir-name))))) ; It's just a single file. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5100 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5101 (or (assq 'mts ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5102 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5103 (cons '(mts . ange-ftp-fix-dir-name-for-mts) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5104 ange-ftp-fix-dir-name-func-alist))) |
1106 | 5105 |
5106 (or (memq 'mts ange-ftp-dumb-host-types) | |
5107 (setq ange-ftp-dumb-host-types | |
5108 (cons 'mts ange-ftp-dumb-host-types))) | |
5109 | |
5110 (defvar ange-ftp-mts-host-regexp nil) | |
5111 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5112 ;; Return non-nil if HOST is running MTS. |
1106 | 5113 (defun ange-ftp-mts-host (host) |
5114 (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
|
5115 (save-match-data |
1106 | 5116 (string-match ange-ftp-mts-host-regexp host)))) |
5117 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5118 ;; Parse the current buffer which is assumed to be in mts ftp dir format. |
1106 | 5119 (defun ange-ftp-parse-mts-listing () |
5120 (let ((tbl (ange-ftp-make-hashtable))) | |
5121 (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
5122 (save-match-data |
1106 | 5123 (while (re-search-forward ange-ftp-date-regexp nil t) |
5124 (end-of-line) | |
5125 (skip-chars-backward " ") | |
5126 (let ((end (point))) | |
5127 (skip-chars-backward "-A-Z0-9_.!") | |
5128 (ange-ftp-put-hash-entry (buffer-substring (point) end) nil tbl)) | |
5129 (forward-line 1))) | |
5130 ;; Don't need to bother with .. | |
5131 (ange-ftp-put-hash-entry "." t tbl) | |
5132 tbl)) | |
5133 | |
5134 (or (assq 'mts ange-ftp-parse-list-func-alist) | |
5135 (setq ange-ftp-parse-list-func-alist | |
5136 (cons '(mts . ange-ftp-parse-mts-listing) | |
5137 ange-ftp-parse-list-func-alist))) | |
5138 | |
5139 (defun ange-ftp-add-mts-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5140 "Mark HOST as the name of a machine running MTS." |
1106 | 5141 (interactive |
5142 (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
|
5143 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5144 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 5145 (if (not (ange-ftp-mts-host host)) |
5146 (setq ange-ftp-mts-host-regexp | |
5147 (concat "^" (regexp-quote host) "$" | |
5148 (and ange-ftp-mts-host-regexp "\\|") | |
5149 ange-ftp-mts-host-regexp) | |
5150 ange-ftp-host-cache nil))) | |
5151 | |
5152 ;;; Tree dired support: | |
5153 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5154 ;;;; 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
|
5155 ;;;; 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
|
5156 ;;;; 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
|
5157 ;;;; following more flexible. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5158 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5159 ;;(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
|
5160 ;; "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
|
5161 ;;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
|
5162 ;; ;; This is the MTS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5163 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5164 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5165 ;; (if (re-search-forward |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5166 ;; ange-ftp-date-regexp eol t) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5167 ;; (progn |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5168 ;; (skip-chars-forward " ") ; Eat blanks after date |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5169 ;; (skip-chars-forward "0-9:" eol) ; Eat time or year |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5170 ;; (skip-chars-forward " " eol) ; one space before filename |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5171 ;; ;; 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
|
5172 ;; ;; ACCT: to the beginning of the filename. Skip over this. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5173 ;; (and (looking-at "[A-Z0-9_.]+:") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5174 ;; (goto-char (match-end 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5175 ;; (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5176 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5177 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5178 ;; nil))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5179 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5180 ;;(or (assq 'mts ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5181 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5182 ;; (cons '(mts . ange-ftp-dired-mts-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5183 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5184 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5185 ;;(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
|
5186 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5187 ;; ;; 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
|
5188 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5189 ;; ;; This is the MTS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5190 ;; (let (opoint hidden case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5191 ;; (setq opoint (point) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5192 ;; eol (save-excursion (end-of-line) (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5193 ;; hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5194 ;; (save-excursion (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5195 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5196 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5197 ;; (skip-chars-forward "-A-Z0-9._!" eol)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5198 ;; (or no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5199 ;; (not (eq opoint (point))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5200 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5201 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5202 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5203 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5204 ;; "No file on this line"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5205 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5206 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5207 ;; (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5208 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5209 ;;(or (assq 'mts ange-ftp-dired-move-to-end-of-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5210 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5211 ;; (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
|
5212 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 5213 |
5214 ;;;; ------------------------------------------------------------ | |
5215 ;;;; CMS support | |
5216 ;;;; ------------------------------------------------------------ | |
5217 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5218 ;; 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
|
5219 ;; things with cd's. We actually send too many cd's, but it's dangerous |
1106 | 5220 ;; to try to remember the current minidisk, because if the connection |
5221 ;; is closed and needs to be reopened, we will find ourselves back in | |
5222 ;; the default minidisk. This is fairly likely since CMS ftp servers | |
5223 ;; usually close the connection after 5 minutes of inactivity. | |
5224 | |
5225 ;; Have I got the filename character set right? | |
5226 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5227 (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
|
5228 (save-match-data |
1106 | 5229 (if reverse |
5230 ;; Since we only convert output from a pwd in this direction, | |
5231 ;; we'll assume that it's a minidisk, and make it into a | |
5232 ;; directory file name. Note that the expand-dir-hashtable | |
5233 ;; stores directories without the trailing /. Is this | |
5234 ;; consistent? | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5235 (concat "/" name) |
1106 | 5236 (if (string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5237 name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5238 (let ((minidisk (substring name 1 (match-end 1)))) |
1106 | 5239 (if (match-beginning 2) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5240 (let ((file (substring name (match-beginning 2) |
1106 | 5241 (match-end 2))) |
5242 (cmd (concat "cd " minidisk)) | |
5243 | |
5244 ;; Note that host and user are bound in the call | |
5245 ;; to ange-ftp-send-cmd | |
5246 (proc (ange-ftp-get-process ange-ftp-this-host | |
5247 ange-ftp-this-user))) | |
5248 | |
5249 ;; Must use ange-ftp-raw-send-cmd here to avoid | |
5250 ;; an infinite loop. | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5251 (if (car (ange-ftp-raw-send-cmd proc cmd ange-ftp-this-msg)) |
1106 | 5252 file |
5253 ;; failed... try ONCE more. | |
5254 (setq proc (ange-ftp-get-process ange-ftp-this-host | |
5255 ange-ftp-this-user)) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5256 (let ((result (ange-ftp-raw-send-cmd proc cmd |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5257 ange-ftp-this-msg))) |
1106 | 5258 (if (car result) |
5259 file | |
5260 ;; failed. give up. | |
5261 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user | |
5262 (format "cd to minidisk %s failed: %s" | |
5263 minidisk (cdr result))))))) | |
5264 ;; return the minidisk | |
5265 minidisk)) | |
5266 (error "Invalid CMS filename"))))) | |
5267 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5268 (or (assq 'cms ange-ftp-fix-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5269 (setq ange-ftp-fix-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5270 (cons '(cms . ange-ftp-fix-name-for-cms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5271 ange-ftp-fix-name-func-alist))) |
1106 | 5272 |
5273 (or (memq 'cms ange-ftp-dumb-host-types) | |
5274 (setq ange-ftp-dumb-host-types | |
5275 (cons 'cms ange-ftp-dumb-host-types))) | |
5276 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5277 ;; 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
|
5278 (defun ange-ftp-fix-dir-name-for-cms (dir-name) |
1106 | 5279 (cond |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5280 ((string-equal "/" dir-name) |
1106 | 5281 (error "Cannot get listing for fictitious \"/\" directory.")) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5282 ((string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" dir-name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5283 (let* ((minidisk (substring dir-name (match-beginning 1) (match-end 1))) |
1106 | 5284 ;; 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
|
5285 (proc (ange-ftp-get-process ange-ftp-this-host ange-ftp-this-user)) |
1106 | 5286 (cmd (concat "cd " minidisk)) |
5287 (file (if (match-beginning 2) | |
5288 ;; it's a single file | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5289 (substring dir-name (match-beginning 2) |
1106 | 5290 (match-end 2)) |
5291 ;; use the wild-card | |
5292 "*"))) | |
5293 (if (car (ange-ftp-raw-send-cmd proc cmd)) | |
5294 file | |
5295 ;; try again... | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5296 (setq proc (ange-ftp-get-process ange-ftp-this-host |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5297 ange-ftp-this-user)) |
1106 | 5298 (let ((result (ange-ftp-raw-send-cmd proc cmd))) |
5299 (if (car result) | |
5300 file | |
5301 ;; give up | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5302 (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
|
5303 (format "cd to minidisk %s failed: %s" |
1106 | 5304 minidisk (cdr result)))))))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5305 (t (error "Invalid CMS file name")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5306 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5307 (or (assq 'cms ange-ftp-fix-dir-name-func-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5308 (setq ange-ftp-fix-dir-name-func-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5309 (cons '(cms . ange-ftp-fix-dir-name-for-cms) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5310 ange-ftp-fix-dir-name-func-alist))) |
1106 | 5311 |
5312 (defvar ange-ftp-cms-host-regexp nil | |
5313 "Regular expression to match hosts running the CMS operating system.") | |
5314 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5315 ;; Return non-nil if HOST is running CMS. |
1106 | 5316 (defun ange-ftp-cms-host (host) |
5317 (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
|
5318 (save-match-data |
1106 | 5319 (string-match ange-ftp-cms-host-regexp host)))) |
5320 | |
5321 (defun ange-ftp-add-cms-host (host) | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5322 "Mark HOST as the name of a CMS host." |
1106 | 5323 (interactive |
5324 (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
|
5325 (let ((name (or (buffer-file-name) default-directory))) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5326 (and name (car (ange-ftp-ftp-name name))))))) |
1106 | 5327 (if (not (ange-ftp-cms-host host)) |
5328 (setq ange-ftp-cms-host-regexp | |
5329 (concat "^" (regexp-quote host) "$" | |
5330 (and ange-ftp-cms-host-regexp "\\|") | |
5331 ange-ftp-cms-host-regexp) | |
5332 ange-ftp-host-cache nil))) | |
5333 | |
5334 (defun ange-ftp-parse-cms-listing () | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5335 ;; Parse the current buffer which is assumed to be a CMS directory listing. |
1106 | 5336 ;; If we succeed in getting a listing, then we will assume that the minidisk |
5337 ;; exists. file is bound by the call to ange-ftp-ls. This doesn't work | |
5338 ;; because ange-ftp doesn't know that the root hashtable has only part of | |
5339 ;; the info. It will assume that if a minidisk isn't in it, then it doesn't | |
5340 ;; exist. It would be nice if completion worked for minidisks, as we | |
5341 ;; discover them. | |
5342 ; (let* ((dir-file (directory-file-name file)) | |
5343 ; (root (file-name-directory dir-file)) | |
5344 ; (minidisk (ange-ftp-get-file-part dir-file)) | |
5345 ; (root-tbl (ange-ftp-get-hash-entry root ange-ftp-files-hashtable))) | |
5346 ; (if root-tbl | |
5347 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5348 ; (setq root-tbl (ange-ftp-make-hashtable)) | |
5349 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
5350 ; (ange-ftp-put-hash-entry "." t root-tbl) | |
5351 ; (ange-ftp-set-files root root-tbl))) | |
5352 ;; Now do the usual parsing | |
5353 (let ((tbl (ange-ftp-make-hashtable))) | |
5354 (goto-char (point-min)) | |
10244
3d95ea97eb9e
(ange-ftp-save-match-data): Macro deleted.
Richard M. Stallman <rms@gnu.org>
parents:
10118
diff
changeset
|
5355 (save-match-data |
1106 | 5356 (while |
5357 (re-search-forward | |
5358 "^\\([-A-Z0-9$_]+\\) +\\([-A-Z0-9$_]+\\) +[VF] +[0-9]+ " nil t) | |
5359 (ange-ftp-put-hash-entry | |
5360 (concat (buffer-substring (match-beginning 1) | |
5361 (match-end 1)) | |
5362 "." | |
5363 (buffer-substring (match-beginning 2) | |
5364 (match-end 2))) | |
5365 nil tbl) | |
5366 (forward-line 1)) | |
5367 (ange-ftp-put-hash-entry "." t tbl)) | |
5368 tbl)) | |
5369 | |
5370 (or (assq 'cms ange-ftp-parse-list-func-alist) | |
5371 (setq ange-ftp-parse-list-func-alist | |
5372 (cons '(cms . ange-ftp-parse-cms-listing) | |
5373 ange-ftp-parse-list-func-alist))) | |
5374 | |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5375 ;;;;; Tree dired support: |
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 ;;(defconst ange-ftp-dired-cms-re-exe |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5378 ;; "^. [-A-Z0-9$_]+ +EXEC " |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5379 ;; "Regular expression to use to search for CMS executables.") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5380 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5381 ;;(or (assq 'cms ange-ftp-dired-re-exe-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5382 ;; (setq ange-ftp-dired-re-exe-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5383 ;; (cons (cons 'cms ange-ftp-dired-cms-re-exe) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5384 ;; ange-ftp-dired-re-exe-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5385 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5386 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5387 ;;(defun ange-ftp-dired-cms-insert-headerline (dir) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5388 ;; ;; 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
|
5389 ;; ;; aesthetics. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5390 ;; (insert "\n") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5391 ;; (forward-char -1) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5392 ;; (ange-ftp-real-dired-insert-headerline dir)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5393 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5394 ;;(or (assq 'cms ange-ftp-dired-insert-headerline-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5395 ;; (setq ange-ftp-dired-insert-headerline-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5396 ;; (cons '(cms . ange-ftp-dired-cms-insert-headerline) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5397 ;; ange-ftp-dired-insert-headerline-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5398 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5399 ;;(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
|
5400 ;; "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
|
5401 ;; ;; This is the CMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5402 ;; (or eol (setq eol (progn (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5403 ;; (let (case-fold-search) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5404 ;; (beginning-of-line) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5405 ;; (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
|
5406 ;; (goto-char (1+ (match-beginning 0))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5407 ;; (if raise-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5408 ;; (error "No file on this line") |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5409 ;; nil)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5410 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5411 ;;(or (assq 'cms ange-ftp-dired-move-to-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5412 ;; (setq ange-ftp-dired-move-to-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5413 ;; (cons '(cms . ange-ftp-dired-cms-move-to-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5414 ;; ange-ftp-dired-move-to-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5415 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5416 ;;(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
|
5417 ;; ;; Assumes point is at beginning of filename. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5418 ;; ;; 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
|
5419 ;; ;; case-fold-search must be nil, at least for VMS. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5420 ;; ;; On failure, signals an error or returns nil. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5421 ;; ;; This is the CMS version. |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5422 ;; (let ((opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5423 ;; case-fold-search hidden) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5424 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5425 ;; (setq hidden (and selective-display |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5426 ;; (save-excursion |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5427 ;; (search-forward "\r" eol t)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5428 ;; (if hidden |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5429 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5430 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5431 ;; (error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5432 ;; (substitute-command-keys |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5433 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5434 ;; (skip-chars-forward "-A-Z0-9$_" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5435 ;; (skip-chars-forward " " eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5436 ;; (skip-chars-forward "-A-Z0-9$_" eol) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5437 ;; (if (eq opoint (point)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5438 ;; (if no-error |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5439 ;; nil |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5440 ;; (error "No file on this line")) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5441 ;; (point))))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5442 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5443 ;;(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
|
5444 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5445 ;; (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
|
5446 ;; ange-ftp-dired-move-to-end-of-filename-alist))) |
1106 | 5447 |
5448 (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
|
5449 (if (string-match "-Z$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5450 (list nil (substring name 0 -2)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5451 (list t (concat name "-Z")))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5452 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5453 (or (assq 'cms ange-ftp-make-compressed-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5454 (setq ange-ftp-make-compressed-filename-alist |
1106 | 5455 (cons '(cms . ange-ftp-cms-make-compressed-filename) |
1132
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5456 ange-ftp-make-compressed-filename-alist))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5457 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5458 ;;(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
|
5459 ;; (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
|
5460 ;; (and name |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5461 ;; (if (string-match "^\\([^ ]+\\) +\\([^ ]+\\)$" name) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5462 ;; (concat (substring name 0 (match-end 1)) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5463 ;; "." |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5464 ;; (substring name (match-beginning 2) (match-end 2))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5465 ;; name)))) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5466 |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5467 ;;(or (assq 'cms ange-ftp-dired-get-filename-alist) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5468 ;; (setq ange-ftp-dired-get-filename-alist |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5469 ;; (cons '(cms . ange-ftp-dired-cms-get-filename) |
4cfdd782a158
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
5470 ;; ange-ftp-dired-get-filename-alist))) |
1106 | 5471 |
5472 ;;;; ------------------------------------------------------------ | |
5473 ;;;; Finally provide package. | |
5474 ;;;; ------------------------------------------------------------ | |
5475 | |
5476 (provide 'ange-ftp) | |
2229
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
5477 |
bd3c525fa6fc
Added standard library headers.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1670
diff
changeset
|
5478 ;;; ange-ftp.el ends here |