Mercurial > emacs
annotate lisp/net/ange-ftp.el @ 104844:ce7818a96e63
(x_focus_changed): If we get a focusout and pointer
is invisible, make it visible.
author | Jan Djärv <jan.h.d@swipnet.se> |
---|---|
date | Fri, 04 Sep 2009 05:33:13 +0000 |
parents | 9902de48eab4 |
children | 5d527d3bf1fa |
rev | line source |
---|---|
28210 | 1 ;;; ange-ftp.el --- transparent FTP support for GNU Emacs |
2 | |
64701
34bd8e434dd7
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64667
diff
changeset
|
3 ;; Copyright (C) 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, |
104552
10c38084881d
Remove code for defunct system-types emx, macos, mswindows,
Glenn Morris <rgm@gnu.org>
parents:
102850
diff
changeset
|
4 ;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 |
10c38084881d
Remove code for defunct system-types emx, macos, mswindows,
Glenn Morris <rgm@gnu.org>
parents:
102850
diff
changeset
|
5 ;; Free Software Foundation, Inc. |
28210 | 6 |
7 ;; Author: Andy Norman (ange@hplb.hpl.hp.com) | |
8 ;; Maintainer: FSF | |
9 ;; Keywords: comm | |
10 | |
11 ;; This file is part of GNU Emacs. | |
12 | |
94677
91e5880a36c1
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92148
diff
changeset
|
13 ;; GNU Emacs is free software: you can redistribute it and/or modify |
28210 | 14 ;; it under the terms of the GNU General Public License as published by |
94677
91e5880a36c1
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92148
diff
changeset
|
15 ;; the Free Software Foundation, either version 3 of the License, or |
91e5880a36c1
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92148
diff
changeset
|
16 ;; (at your option) any later version. |
28210 | 17 |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
94677
91e5880a36c1
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92148
diff
changeset
|
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
28210 | 25 |
26 ;;; Commentary: | |
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 ;; The `host' part has an optional suffix `#port' which may be used to | |
54 ;; specify a non-default port number for the connexion. | |
55 ;; | |
56 ;; If the user part is omitted then ange-ftp generates a default user | |
57 ;; instead whose value depends on the variable ange-ftp-default-user. | |
58 | |
59 ;; Passwords: | |
60 ;; | |
61 ;; A password is required for each host/user pair. Ange-ftp reads passwords | |
62 ;; as needed. You can also specify a password with ange-ftp-set-passwd, or | |
63 ;; in a *valid* ~/.netrc file. | |
64 | |
65 ;; Passwords for user "anonymous": | |
66 ;; | |
67 ;; Passwords for the user "anonymous" (or "ftp") are handled | |
68 ;; specially. The variable `ange-ftp-generate-anonymous-password' | |
69 ;; controls what happens: if the value of this variable is a string, | |
70 ;; then this is used as the password; if non-nil (the default), then | |
71 ;; the value of `user-mail-address' is used; if nil then the user | |
72 ;; is prompted for a password as normal. | |
73 | |
74 ;; "Dumb" UNIX hosts: | |
75 ;; | |
76 ;; The FTP servers on some UNIX machines have problems if the 'ls' command is | |
77 ;; used. | |
78 ;; | |
79 ;; The routine ange-ftp-add-dumb-unix-host can be called to tell ange-ftp to | |
80 ;; limit itself to the DIR command and not 'ls' for a given UNIX host. Note | |
81 ;; that this change will take effect for the current GNU Emacs session only. | |
82 ;; See below for a discussion of non-UNIX hosts. If a large number of | |
83 ;; machines with similar hostnames have this problem then it is easier to set | |
84 ;; the value of ange-ftp-dumb-unix-host-regexp in your .emacs file. ange-ftp | |
85 ;; is unable to automatically recognize dumb unix hosts. | |
86 | |
87 ;; File name completion: | |
88 ;; | |
89 ;; Full file-name completion is supported on UNIX, VMS, CMS, and MTS hosts. | |
90 ;; To do filename completion, ange-ftp needs a listing from the remote host. | |
91 ;; Therefore, for very slow connections, it might not save any time. | |
92 | |
93 ;; FTP processes: | |
94 ;; | |
95 ;; When ange-ftp starts up an FTP process, it leaves it running for speed | |
96 ;; purposes. Some FTP servers will close the connection after a period of | |
97 ;; time, but ange-ftp should be able to quietly reconnect the next time that | |
98 ;; the process is needed. | |
99 ;; | |
100 ;; Killing the "*ftp user@host*" buffer also kills the ftp process. | |
101 ;; This should not cause ange-ftp any grief. | |
102 | |
103 ;; Binary file transfers: | |
104 ;; | |
105 ;; By default ange-ftp transfers files in ASCII mode. If a file being | |
106 ;; transferred matches the value of ange-ftp-binary-file-name-regexp then | |
107 ;; binary mode is used for that transfer. | |
108 | |
109 ;; Account passwords: | |
110 ;; | |
111 ;; Some FTP servers require an additional password which is sent by the | |
112 ;; ACCOUNT command. ange-ftp partially supports this by allowing the user to | |
113 ;; specify an account password by either calling ange-ftp-set-account, or by | |
114 ;; specifying an account token in the .netrc file. If the account password | |
115 ;; is set by either of these methods then ange-ftp will issue an ACCOUNT | |
116 ;; command upon starting the FTP process. | |
117 | |
118 ;; Preloading: | |
119 ;; | |
120 ;; ange-ftp can be preloaded, but must be put in the site-init.el file and | |
121 ;; not the site-load.el file in order for the documentation strings for the | |
122 ;; functions being overloaded to be available. | |
123 | |
124 ;; Status reports: | |
125 ;; | |
126 ;; Most ange-ftp commands that talk to the FTP process output a status | |
127 ;; message on what they are doing. In addition, ange-ftp can take advantage | |
128 ;; of the FTP client's HASH command to display the status of transferring | |
129 ;; files and listing directories. See the documentation for the variables | |
130 ;; ange-ftp-{ascii,binary}-hash-mark-size, ange-ftp-send-hash and | |
131 ;; ange-ftp-process-verbose for more details. | |
132 | |
133 ;; Gateways: | |
134 ;; | |
135 ;; Sometimes it is necessary for the FTP process to be run on a different | |
136 ;; machine than the machine running GNU Emacs. This can happen when the | |
137 ;; local machine has restrictions on what hosts it can access. | |
138 ;; | |
139 ;; ange-ftp has support for running the ftp process on a different (gateway) | |
140 ;; machine. The way it works is as follows: | |
141 ;; | |
142 ;; 1) Set the variable 'ange-ftp-gateway-host' to the name of a machine | |
143 ;; that doesn't have the access restrictions. | |
144 ;; | |
145 ;; 2) Set the variable 'ange-ftp-local-host-regexp' to a regular expression | |
146 ;; that matches hosts that can be contacted from running a local ftp | |
147 ;; process, but fails to match hosts that can't be accessed locally. For | |
148 ;; example: | |
149 ;; | |
150 ;; "\\.hp\\.com$\\|^[^.]*$" | |
151 ;; | |
152 ;; will match all hosts that are in the .hp.com domain, or don't have an | |
153 ;; explicit domain in their name, but will fail to match hosts with | |
154 ;; explicit domains or that are specified by their ip address. | |
155 ;; | |
156 ;; 3) Using NFS and symlinks, make sure that there is a shared directory with | |
157 ;; the *same* name between the local machine and the gateway machine. | |
158 ;; This directory is necessary for temporary files created by ange-ftp. | |
159 ;; | |
160 ;; 4) Set the variable 'ange-ftp-gateway-tmp-name-template' to the name of | |
161 ;; this directory plus an identifying filename prefix. For example: | |
162 ;; | |
163 ;; "/nfs/hplose/ange/ange-ftp" | |
164 ;; | |
165 ;; where /nfs/hplose/ange is a directory that is shared between the | |
166 ;; gateway machine and the local machine. | |
167 ;; | |
168 ;; The simplest way of getting a ftp process running on the gateway machine | |
169 ;; is if you can spawn a remote shell using either 'rsh' or 'remsh'. If you | |
170 ;; can't do this for some reason such as security then points 7 onwards will | |
171 ;; discuss an alternative approach. | |
172 ;; | |
173 ;; 5) Set the variable ange-ftp-gateway-program to the name of the remote | |
174 ;; shell process such as 'remsh' or 'rsh' if the default isn't correct. | |
175 ;; | |
176 ;; 6) Set the variable ange-ftp-gateway-program-interactive to nil if it | |
177 ;; isn't already. This tells ange-ftp that you are using a remote shell | |
178 ;; rather than logging in using telnet or rlogin. | |
179 ;; | |
180 ;; That should be all you need to allow ange-ftp to spawn a ftp process on | |
181 ;; the gateway machine. If you have to use telnet or rlogin to get to the | |
182 ;; gateway machine then follow the instructions below. | |
183 ;; | |
184 ;; 7) Set the variable ange-ftp-gateway-program to the name of the program | |
185 ;; that lets you log onto the gateway machine. This may be something like | |
186 ;; telnet or rlogin. | |
187 ;; | |
188 ;; 8) Set the variable ange-ftp-gateway-prompt-pattern to a regular | |
189 ;; expression that matches the prompt you get when you login to the | |
190 ;; gateway machine. Be very specific here; this regexp must not match | |
191 ;; *anything* in your login banner except this prompt. | |
192 ;; shell-prompt-pattern is far too general as it appears to match some | |
193 ;; login banners from Sun machines. For example: | |
194 ;; | |
195 ;; "^$*$ *" | |
196 ;; | |
197 ;; 9) Set the variable ange-ftp-gateway-program-interactive to 't' to let | |
198 ;; ange-ftp know that it has to "hand-hold" the login to the gateway | |
199 ;; machine. | |
200 ;; | |
201 ;; 10) Set the variable ange-ftp-gateway-setup-term-command to a UNIX command | |
202 ;; that will put the pty connected to the gateway machine into a | |
203 ;; no-echoing mode, and will strip off carriage-returns from output from | |
204 ;; the gateway machine. For example: | |
205 ;; | |
206 ;; "stty -onlcr -echo" | |
207 ;; | |
208 ;; will work on HP-UX machines, whereas: | |
209 ;; | |
210 ;; "stty -echo nl" | |
211 ;; | |
212 ;; appears to work for some Sun machines. | |
213 ;; | |
214 ;; That's all there is to it. | |
215 | |
216 ;; Smart gateways: | |
217 ;; | |
218 ;; If you have a "smart" ftp program that allows you to issue commands like | |
219 ;; "USER foo@bar" which do nice proxy things, then look at the variables | |
220 ;; ange-ftp-smart-gateway and ange-ftp-smart-gateway-port. | |
221 ;; | |
222 ;; Otherwise, if there is an alternate ftp program that implements proxy in | |
223 ;; a transparent way (i.e. w/o specifying the proxy host), that will | |
224 ;; connect you directly to the desired destination host: | |
225 ;; Set ange-ftp-gateway-ftp-program-name to that program's name. | |
226 ;; Set ange-ftp-local-host-regexp to a value as stated earlier on. | |
227 ;; Leave ange-ftp-gateway-host set to nil. | |
228 ;; Set ange-ftp-smart-gateway to t. | |
229 | |
230 ;; Tips for using ange-ftp: | |
231 ;; | |
232 ;; 1. For dired to work on a host which marks symlinks with a trailing @ in | |
233 ;; an ls -alF listing, you need to (setq dired-ls-F-marks-symlinks t). | |
234 ;; Most UNIX systems do not do this, but ULTRIX does. If you think that | |
235 ;; there is a chance you might connect to an ULTRIX machine (such as | |
236 ;; prep.ai.mit.edu), then set this variable accordingly. This will have | |
237 ;; the side effect that dired will have problems with symlinks whose names | |
238 ;; end in an @. If you get yourself into this situation then editing | |
239 ;; dired's ls-switches to remove "F", will temporarily fix things. | |
240 ;; | |
241 ;; 2. If you know that you are connecting to a certain non-UNIX machine | |
242 ;; frequently, and ange-ftp seems to be unable to guess its host-type, | |
243 ;; then setting the appropriate host-type regexp | |
244 ;; (ange-ftp-vms-host-regexp, ange-ftp-mts-host-regexp, or | |
245 ;; ange-ftp-cms-host-regexp) accordingly should help. Also, please report | |
246 ;; ange-ftp's inability to recognize the host-type as a bug. | |
247 ;; | |
248 ;; 3. For slow connections, you might get "listing unreadable" error | |
249 ;; messages, or get an empty buffer for a file that you know has something | |
250 ;; in it. The solution is to increase the value of ange-ftp-retry-time. | |
251 ;; Its default value is 5 which is plenty for reasonable connections. | |
252 ;; However, for some transatlantic connections I set this to 20. | |
253 ;; | |
254 ;; 4. Beware of compressing files on non-UNIX hosts. Ange-ftp will do it by | |
255 ;; copying the file to the local machine, compressing it there, and then | |
256 ;; sending it back. Binary file transfers between machines of different | |
257 ;; architectures can be a risky business. Test things out first on some | |
258 ;; test files. See "Bugs" below. Also, note that ange-ftp copies files by | |
259 ;; moving them through the local machine. Again, be careful when doing | |
260 ;; this with binary files on non-Unix machines. | |
261 ;; | |
262 ;; 5. Beware that dired over ftp will use your setting of dired-no-confirm | |
263 ;; (list of dired commands for which confirmation is not asked). You | |
264 ;; might want to reconsider your setting of this variable, because you | |
265 ;; might want confirmation for more commands on remote direds than on | |
266 ;; local direds. For example, I strongly recommend that you not include | |
267 ;; compress and uncompress in this list. If there is enough demand it | |
268 ;; might be a good idea to have an alist ange-ftp-dired-no-confirm of | |
269 ;; pairs ( TYPE . LIST ), where TYPE is an operating system type and LIST | |
270 ;; is a list of commands for which confirmation would be suppressed. Then | |
271 ;; remote dired listings would take their (buffer-local) value of | |
272 ;; dired-no-confirm from this alist. Who votes for this? | |
273 | |
274 ;; --------------------------------------------------------------------- | |
275 ;; Non-UNIX support: | |
276 ;; --------------------------------------------------------------------- | |
277 | |
278 ;; VMS support: | |
279 ;; | |
280 ;; Ange-ftp has full support for VMS hosts. It | |
281 ;; should be able to automatically recognize any VMS machine. However, if it | |
282 ;; fails to do this, you can use the command ange-ftp-add-vms-host. As well, | |
283 ;; you can set the variable ange-ftp-vms-host-regexp in your .emacs file. We | |
284 ;; would be grateful if you would report any failures to automatically | |
285 ;; recognize a VMS host as a bug. | |
286 ;; | |
287 ;; Filename Syntax: | |
288 ;; | |
289 ;; For ease of *implementation*, the user enters the VMS filename syntax in a | |
290 ;; UNIX-y way. For example: | |
291 ;; PUB$:[ANONYMOUS.SDSCPUB.NEXT]README.TXT;1 | |
292 ;; would be entered as: | |
293 ;; /PUB$$:/ANONYMOUS/SDSCPUB/NEXT/README.TXT;1 | |
294 ;; i.e. to log in as anonymous on ymir.claremont.edu and grab the file: | |
295 ;; [.CSV.POLICY]RULES.MEM | |
296 ;; you would type: | |
297 ;; C-x C-f /anonymous@ymir.claremont.edu:CSV/POLICY/RULES.MEM | |
298 ;; | |
80044
b62f4b92bc13
*** empty log message ***
Juanma Barranquero <lekktu@gmail.com>
parents:
79714
diff
changeset
|
299 ;; A valid VMS filename is of the form: FILE.TYPE;## |
28210 | 300 ;; where FILE can be up to 39 characters |
301 ;; TYPE can be up to 39 characters | |
302 ;; ## is a version number (an integer between 1 and 32,767) | |
303 ;; Valid characters in FILE and TYPE are A-Z 0-9 _ - $ | |
304 ;; $ cannot begin a filename, and - cannot be used as the first or last | |
305 ;; character. | |
306 ;; | |
307 ;; Tips: | |
308 ;; 1. Although VMS is not case sensitive, EMACS running under UNIX is. | |
309 ;; Therefore, to access a VMS file, you must enter the filename with upper | |
310 ;; case letters. | |
311 ;; 2. To access the latest version of file under VMS, you use the filename | |
312 ;; without the ";" and version number. You should always edit the latest | |
313 ;; version of a file. If you want to edit an earlier version, copy it to a | |
314 ;; new file first. This has nothing to do with ange-ftp, but is simply | |
315 ;; good VMS operating practice. Therefore, to edit FILE.TXT;3 (say 3 is | |
316 ;; latest version), do C-x C-f /ymir.claremont.edu:FILE.TXT. If you | |
317 ;; inadvertently do C-x C-f /ymir.claremont.edu:FILE.TXT;3, you will find | |
318 ;; that VMS will not allow you to save the file because it will refuse to | |
319 ;; overwrite FILE.TXT;3, but instead will want to create FILE.TXT;4, and | |
320 ;; attach the buffer to this file. To get out of this situation, M-x | |
321 ;; write-file /ymir.claremont.edu:FILE.TXT will attach the buffer to | |
322 ;; latest version of the file. For this reason, in dired "f" | |
323 ;; (dired-find-file), always loads the file sans version, whereas "v", | |
324 ;; (dired-view-file), always loads the explicit version number. The | |
325 ;; reasoning being that it reasonable to view old versions of a file, but | |
326 ;; not to edit them. | |
327 ;; 3. EMACS has a feature in which it does environment variable substitution | |
328 ;; in filenames. Therefore, to enter a $ in a filename, you must quote it | |
329 ;; by typing $$. | |
330 | |
331 ;; MTS support: | |
332 ;; | |
333 ;; Ange-ftp has full support for hosts running | |
334 ;; the Michigan terminal system. It should be able to automatically | |
335 ;; recognize any MTS machine. However, if it fails to do this, you can use | |
336 ;; the command ange-ftp-add-mts-host. As well, you can set the variable | |
337 ;; ange-ftp-mts-host-regexp in your .emacs file. We would be grateful if you | |
338 ;; would report any failures to automatically recognize a MTS host as a bug. | |
339 ;; | |
340 ;; Filename syntax: | |
30459 | 341 ;; |
28210 | 342 ;; MTS filenames are entered in a UNIX-y way. For example, if your account |
343 ;; was YYYY, the file FILE in the account XXXX: on mtsg.ubc.ca would be | |
344 ;; entered as | |
345 ;; /YYYY@mtsg.ubc.ca:/XXXX:/FILE | |
346 ;; In other words, MTS accounts are treated as UNIX directories. Of course, | |
347 ;; to access a file in another account, you must have access permission for | |
348 ;; it. If FILE were in your own account, then you could enter it in a | |
349 ;; relative name fashion as | |
350 ;; /YYYY@mtsg.ubc.ca:FILE | |
351 ;; MTS filenames can be up to 12 characters. Like UNIX, the structure of the | |
352 ;; filename does not contain a TYPE (i.e. it can have as many "."'s as you | |
353 ;; like.) MTS filenames are always in upper case, and hence be sure to enter | |
354 ;; them as such! MTS is not case sensitive, but an EMACS running under UNIX | |
355 ;; is. | |
356 | |
357 ;; CMS support: | |
30459 | 358 ;; |
28210 | 359 ;; Ange-ftp has full support for hosts running |
360 ;; CMS. It should be able to automatically recognize any CMS machine. | |
361 ;; However, if it fails to do this, you can use the command | |
362 ;; ange-ftp-add-cms-host. As well, you can set the variable | |
363 ;; ange-ftp-cms-host-regexp in your .emacs file. We would be grateful if you | |
364 ;; would report any failures to automatically recognize a CMS host as a bug. | |
30459 | 365 ;; |
28210 | 366 ;; Filename syntax: |
367 ;; | |
368 ;; CMS filenames are entered in a UNIX-y way. In otherwords, minidisks are | |
369 ;; treated as UNIX directories. For example to access the file READ.ME in | |
370 ;; minidisk *.311 on cuvmb.cc.columbia.edu, you would enter | |
371 ;; /anonymous@cuvmb.cc.columbia.edu:/*.311/READ.ME | |
372 ;; If *.301 is the default minidisk for this account, you could access | |
373 ;; FOO.BAR on this minidisk as | |
374 ;; /anonymous@cuvmb.cc.columbia.edu:FOO.BAR | |
375 ;; CMS filenames are of the form FILE.TYPE, where both FILE and TYPE can be | |
376 ;; up to 8 characters. Again, beware that CMS filenames are always upper | |
377 ;; case, and hence must be entered as such. | |
378 ;; | |
379 ;; Tips: | |
380 ;; 1. CMS machines, with the exception of anonymous accounts, nearly always | |
381 ;; need an account password. To have ange-ftp send an account password, | |
382 ;; you can either include it in your .netrc file, or use | |
383 ;; ange-ftp-set-account. | |
384 ;; 2. Ange-ftp cannot send "write passwords" for a minidisk. Hopefully, we | |
385 ;; can fix this. | |
386 ;; | |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
387 ;; BS2000 support: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
388 ;; |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
389 ;; Ange-ftp has full support for BS2000 hosts. It should be able to |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
390 ;; automatically recognize any BS2000 machine. However, if it fails to |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
391 ;; do this, you can use the command ange-ftp-add-bs2000-host. As well, |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
392 ;; you can set the variable ange-ftp-bs2000-host-regexp in your .emacs |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
393 ;; file. We would be grateful if you would report any failures to auto- |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
394 ;; matically recognize a BS2000 host as a bug. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
395 ;; |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
396 ;; If you want to access the POSIX subsystem on BS2000 you MUST use |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
397 ;; command ange-ftp-add-bs2000-posix-host for that particular |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
398 ;; hostname. ange-ftp can't decide if you want to access the native |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
399 ;; filesystem or the POSIX filesystem, so it accesses the native |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
400 ;; filesystem by default. And if you have an ASCII filesystem in |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
401 ;; your BS2000 POSIX subsystem you must use |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
402 ;; ange-ftp-binary-file-name-regexp to access its files. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
403 ;; |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
404 ;; Filename Syntax: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
405 ;; |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
406 ;; For ease of *implementation*, the user enters the BS2000 filename |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
407 ;; syntax in a UNIX-y way. For example: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
408 ;; :PUB:$PUBLIC.ANONYMOUS.SDSCPUB.NEXT.README.TXT |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
409 ;; would be entered as: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
410 ;; /:PUB:/$$PUBLIC/ANONYMOUS.SDSCPUB.NEXT.README.TXT |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
411 ;; You don't have to type pubset and account, if they have default values, |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
412 ;; i.e. to log in as anonymous on bs2000.anywhere.com and grab the file |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
413 ;; IMPORTANT.TEXT.ON.BS2000 on the default pubset X on userid PUBLIC |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
414 ;; (there are only 8 characters in a valid username), you could type: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
415 ;; C-x C-f /public@bs2000.anywhere.com:/IMPORTANT.TEXT.ON.BS2000 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
416 ;; or |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
417 ;; C-x C-f /anonym@bs2000.anywhere.com:/:X:/$$PUBLIC/IMPORTANT.TEXT.ON.BS2000 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
418 ;; |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
419 ;; If X is not your default pubset, you could add it as 'subdirectory' (BS2000 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
420 ;; has a flat architecture) with the command |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
421 ;; (setq ange-ftp-bs2000-additional-pubsets '(":X:")) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
422 ;; and then you could type: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
423 ;; C-x C-f /anonym@bs2000.anywhere.com:/:X:/IMPORTANT.TEXT.ON.BS2000 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
424 ;; |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
425 ;; Valid characters in an BS2000 filename are A-Z 0-9 $ # @ . - |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
426 ;; If the first character in a filename is # or @, this is replaced with |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
427 ;; ange-ftp-bs2000-special-prefix because names starting with # or @ |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
428 ;; are reserved for temporary files. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
429 ;; This is especially important for auto-save files. |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
47575
diff
changeset
|
430 ;; Valid file generations are ending with ([+|-|*]0-9...) . |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
431 ;; File generations are not supported yet! |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
432 ;; A filename must at least contain one character (A-Z) and cannot be longer |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
433 ;; than 41 characters. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
434 ;; |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
435 ;; Tips: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
436 ;; 1. Although BS2000 is not case sensitive, EMACS running under UNIX is. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
437 ;; Therefore, to access a BS2000 file, you must enter the filename with |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
438 ;; upper case letters. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
439 ;; 2. EMACS has a feature in which it does environment variable substitution |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
440 ;; in filenames. Therefore, to enter a $ in a filename, you must quote it |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
441 ;; by typing $$. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
442 ;; 3. BS2000 machines, with the exception of anonymous accounts, nearly |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
443 ;; always need an account password. To have ange-ftp send an account |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
444 ;; password, you can either include it in your .netrc file, or use |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
445 ;; ange-ftp-set-account. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
446 ;; |
28210 | 447 ;; ------------------------------------------------------------------ |
448 ;; Bugs: | |
449 ;; ------------------------------------------------------------------ | |
30459 | 450 ;; |
28210 | 451 ;; 1. Umask problems: |
452 ;; Be warned that files created by using ange-ftp will take account of the | |
453 ;; umask of the ftp daemon process rather than the umask of the creating | |
454 ;; user. This is particularly important when logging in as the root user. | |
455 ;; The way that I tighten up the ftp daemon's umask under HP-UX is to make | |
456 ;; sure that the umask is changed to 027 before I spawn /etc/inetd. I | |
457 ;; suspect that there is something similar on other systems. | |
458 ;; | |
459 ;; 2. Some combinations of FTP clients and servers break and get out of sync | |
460 ;; when asked to list a non-existent directory. Some of the ai.mit.edu | |
461 ;; machines cause this problem for some FTP clients. Using | |
462 ;; ange-ftp-kill-ftp-process can restart the ftp process, which | |
463 ;; should get things back in sync. | |
464 ;; | |
465 ;; 3. Ange-ftp does not check to make sure that when creating a new file, | |
466 ;; you provide a valid filename for the remote operating system. | |
467 ;; If you do not, then the remote FTP server will most likely | |
468 ;; translate your filename in some way. This may cause ange-ftp to | |
469 ;; get confused about what exactly is the name of the file. The | |
470 ;; most common causes of this are using lower case filenames on systems | |
471 ;; which support only upper case, and using filenames which are too | |
472 ;; long. | |
473 ;; | |
474 ;; 4. Null (blank) passwords confuse both ange-ftp and some FTP daemons. | |
475 ;; | |
476 ;; 5. Ange-ftp likes to use pty's to talk to its FTP processes. If GNU Emacs | |
477 ;; for some reason creates a FTP process that only talks via pipes then | |
478 ;; ange-ftp won't be getting the information it requires at the time that | |
479 ;; it wants it since pipes flush at different times to pty's. One | |
480 ;; disgusting way around this problem is to talk to the FTP process via | |
481 ;; rlogin which does the 'right' things with pty's. | |
482 ;; | |
483 ;; 6. For CMS support, we send too many cd's. Since cd's are cheap, I haven't | |
484 ;; worried about this too much. Eventually, we should have some caching | |
485 ;; of the current minidisk. | |
30459 | 486 ;; |
28210 | 487 ;; 7. Some CMS machines do not assign a default minidisk when you ftp them as |
488 ;; anonymous. It is then necessary to guess a valid minidisk name, and cd | |
489 ;; to it. This is (understandably) beyond ange-ftp. | |
490 ;; | |
491 ;; 8. Remote to remote copying of files on non-Unix machines can be risky. | |
492 ;; Depending on the variable ange-ftp-binary-file-name-regexp, ange-ftp | |
493 ;; will use binary mode for the copy. Between systems of different | |
494 ;; architecture, this still may not be enough to guarantee the integrity | |
495 ;; of binary files. Binary file transfers from VMS machines are | |
496 ;; particularly problematical. Should ange-ftp-binary-file-name-regexp be | |
497 ;; an alist of OS type, regexp pairs? | |
498 ;; | |
499 ;; 9. The code to do compression of files over ftp is not as careful as it | |
500 ;; should be. It deletes the old remote version of the file, before | |
501 ;; actually checking if the local to remote transfer of the compressed | |
502 ;; file succeeds. Of course to delete the original version of the file | |
503 ;; after transferring the compressed version back is also dangerous, | |
504 ;; because some OS's have severe restrictions on the length of filenames, | |
505 ;; and when the compressed version is copied back the "-Z" or ".Z" may be | |
506 ;; truncated. Then, ange-ftp would delete the only remaining version of | |
507 ;; the file. Maybe ange-ftp should make backups when it compresses files | |
508 ;; (of course, the backup "~" could also be truncated off, sigh...). | |
509 ;; Suggestions? | |
510 ;; | |
511 ;; 10. If a dir listing is attempted for an empty directory on (at least | |
512 ;; some) VMS hosts, an ftp error is given. This is really an ftp bug, and | |
513 ;; I don't know how to get ange-ftp work to around it. | |
514 ;; | |
515 ;; 11. Bombs on filenames that start with a space. Deals well with filenames | |
516 ;; containing spaces, but beware that the remote ftpd may not like them | |
517 ;; much. | |
518 ;; | |
519 ;; 12. The dired support for non-Unix-like systems does not currently work. | |
520 ;; It needs to be reimplemented by modifying the parse-...-listing | |
521 ;; functions to convert the directory listing to ls -l format. | |
30459 | 522 ;; |
28210 | 523 ;; 13. The famous @ bug. As mentioned above in TIPS, ULTRIX marks symlinks |
524 ;; with a trailing @ in a ls -alF listing. In order to account for this | |
525 ;; ange-ftp looks to chop trailing @'s off of symlink names when it is | |
526 ;; parsing a listing with the F switch. This will cause ange-ftp to | |
527 ;; incorrectly get the name of a symlink on a non-ULTRIX host if its name | |
528 ;; ends in an @. ange-ftp will correct itself if you take F out of the | |
529 ;; dired ls switches (C-u s will allow you to edit the switches). The | |
530 ;; dired buffer will be automatically reverted, which will allow ange-ftp | |
531 ;; to fix its files hashtable. A cookie to anyone who can think of a | |
532 ;; fast, sure-fire way to recognize ULTRIX over ftp. | |
533 | |
534 ;; If you find any bugs or problems with this package, PLEASE either e-mail | |
535 ;; the above author, or send a message to the ange-ftp-lovers mailing list | |
536 ;; below. Ideas and constructive comments are especially welcome. | |
537 | |
538 ;; ange-ftp-lovers: | |
539 ;; | |
540 ;; ange-ftp has its own mailing list modestly called ange-ftp-lovers. All | |
541 ;; users of ange-ftp are welcome to subscribe (see below) and to discuss | |
542 ;; aspects of ange-ftp. New versions of ange-ftp are posted periodically to | |
543 ;; the mailing list. | |
544 | |
545 ;; To [un]subscribe to ange-ftp-lovers, or to report mailer problems with the | |
546 ;; list, please mail one of the following addresses: | |
547 ;; | |
46811
98f32ab61c61
(ange-ftp-smart-gateway): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
46355
diff
changeset
|
548 ;; ange-ftp-lovers-request@hplb.hpl.hp.com |
28210 | 549 ;; |
550 ;; Please don't forget the -request part. | |
551 ;; | |
552 ;; For mail to be posted directly to ange-ftp-lovers, send to one of the | |
553 ;; following addresses: | |
30459 | 554 ;; |
46811
98f32ab61c61
(ange-ftp-smart-gateway): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
46355
diff
changeset
|
555 ;; ange-ftp-lovers@hplb.hpl.hp.com |
28210 | 556 ;; |
557 ;; Alternatively, there is a mailing list that only gets announcements of new | |
558 ;; ange-ftp releases. This is called ange-ftp-lovers-announce, and can be | |
559 ;; subscribed to by e-mailing to the -request address as above. Please make | |
560 ;; it clear in the request which mailing list you wish to join. | |
561 | |
562 ;; ----------------------------------------------------------- | |
563 ;; Technical information on this package: | |
564 ;; ----------------------------------------------------------- | |
565 | |
566 ;; ange-ftp works by putting a handler on file-name-handler-alist | |
567 ;; which is called by many primitives, and a few non-primitives, | |
568 ;; whenever they see a file name of the appropriate sort. | |
569 | |
570 ;; Checklist for adding non-UNIX support for TYPE | |
30459 | 571 ;; |
28210 | 572 ;; The following functions may need TYPE versions: |
573 ;; (not all functions will be needed for every OS) | |
574 ;; | |
575 ;; ange-ftp-fix-name-for-TYPE | |
576 ;; ange-ftp-fix-dir-name-for-TYPE | |
577 ;; ange-ftp-TYPE-host | |
578 ;; ange-ftp-TYPE-add-host | |
579 ;; ange-ftp-parse-TYPE-listing | |
580 ;; ange-ftp-TYPE-delete-file-entry | |
581 ;; ange-ftp-TYPE-add-file-entry | |
582 ;; ange-ftp-TYPE-file-name-as-directory | |
583 ;; ange-ftp-TYPE-make-compressed-filename | |
584 ;; ange-ftp-TYPE-file-name-sans-versions | |
585 ;; | |
586 ;; Variables: | |
587 ;; | |
588 ;; ange-ftp-TYPE-host-regexp | |
589 ;; May need to add TYPE to ange-ftp-dumb-host-types | |
590 ;; | |
591 ;; Check the following functions for OS dependent coding: | |
592 ;; | |
593 ;; ange-ftp-host-type | |
594 ;; ange-ftp-guess-host-type | |
595 ;; ange-ftp-allow-child-lookup | |
596 | |
597 ;; Host type conventions: | |
598 ;; | |
599 ;; The function ange-ftp-host-type and the variable ange-ftp-dired-host-type | |
600 ;; (mostly) follow the following conventions for remote host types. At | |
601 ;; least, I think that future code should try to follow these conventions, | |
602 ;; and the current code should eventually be made compliant. | |
603 ;; | |
604 ;; nil = local host type, whatever that is (probably unix). | |
605 ;; Think nil as in "not a remote host". This value is used by | |
606 ;; ange-ftp-dired-host-type for local buffers. | |
607 ;; | |
608 ;; t = a remote host of unknown type. Think t as in true, it's remote. | |
609 ;; Currently, `unix' is used as the default remote host type. | |
610 ;; Maybe we should use t. | |
611 ;; | |
612 ;; TYPE = a remote host of TYPE type. | |
613 ;; | |
614 ;; TYPE:LIST = a remote host of TYPE type, using a specialized ftp listing | |
615 ;; program called list. This is currently only used for Unix | |
616 ;; dl (descriptive listings), when ange-ftp-dired-host-type | |
617 ;; is set to `unix:dl'. | |
618 | |
619 ;; Bug report codes: | |
620 ;; | |
621 ;; Because of their naive faith in this code, there are certain situations | |
622 ;; which the writers of this program believe could never happen. However, | |
623 ;; being realists they have put calls to `error' in the program at these | |
624 ;; points. These errors provide a code, which is an integer, greater than 1. | |
625 ;; To aid debugging. the error codes, and the functions in which they reside | |
626 ;; are listed below. | |
30459 | 627 ;; |
28210 | 628 ;; 1: See ange-ftp-ls |
629 ;; | |
630 | |
631 ;; ----------------------------------------------------------- | |
632 ;; Hall of fame: | |
633 ;; ----------------------------------------------------------- | |
30459 | 634 ;; |
28210 | 635 ;; Thanks to Roland McGrath for improving the filename syntax handling, |
636 ;; for suggesting many enhancements and for numerous cleanups to the code. | |
637 ;; | |
638 ;; Thanks to Jamie Zawinski for bugfixes and for ideas such as gateways. | |
639 ;; | |
640 ;; Thanks to Ken Laprade for improved .netrc parsing, password reading, and | |
641 ;; dired / shell auto-loading. | |
642 ;; | |
643 ;; Thanks to Sebastian Kremer for dired support and for many ideas and | |
644 ;; bugfixes. | |
645 ;; | |
646 ;; Thanks to Joe Wells for bugfixes, the original non-UNIX system support, | |
647 ;; VOS support, and hostname completion. | |
648 ;; | |
649 ;; Thanks to Nakagawa Takayuki for many good ideas, filename-completion, help | |
650 ;; with file-name expansion, efficiency worries, stylistic concerns and many | |
651 ;; bugfixes. | |
652 ;; | |
653 ;; Thanks to Sandy Rutherford who re-wrote most of ange-ftp to support VMS, | |
654 ;; MTS, CMS and UNIX-dls. Sandy also added dired-support for non-UNIX OS and | |
655 ;; auto-recognition of the host type. | |
656 ;; | |
657 ;; Thanks to Dave Smith who wrote the info file for ange-ftp. | |
658 ;; | |
659 ;; Finally, thanks to Keith Waclena, Mark D. Baushke, Terence Kelleher, Ping | |
660 ;; Zhou, Edward Vielmetti, Jack Repenning, Mike Balenger, Todd Kaufmann, | |
661 ;; Kjetil Svarstad, Tom Wurgler, Linus Tolke, Niko Makila, Carl Edman, Bill | |
662 ;; Trost, Dave Brennan, Dan Jacobson, Andy Scott, Steve Anderson, Sanjay | |
663 ;; Mathur, the folks on the ange-ftp-lovers mailing list and many others | |
664 ;; whose names I've forgotten who have helped to debug and fix problems with | |
665 ;; ange-ftp.el. | |
666 | |
667 ;;; Code: | |
668 | |
669 (require 'comint) | |
670 ;; Silence compiler: | |
671 (eval-when-compile | |
672 (require 'dired) | |
673 (defvar comint-last-output-start nil) | |
674 (defvar comint-last-input-start nil) | |
675 (defvar comint-last-input-end nil)) | |
676 | |
677 ;;;; ------------------------------------------------------------ | |
678 ;;;; User customization variables. | |
679 ;;;; ------------------------------------------------------------ | |
680 | |
681 (defgroup ange-ftp nil | |
30459 | 682 "Accessing remote files and directories using FTP |
28210 | 683 made as simple and transparent as possible." |
684 :group 'files | |
685 :prefix "ange-ftp-") | |
686 | |
687 (defcustom ange-ftp-name-format | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
688 '("\\`/\\(\\([^/:]*\\)@\\)?\\([^@/:]*[^@/:.]\\):\\(.*\\)" . (3 2 4)) |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
689 "Format of a fully expanded remote file name. |
28210 | 690 |
691 This is a list of the form \(REGEXP HOST USER NAME\), | |
692 where REGEXP is a regular expression matching | |
693 the full remote name, and HOST, USER, and NAME are the numbers of | |
694 parenthesized expressions in REGEXP for the components (in that order)." | |
695 :group 'ange-ftp | |
53388
29c86aab2fa2
(ange-ftp-name-format): Allow USER to contain
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53351
diff
changeset
|
696 :type '(list (regexp :tag "Name regexp") |
28210 | 697 (integer :tag "Host group") |
698 (integer :tag "User group") | |
699 (integer :tag "Name group"))) | |
700 | |
701 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of | |
702 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs. | |
703 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out. | |
704 | |
705 (defvar ange-ftp-multi-msgs | |
102443
07f9480f83e6
(ange-ftp-multi-msgs): Add 150-.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102225
diff
changeset
|
706 "^150-\\|^220-\\|^230-\\|^226\\|^25.-\\|^221-\\|^200-\\|^331-\\|^4[25]1-\\|^530-" |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
707 "*Regular expression matching the start of a multiline FTP reply.") |
28210 | 708 |
709 (defvar ange-ftp-good-msgs | |
710 "^220 \\|^230 \\|^226 \\|^25. \\|^221 \\|^200 \\|^[Hh]ash mark" | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
711 "*Regular expression matching FTP \"success\" messages.") |
28210 | 712 |
713 ;; CMS and the odd VMS machine say 200 Port rather than 200 PORT. | |
714 ;; Also CMS machines use a multiline 550- reply to say that you | |
715 ;; don't have write permission. ange-ftp gets into multi-line skip | |
716 ;; mode and hangs. Have it ignore 550- instead. It will then barf | |
717 ;; when it gets the 550 line, as it should. | |
718 | |
28892
19ae39682b38
(ange-ftp-skip-msgs): Include 500 code.for
Gerd Moellmann <gerd@gnu.org>
parents:
28210
diff
changeset
|
719 ;; RFC2228 "FTP Security Extensions" defines extensions to the FTP |
19ae39682b38
(ange-ftp-skip-msgs): Include 500 code.for
Gerd Moellmann <gerd@gnu.org>
parents:
28210
diff
changeset
|
720 ;; protocol which involve the client requesting particular |
19ae39682b38
(ange-ftp-skip-msgs): Include 500 code.for
Gerd Moellmann <gerd@gnu.org>
parents:
28210
diff
changeset
|
721 ;; authentication methods (typically) at connection establishment. Non |
19ae39682b38
(ange-ftp-skip-msgs): Include 500 code.for
Gerd Moellmann <gerd@gnu.org>
parents:
28210
diff
changeset
|
722 ;; security-aware FTP servers should respond to this with a 500 code, |
19ae39682b38
(ange-ftp-skip-msgs): Include 500 code.for
Gerd Moellmann <gerd@gnu.org>
parents:
28210
diff
changeset
|
723 ;; which we ignore. |
28210 | 724 (defcustom ange-ftp-skip-msgs |
725 (concat "^200 \\(PORT\\|Port\\) \\|^331 \\|^150 \\|^350 \\|^[0-9]+ bytes \\|" | |
726 "^Connected \\|^$\\|^Remote system\\|^Using\\|^ \\|Password:\\|" | |
727 "^Data connection \\|" | |
728 "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye\\|" | |
28892
19ae39682b38
(ange-ftp-skip-msgs): Include 500 code.for
Gerd Moellmann <gerd@gnu.org>
parents:
28210
diff
changeset
|
729 "^500 .*AUTH \\(KERBEROS\\|GSSAPI\\)\\|^KERBEROS\\|" |
47068
9026b0749c9e
(ange-ftp-skip-msgs): Skip the 530 response
Richard M. Stallman <rms@gnu.org>
parents:
46892
diff
changeset
|
730 "^530 Please login with USER and PASS\\|" ; non kerberised vsFTPd |
102715
55824e6d083c
* net/ange-ftp.el (ange-ftp-skip-msgs): Add 534.
Michael Albinus <michael.albinus@gmx.de>
parents:
102443
diff
changeset
|
731 "^534 Kerberos Authentication not enabled\\|" |
39533
75cd77e6f1d5
(ange-ftp-skip-msgs): Add 227 and 228 for Long
Andreas Schwab <schwab@suse.de>
parents:
38412
diff
changeset
|
732 "^22[789] .*[Pp]assive\\|^200 EPRT\\|^500 .*EPRT") |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
733 "Regular expression matching FTP messages that can be ignored." |
28210 | 734 :group 'ange-ftp |
735 :type 'regexp) | |
736 | |
737 (defcustom ange-ftp-fatal-msgs | |
738 (concat "^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|" | |
739 "^No control connection\\|unknown host\\|^lost connection") | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
740 "Regular expression matching FTP messages that indicate serious errors. |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
741 |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
742 These mean that the FTP process should be (or already has been) killed." |
28210 | 743 :group 'ange-ftp |
744 :type 'regexp) | |
745 | |
64667
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
746 (defcustom ange-ftp-potential-error-msgs |
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
747 ;; On Mac OS X we sometimes get things like: |
64701
34bd8e434dd7
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64667
diff
changeset
|
748 ;; |
64667
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
749 ;; ftp> open ftp.nluug.nl |
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
750 ;; Trying 2001:610:1:80aa:192:87:102:36... |
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
751 ;; ftp: connect to address 2001:610:1:80aa:192:87:102:36: No route to host |
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
752 ;; Trying 192.87.102.36... |
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
753 ;; Connected to ftp.nluug.nl. |
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
754 "^ftp: connect to address .*: No route to host" |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
755 "Regular expression matching FTP messages that can indicate serious errors. |
64667
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
756 These mean that something went wrong, but they may be followed by more |
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
757 messages indicating that the error was somehow corrected." |
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
758 :group 'ange-ftp |
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
759 :type 'regexp) |
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
760 |
28210 | 761 (defcustom ange-ftp-gateway-fatal-msgs |
762 "No route to host\\|Connection closed\\|No such host\\|Login incorrect" | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
763 "Regular expression matching login failure messages from rlogin/telnet." |
28210 | 764 :group 'ange-ftp |
765 :type 'regexp) | |
766 | |
767 (defcustom ange-ftp-xfer-size-msgs | |
768 "^150 .* connection for .* (\\([0-9]+\\) bytes)" | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
769 "Regular expression used to determine the number of bytes in a FTP transfer." |
28210 | 770 :group 'ange-ftp |
771 :type 'regexp) | |
772 | |
30459 | 773 (defcustom ange-ftp-tmp-name-template |
28210 | 774 (expand-file-name "ange-ftp" temporary-file-directory) |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
775 "Template used to create temporary files." |
28210 | 776 :group 'ange-ftp |
777 :type 'directory) | |
778 | |
779 (defcustom ange-ftp-gateway-tmp-name-template "/tmp/ange-ftp" | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
780 "Template used to create temporary files when FTP-ing through a gateway. |
28210 | 781 |
782 Files starting with this prefix need to be accessible from BOTH the local | |
783 machine and the gateway machine, and need to have the SAME name on both | |
784 machines, that is, /tmp is probably NOT what you want, since that is rarely | |
785 cross-mounted." | |
786 :group 'ange-ftp | |
787 :type 'directory) | |
788 | |
789 (defcustom ange-ftp-netrc-filename "~/.netrc" | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
790 "File in .netrc format to search for passwords." |
28210 | 791 :group 'ange-ftp |
792 :type 'file) | |
793 | |
794 (defcustom ange-ftp-disable-netrc-security-check (eq system-type 'windows-nt) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
795 "If non-nil avoid checking permissions on the .netrc file." |
28210 | 796 :group 'ange-ftp |
797 :type 'boolean) | |
798 | |
799 (defcustom ange-ftp-default-user nil | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
800 "User name to use when none is specified in a file name. |
28210 | 801 |
802 If non-nil but not a string, you are prompted for the name. | |
803 If nil, the value of `ange-ftp-netrc-default-user' is used. | |
804 If that is nil too, then your login name is used. | |
805 | |
806 Once a connection to a given host has been initiated, the user name | |
807 and password information for that host are cached and re-used by | |
808 ange-ftp. Use \\[ange-ftp-set-user] to change the cached values, | |
809 since setting `ange-ftp-default-user' directly does not affect | |
810 the cached information." | |
811 :group 'ange-ftp | |
812 :type '(choice (const :tag "Default" nil) | |
813 string | |
814 (other :tag "Prompt" t))) | |
815 | |
816 (defcustom ange-ftp-netrc-default-user nil | |
817 "Alternate default user name to use when none is specified. | |
818 | |
819 This variable is set from the `default' command in your `.netrc' file, | |
820 if there is one." | |
821 :group 'ange-ftp | |
822 :type '(choice (const :tag "Default" nil) | |
823 string)) | |
824 | |
825 (defcustom ange-ftp-default-password nil | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
826 "Password to use when the user name equals `ange-ftp-default-user'." |
28210 | 827 :group 'ange-ftp |
828 :type '(choice (const :tag "Default" nil) | |
829 string)) | |
830 | |
831 (defcustom ange-ftp-default-account nil | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
832 "Account to use when the user name equals `ange-ftp-default-user'." |
28210 | 833 :group 'ange-ftp |
834 :type '(choice (const :tag "Default" nil) | |
835 string)) | |
836 | |
837 (defcustom ange-ftp-netrc-default-password nil | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
838 "Password to use when the user name equals `ange-ftp-netrc-default-user'." |
28210 | 839 :group 'ange-ftp |
840 :type '(choice (const :tag "Default" nil) | |
841 string)) | |
842 | |
843 (defcustom ange-ftp-netrc-default-account nil | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
844 "Account to use when the user name equals `ange-ftp-netrc-default-user'." |
28210 | 845 :group 'ange-ftp |
846 :type '(choice (const :tag "Default" nil) | |
847 string)) | |
848 | |
849 (defcustom ange-ftp-generate-anonymous-password t | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
850 "If t, use value of `user-mail-address' as password for anonymous FTP. |
28210 | 851 |
852 If a string, then use that string as the password. | |
853 If nil, prompt the user for a password." | |
854 :group 'ange-ftp | |
855 :type '(choice (const :tag "Prompt" nil) | |
856 string | |
857 (other :tag "User address" t))) | |
858 | |
859 (defcustom ange-ftp-dumb-unix-host-regexp nil | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
860 "If non-nil, regexp matching hosts on which `dir' command lists directory." |
28210 | 861 :group 'ange-ftp |
862 :type '(choice (const :tag "Default" nil) | |
863 string)) | |
864 | |
865 (defcustom ange-ftp-binary-file-name-regexp | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
866 (concat "TAGS\\'\\|\\.\\(?:" |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
867 (eval-when-compile |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
868 (regexp-opt '("z" "Z" "lzh" "arc" "zip" "zoo" "tar" "dvi" |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
869 "ps" "elc" "gif" "gz" "taz" "tgz"))) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
870 "\\|EXE\\(;[0-9]+\\)?\\|[zZ]-part-..\\)\\'") |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
871 "If a file matches this regexp then it is transferred in binary mode." |
28210 | 872 :group 'ange-ftp |
873 :type 'regexp) | |
874 | |
875 (defcustom ange-ftp-gateway-host nil | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
876 "Name of host to use as gateway machine when local FTP isn't possible." |
28210 | 877 :group 'ange-ftp |
878 :type '(choice (const :tag "Default" nil) | |
879 string)) | |
880 | |
881 (defcustom ange-ftp-local-host-regexp ".*" | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
882 "Regexp selecting hosts which can be reached directly with FTP. |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
883 |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
884 For other hosts the FTP process is started on `ange-ftp-gateway-host' |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
885 instead, and/or reached via `ange-ftp-gateway-ftp-program-name'." |
28210 | 886 :group 'ange-ftp |
887 :type 'regexp) | |
888 | |
889 (defcustom ange-ftp-gateway-program-interactive nil | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
890 "If non-nil then the gateway program should give a shell prompt. |
28210 | 891 |
892 Both telnet and rlogin do something like this." | |
893 :group 'ange-ftp | |
894 :type 'boolean) | |
895 | |
896 (defcustom ange-ftp-gateway-program remote-shell-program | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
897 "Name of program to spawn a shell on the gateway machine. |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
898 |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
899 Valid candidates are rsh (remsh on some systems), telnet and rlogin. |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
900 See also the gateway variable above." |
28210 | 901 :group 'ange-ftp |
902 :type '(choice (const "rsh") | |
903 (const "telnet") | |
904 (const "rlogin") | |
905 string)) | |
906 | |
907 (defcustom ange-ftp-gateway-prompt-pattern "^[^#$%>;\n]*[#$%>;] *" | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
908 "Regexp matching prompt after complete login sequence on gateway machine. |
28210 | 909 |
910 A match for this means the shell is now awaiting input. Make this regexp as | |
911 strict as possible; it shouldn't match *anything* at all except the user's | |
912 initial prompt. The above string will fail under most SUN-3's since it | |
913 matches the login banner." | |
914 :group 'ange-ftp | |
915 :type 'regexp) | |
916 | |
917 (defvar ange-ftp-gateway-setup-term-command | |
918 (if (eq system-type 'hpux) | |
919 "stty -onlcr -echo\n" | |
920 "stty -echo nl\n") | |
921 "*Set up terminal after logging in to the gateway machine. | |
922 This command should stop the terminal from echoing each command, and | |
923 arrange to strip out trailing ^M characters.") | |
924 | |
925 (defcustom ange-ftp-smart-gateway nil | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
926 "Non-nil says the FTP gateway (proxy) or gateway FTP program is smart. |
28210 | 927 |
928 Don't bother telnetting, etc., already connected to desired host transparently, | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
929 or just issue a user@host command in case `ange-ftp-gateway-host' is non-nil. |
46811
98f32ab61c61
(ange-ftp-smart-gateway): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
46355
diff
changeset
|
930 See also `ange-ftp-smart-gateway-port'." |
28210 | 931 :group 'ange-ftp |
932 :type 'boolean) | |
933 | |
934 (defcustom ange-ftp-smart-gateway-port "21" | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
935 "Port on gateway machine to use when smart gateway is in operation." |
28210 | 936 :group 'ange-ftp |
937 :type 'string) | |
938 | |
939 (defcustom ange-ftp-send-hash t | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
940 "If non-nil, send the HASH command to the FTP client." |
28210 | 941 :group 'ange-ftp |
942 :type 'boolean) | |
943 | |
944 (defcustom ange-ftp-binary-hash-mark-size nil | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
945 "Default size, in bytes, between hash-marks when transferring a binary file. |
28210 | 946 If nil, this variable will be locally overridden if the FTP client outputs a |
947 suitable response to the HASH command. If non-nil, this value takes | |
948 precedence over the local value." | |
949 :group 'ange-ftp | |
950 :type '(choice (const :tag "Overridden" nil) | |
951 integer)) | |
952 | |
953 (defcustom ange-ftp-ascii-hash-mark-size 1024 | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
954 "Default size, in bytes, between hash-marks when transferring an ASCII file. |
28210 | 955 This variable is buffer-local and will be locally overridden if the FTP client |
956 outputs a suitable response to the HASH command." | |
957 :group 'ange-ftp | |
958 :type 'integer) | |
959 | |
960 (defcustom ange-ftp-process-verbose t | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
961 "If non-nil then be chatty about interaction with the FTP process." |
28210 | 962 :group 'ange-ftp |
963 :type 'boolean) | |
964 | |
965 (defcustom ange-ftp-ftp-program-name "ftp" | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
966 "Name of FTP program to run." |
28210 | 967 :group 'ange-ftp |
968 :type 'string) | |
969 | |
970 (defcustom ange-ftp-gateway-ftp-program-name "ftp" | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
971 "Name of FTP program to run when accessing non-local hosts. |
28210 | 972 |
973 Some AT&T folks claim to use something called `pftp' here." | |
974 :group 'ange-ftp | |
975 :type 'string) | |
976 | |
977 (defcustom ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v") | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
978 "A list of arguments passed to the FTP program when started." |
28210 | 979 :group 'ange-ftp |
980 :type '(repeat string)) | |
981 | |
982 (defcustom ange-ftp-nslookup-program nil | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
983 "If non-nil, this is a string naming the nslookup program." |
28210 | 984 :group 'ange-ftp |
985 :type '(choice (const :tag "None" nil) | |
986 string)) | |
987 | |
988 (defcustom ange-ftp-make-backup-files () | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
989 "Non-nil means make backup files for \"magic\" remote files." |
28210 | 990 :group 'ange-ftp |
991 :type 'boolean) | |
992 | |
993 (defcustom ange-ftp-retry-time 5 | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
994 "Number of seconds to wait before retry if file or listing doesn't arrive. |
28210 | 995 This might need to be increased for very slow connections." |
996 :group 'ange-ftp | |
997 :type 'integer) | |
998 | |
999 (defcustom ange-ftp-auto-save 0 | |
1000 "If 1, allow ange-ftp files to be auto-saved. | |
1001 If 0, inhibit auto-saving of ange-ftp files. | |
1002 Don't use any other value." | |
1003 :group 'ange-ftp | |
1004 :type '(choice (const :tag "Suppress" 0) | |
1005 (const :tag "Allow" 1))) | |
1006 | |
1007 (defcustom ange-ftp-try-passive-mode nil | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1008 "If t, try to use passive mode in FTP, if the client program supports it." |
28210 | 1009 :group 'ange-ftp |
1010 :type 'boolean | |
45260 | 1011 :version "21.1") |
28210 | 1012 |
42393
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1013 (defcustom ange-ftp-passive-host-alist nil |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1014 "Alist of FTP servers that need \"passive\" mode. |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1015 Each element is of the form (HOSTNAME . SETTING). |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1016 HOSTNAME is a regular expression to match the FTP server host name(s). |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1017 SETTING is \"on\" to turn passive mode on, \"off\" to turn it off, |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1018 or nil meaning don't change it." |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1019 :group 'ange-ftp |
44953
edd77d3b9898
(ange-ftp-passive-host-alist)
Richard M. Stallman <rms@gnu.org>
parents:
43187
diff
changeset
|
1020 :type '(repeat (cons regexp (choice (const :tag "On" "on") |
edd77d3b9898
(ange-ftp-passive-host-alist)
Richard M. Stallman <rms@gnu.org>
parents:
43187
diff
changeset
|
1021 (const :tag "Off" "off") |
edd77d3b9898
(ange-ftp-passive-host-alist)
Richard M. Stallman <rms@gnu.org>
parents:
43187
diff
changeset
|
1022 (const :tag "Don't change" nil)))) |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
57426
diff
changeset
|
1023 :version "22.1") |
28210 | 1024 |
1025 ;;;; ------------------------------------------------------------ | |
1026 ;;;; Hash table support. | |
1027 ;;;; ------------------------------------------------------------ | |
1028 | |
1029 (require 'backquote) | |
1030 | |
1031 (defun ange-ftp-hash-entry-exists-p (key tbl) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1032 "Return whether there is an association for KEY in table TBL." |
56742
19c16bca1b49
(ange-ftp-hash-entry-exists-p)
David Kastrup <dak@gnu.org>
parents:
56259
diff
changeset
|
1033 (and tbl (not (eq (gethash key tbl 'unknown) 'unknown)))) |
28210 | 1034 |
1035 (defun ange-ftp-hash-table-keys (tbl) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1036 "Return a sorted list of all the active keys in table TBL, as strings." |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1037 ;; (let ((keys nil)) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1038 ;; (maphash (lambda (k v) (push k keys)) tbl) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1039 ;; (sort keys 'string-lessp)) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1040 (sort (all-completions "" tbl) 'string-lessp)) |
28210 | 1041 |
1042 ;;;; ------------------------------------------------------------ | |
1043 ;;;; Internal variables. | |
1044 ;;;; ------------------------------------------------------------ | |
1045 | |
1046 (defvar ange-ftp-data-buffer-name " *ftp data*" | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1047 "Buffer name to hold directory listing data received from FTP process.") |
28210 | 1048 |
1049 (defvar ange-ftp-netrc-modtime nil | |
1050 "Last modified time of the netrc file from file-attributes.") | |
1051 | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1052 (defvar ange-ftp-user-hashtable (make-hash-table :test 'equal) |
28210 | 1053 "Hash table holding associations between HOST, USER pairs.") |
1054 | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1055 (defvar ange-ftp-passwd-hashtable (make-hash-table :test 'equal) |
28210 | 1056 "Mapping between a HOST, USER pair and a PASSWORD for them. |
1057 All HOST values should be in lower case.") | |
1058 | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1059 (defvar ange-ftp-account-hashtable (make-hash-table :test 'equal) |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1060 "Mapping between a HOST, USER pair and an ACCOUNT password for them.") |
28210 | 1061 |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1062 (defvar ange-ftp-files-hashtable (make-hash-table :test 'equal :size 97) |
28210 | 1063 "Hash table for storing directories and their respective files.") |
1064 | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1065 (defvar ange-ftp-inodes-hashtable (make-hash-table :test 'equal :size 97) |
28210 | 1066 "Hash table for storing file names and their \"inode numbers\".") |
1067 | |
1068 (defvar ange-ftp-next-inode-number 1 | |
1069 "Next \"inode number\" value. We give each file name a unique number.") | |
1070 | |
1071 (defvar ange-ftp-ls-cache-lsargs nil | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1072 "Last set of args used by `ange-ftp-ls'.") |
28210 | 1073 |
1074 (defvar ange-ftp-ls-cache-file nil | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1075 "Last file passed to `ange-ftp-ls'.") |
28210 | 1076 |
1077 (defvar ange-ftp-ls-cache-res nil | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1078 "Last result returned from `ange-ftp-ls'.") |
28210 | 1079 |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1080 (defconst ange-ftp-expand-dir-hashtable (make-hash-table :test 'equal)) |
28210 | 1081 |
1082 (defconst ange-ftp-expand-dir-regexp "^5.0 \\([^: ]+\\):") | |
1083 | |
1084 ;; These are local variables in each FTP process buffer. | |
1085 (defvar ange-ftp-hash-mark-unit nil) | |
1086 (defvar ange-ftp-hash-mark-count nil) | |
1087 (defvar ange-ftp-xfer-size nil) | |
1088 (defvar ange-ftp-process-string nil) | |
1089 (defvar ange-ftp-process-result-line nil) | |
64667
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
1090 (defvar ange-ftp-pending-error-line nil) |
28210 | 1091 (defvar ange-ftp-process-busy nil) |
1092 (defvar ange-ftp-process-result nil) | |
1093 (defvar ange-ftp-process-multi-skip nil) | |
1094 (defvar ange-ftp-process-msg nil) | |
1095 (defvar ange-ftp-process-continue nil) | |
1096 (defvar ange-ftp-last-percent nil) | |
1097 | |
1098 ;; These variables are bound by one function and examined by another. | |
1099 ;; Leave them void globally for error checking. | |
1100 (defvar ange-ftp-this-file) | |
1101 (defvar ange-ftp-this-dir) | |
1102 (defvar ange-ftp-this-user) | |
1103 (defvar ange-ftp-this-host) | |
1104 (defvar ange-ftp-this-msg) | |
1105 (defvar ange-ftp-completion-ignored-pattern) | |
1106 (defvar ange-ftp-trample-marker) | |
1107 | |
1108 ;; New error symbols. | |
1109 (put 'ftp-error 'error-conditions '(ftp-error file-error error)) | |
1110 ;; (put 'ftp-error 'error-message "FTP error") | |
1111 | |
1112 ;;; ------------------------------------------------------------ | |
1113 ;;; Enhanced message support. | |
1114 ;;; ------------------------------------------------------------ | |
1115 | |
1116 (defun ange-ftp-message (fmt &rest args) | |
1117 "Display message in echo area, but indicate if truncated. | |
1118 Args are as in `message': a format string, plus arguments to be formatted." | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1119 (let ((msg (apply 'format fmt args)) |
28210 | 1120 (max (window-width (minibuffer-window)))) |
1121 (if noninteractive | |
1122 msg | |
1123 (if (>= (length msg) max) | |
1124 ;; Take just the last MAX - 3 chars of the string. | |
1125 (setq msg (concat "> " (substring msg (- 3 max))))) | |
1126 (message "%s" msg)))) | |
1127 | |
1128 (defun ange-ftp-abbreviate-filename (file &optional new) | |
30459 | 1129 "Abbreviate the file name FILE relative to the `default-directory'. |
28210 | 1130 If the optional parameter NEW is given and the non-directory parts match, |
1131 only return the directory part of FILE." | |
1132 (save-match-data | |
1133 (if (and default-directory | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
1134 (string-match (concat "\\`" |
28210 | 1135 (regexp-quote default-directory) |
1136 ".") file)) | |
1137 (setq file (substring file (1- (match-end 0))))) | |
1138 (if (and new | |
1139 (string-equal (file-name-nondirectory file) | |
1140 (file-name-nondirectory new))) | |
1141 (setq file (file-name-directory file))) | |
1142 (or file "./"))) | |
1143 | |
1144 ;;;; ------------------------------------------------------------ | |
1145 ;;;; User / Host mapping support. | |
1146 ;;;; ------------------------------------------------------------ | |
1147 | |
1148 (defun ange-ftp-set-user (host user) | |
1149 "For a given HOST, set or change the default USER." | |
1150 (interactive "sHost: \nsUser: ") | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1151 (puthash host user ange-ftp-user-hashtable)) |
28210 | 1152 |
1153 (defun ange-ftp-get-user (host) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1154 "Given a HOST, return the default user." |
28210 | 1155 (ange-ftp-parse-netrc) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1156 (let ((user (gethash host ange-ftp-user-hashtable))) |
28210 | 1157 (or user |
1158 (prog1 | |
1159 (setq user | |
1160 (cond ((stringp ange-ftp-default-user) | |
1161 ;; We have a default name. Use it. | |
1162 ange-ftp-default-user) | |
1163 (ange-ftp-default-user | |
1164 ;; Ask the user. | |
1165 (let ((enable-recursive-minibuffers t)) | |
1166 (read-string (format "User for %s: " host) | |
1167 (user-login-name)))) | |
1168 (ange-ftp-netrc-default-user) | |
1169 ;; Default to the user's login name. | |
1170 (t | |
1171 (user-login-name)))) | |
1172 (ange-ftp-set-user host user))))) | |
1173 | |
1174 ;;;; ------------------------------------------------------------ | |
1175 ;;;; Password support. | |
1176 ;;;; ------------------------------------------------------------ | |
1177 | |
1178 (defmacro ange-ftp-generate-passwd-key (host user) | |
30459 | 1179 `(concat (downcase ,host) "/" ,user)) |
28210 | 1180 |
1181 (defmacro ange-ftp-lookup-passwd (host user) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1182 `(gethash (ange-ftp-generate-passwd-key ,host ,user) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1183 ange-ftp-passwd-hashtable)) |
28210 | 1184 |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1185 (defun ange-ftp-set-passwd (host user password) |
28210 | 1186 "For a given HOST and USER, set or change the associated PASSWORD." |
1187 (interactive (list (read-string "Host: ") | |
1188 (read-string "User: ") | |
1189 (read-passwd "Password: "))) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1190 (puthash (ange-ftp-generate-passwd-key host user) |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1191 password ange-ftp-passwd-hashtable)) |
28210 | 1192 |
1193 (defun ange-ftp-get-host-with-passwd (user) | |
1194 "Given a USER, return a host we know the password for." | |
1195 (ange-ftp-parse-netrc) | |
1196 (catch 'found-one | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1197 (maphash |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1198 (lambda (host val) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1199 (if (ange-ftp-lookup-passwd host user) (throw 'found-one host))) |
28210 | 1200 ange-ftp-user-hashtable) |
1201 (save-match-data | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1202 (maphash |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1203 (lambda (key value) |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
1204 (if (string-match "\\`[^/]*\\(/\\).*\\'" key) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1205 (let ((host (substring key 0 (match-beginning 1)))) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1206 (if (and (string-equal user (substring key (match-end 1))) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1207 value) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1208 (throw 'found-one host))))) |
28210 | 1209 ange-ftp-passwd-hashtable)) |
1210 nil)) | |
1211 | |
1212 (defun ange-ftp-get-passwd (host user) | |
1213 "Return the password for specified HOST and USER, asking user if necessary." | |
1214 (ange-ftp-parse-netrc) | |
1215 | |
1216 ;; look up password in the hash table first; user might have overridden the | |
1217 ;; defaults. | |
1218 (cond ((ange-ftp-lookup-passwd host user)) | |
30459 | 1219 |
28210 | 1220 ;; See if default user and password set. |
1221 ((and (stringp ange-ftp-default-user) | |
1222 ange-ftp-default-password | |
1223 (string-equal user ange-ftp-default-user)) | |
1224 ange-ftp-default-password) | |
30459 | 1225 |
28210 | 1226 ;; See if default user and password set from .netrc file. |
1227 ((and (stringp ange-ftp-netrc-default-user) | |
1228 ange-ftp-netrc-default-password | |
1229 (string-equal user ange-ftp-netrc-default-user)) | |
1230 ange-ftp-netrc-default-password) | |
30459 | 1231 |
28210 | 1232 ;; anonymous ftp password is handled specially since there is an |
1233 ;; unwritten rule about how that is used on the Internet. | |
1234 ((and (or (string-equal user "anonymous") | |
1235 (string-equal user "ftp")) | |
1236 ange-ftp-generate-anonymous-password) | |
1237 (if (stringp ange-ftp-generate-anonymous-password) | |
1238 ange-ftp-generate-anonymous-password | |
1239 user-mail-address)) | |
30459 | 1240 |
28210 | 1241 ;; see if same user has logged in to other hosts; if so then prompt |
1242 ;; with the password that was used there. | |
1243 (t | |
1244 (let* ((other (ange-ftp-get-host-with-passwd user)) | |
1245 (passwd (if other | |
30459 | 1246 |
28210 | 1247 ;; found another machine with the same user. |
1248 ;; Try that account. | |
1249 (read-passwd | |
1250 (format "passwd for %s@%s (default same as %s@%s): " | |
1251 user host user other) | |
1252 nil | |
1253 (ange-ftp-lookup-passwd other user)) | |
30459 | 1254 |
28210 | 1255 ;; I give up. Ask the user for the password. |
1256 (read-passwd | |
1257 (format "Password for %s@%s: " user host))))) | |
1258 (ange-ftp-set-passwd host user passwd) | |
1259 passwd)))) | |
1260 | |
1261 ;;;; ------------------------------------------------------------ | |
1262 ;;;; Account support | |
1263 ;;;; ------------------------------------------------------------ | |
1264 | |
1265 ;; Account passwords must be either specified in the .netrc file, or set | |
1266 ;; manually by calling ange-ftp-set-account. For the moment, ange-ftp doesn't | |
1267 ;; check to see whether the FTP process is actually prompting for an account | |
1268 ;; password. | |
30459 | 1269 |
28210 | 1270 (defun ange-ftp-set-account (host user account) |
1271 "For a given HOST and USER, set or change the associated ACCOUNT password." | |
1272 (interactive (list (read-string "Host: ") | |
1273 (read-string "User: ") | |
1274 (read-passwd "Account password: "))) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1275 (puthash (ange-ftp-generate-passwd-key host user) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1276 account ange-ftp-account-hashtable)) |
28210 | 1277 |
1278 (defun ange-ftp-get-account (host user) | |
1279 "Given a HOST and USER, return the FTP account." | |
1280 (ange-ftp-parse-netrc) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1281 (or (gethash (ange-ftp-generate-passwd-key host user) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1282 ange-ftp-account-hashtable) |
28210 | 1283 (and (stringp ange-ftp-default-user) |
1284 (string-equal user ange-ftp-default-user) | |
1285 ange-ftp-default-account) | |
1286 (and (stringp ange-ftp-netrc-default-user) | |
1287 (string-equal user ange-ftp-netrc-default-user) | |
1288 ange-ftp-netrc-default-account))) | |
1289 | |
1290 ;;;; ------------------------------------------------------------ | |
1291 ;;;; ~/.netrc support | |
1292 ;;;; ------------------------------------------------------------ | |
1293 | |
1294 (defun ange-ftp-chase-symlinks (file) | |
1295 "Return the filename that FILE references, following all symbolic links." | |
1296 (let (temp) | |
1297 (while (setq temp (ange-ftp-real-file-symlink-p file)) | |
1298 (setq file | |
1299 (if (file-name-absolute-p temp) | |
1300 temp | |
65762
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
1301 ;; Wouldn't `expand-file-name' be better than `concat' ? |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
1302 ;; It would fail when `a/b/..' != `a', tho. --Stef |
28210 | 1303 (concat (file-name-directory file) temp))))) |
1304 file) | |
1305 | |
1306 ;; Move along current line looking for the value of the TOKEN. | |
1307 ;; Valid separators between TOKEN and its value are commas and | |
1308 ;; whitespace. Second arg LIMIT is a limit for the search. | |
1309 | |
1310 (defun ange-ftp-parse-netrc-token (token limit) | |
1311 (if (search-forward token limit t) | |
1312 (let (beg) | |
1313 (skip-chars-forward ", \t\r\n" limit) | |
1314 (if (eq (following-char) ?\") ;quoted token value | |
1315 (progn (forward-char 1) | |
1316 (setq beg (point)) | |
1317 (skip-chars-forward "^\"" limit) | |
1318 (forward-char 1) | |
1319 (buffer-substring beg (1- (point)))) | |
1320 (setq beg (point)) | |
1321 (skip-chars-forward "^, \t\r\n" limit) | |
1322 (buffer-substring beg (point)))))) | |
1323 | |
1324 ;; Extract the values for the tokens `machine', `login', | |
1325 ;; `password' and `account' in the current buffer. If successful, | |
1326 ;; record the information found. | |
1327 | |
1328 (defun ange-ftp-parse-netrc-group () | |
1329 (let ((start (point)) | |
1330 (end (save-excursion | |
1331 (if (looking-at "machine\\>") | |
1332 ;; Skip `machine' and the machine name that follows. | |
1333 (progn | |
1334 (skip-chars-forward "^ \t\r\n") | |
1335 (skip-chars-forward " \t\r\n") | |
1336 (skip-chars-forward "^ \t\r\n")) | |
1337 ;; Skip `default'. | |
1338 (skip-chars-forward "^ \t\r\n")) | |
1339 ;; Find start of the next `machine' or `default' | |
1340 ;; or the end of the buffer. | |
1341 (if (re-search-forward "machine\\>\\|default\\>" nil t) | |
1342 (match-beginning 0) | |
1343 (point-max)))) | |
1344 machine login password account) | |
1345 (setq machine (ange-ftp-parse-netrc-token "machine" end) | |
1346 login (ange-ftp-parse-netrc-token "login" end) | |
1347 password (ange-ftp-parse-netrc-token "password" end) | |
1348 account (ange-ftp-parse-netrc-token "account" end)) | |
1349 (if (and machine login) | |
1350 ;; found a `machine` token. | |
1351 (progn | |
1352 (ange-ftp-set-user machine login) | |
1353 (ange-ftp-set-passwd machine login password) | |
1354 (and account | |
1355 (ange-ftp-set-account machine login account))) | |
1356 (goto-char start) | |
1357 (if (search-forward "default" end t) | |
1358 ;; found a `default' token | |
1359 (progn | |
1360 (setq login (ange-ftp-parse-netrc-token "login" end) | |
1361 password (ange-ftp-parse-netrc-token "password" end) | |
1362 account (ange-ftp-parse-netrc-token "account" end)) | |
1363 (and login | |
1364 (setq ange-ftp-netrc-default-user login)) | |
1365 (and password | |
1366 (setq ange-ftp-netrc-default-password password)) | |
1367 (and account | |
1368 (setq ange-ftp-netrc-default-account account))))) | |
1369 (goto-char end))) | |
1370 | |
1371 ;; Read in ~/.netrc, if one exists. If ~/.netrc file exists and has | |
1372 ;; the correct permissions then extract the \`machine\', \`login\', | |
1373 ;; \`password\' and \`account\' information from within. | |
1374 | |
1375 (defun ange-ftp-parse-netrc () | |
1376 ;; We set this before actually doing it to avoid the possibility | |
1377 ;; of an infinite loop if ange-ftp-netrc-filename is an FTP file. | |
1378 (interactive) | |
1379 (let (file attr) | |
1380 (let ((default-directory "/")) | |
1381 (setq file (ange-ftp-chase-symlinks | |
1382 (ange-ftp-real-expand-file-name ange-ftp-netrc-filename))) | |
1383 (setq attr (ange-ftp-real-file-attributes file))) | |
1384 (if (and attr ; file exists. | |
1385 (not (equal (nth 5 attr) ange-ftp-netrc-modtime))) ; file changed | |
1386 (save-match-data | |
1387 (if (or ange-ftp-disable-netrc-security-check | |
1388 (and (eq (nth 2 attr) (user-uid)) ; Same uids. | |
1389 (string-match ".r..------" (nth 8 attr)))) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
1390 (with-current-buffer |
28210 | 1391 ;; we are cheating a bit here. I'm trying to do the equivalent |
1392 ;; of find-file on the .netrc file, but then nuke it afterwards. | |
1393 ;; with the bit of logic below we should be able to have | |
1394 ;; encrypted .netrc files. | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
1395 (generate-new-buffer "*ftp-.netrc*") |
28210 | 1396 (ange-ftp-real-insert-file-contents file) |
1397 (setq buffer-file-name file) | |
1398 (setq default-directory (file-name-directory file)) | |
1399 (normal-mode t) | |
46178
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
1400 (run-hooks 'find-file-hook) |
28210 | 1401 (setq buffer-file-name nil) |
1402 (goto-char (point-min)) | |
1403 (skip-chars-forward " \t\r\n") | |
1404 (while (not (eobp)) | |
1405 (ange-ftp-parse-netrc-group)) | |
1406 (kill-buffer (current-buffer))) | |
1407 (ange-ftp-message "%s either not owned by you or badly protected." | |
1408 ange-ftp-netrc-filename) | |
1409 (sit-for 1)) | |
1410 (setq ange-ftp-netrc-modtime (nth 5 attr)))))) | |
1411 | |
1412 ;; Return a list of prefixes of the form 'user@host:' to be used when | |
1413 ;; completion is done in the root directory. | |
1414 | |
1415 (defun ange-ftp-generate-root-prefixes () | |
1416 (ange-ftp-parse-netrc) | |
1417 (save-match-data | |
1418 (let (res) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1419 (maphash |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1420 (lambda (key value) |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
1421 (if (string-match "\\`[^/]*\\(/\\).*\\'" key) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1422 (let ((host (substring key 0 (match-beginning 1))) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1423 (user (substring key (match-end 1)))) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1424 (push (concat user "@" host ":") res)))) |
28210 | 1425 ange-ftp-passwd-hashtable) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1426 (maphash |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1427 (lambda (host user) (push (concat host ":") res)) |
28210 | 1428 ange-ftp-user-hashtable) |
1429 (or res (list nil))))) | |
1430 | |
1431 ;;;; ------------------------------------------------------------ | |
1432 ;;;; Remote file name syntax support. | |
1433 ;;;; ------------------------------------------------------------ | |
1434 | |
1435 (defmacro ange-ftp-ftp-name-component (n ns name) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1436 "Extract the Nth FTP file name component from NS." |
30459 | 1437 `(let ((elt (nth ,n ,ns))) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
1438 (match-string elt ,name))) |
28210 | 1439 |
1440 (defvar ange-ftp-ftp-name-arg "") | |
1441 (defvar ange-ftp-ftp-name-res nil) | |
1442 | |
1443 ;; Parse NAME according to `ange-ftp-name-format' (which see). | |
1444 ;; Returns a list (HOST USER NAME), or nil if NAME does not match the format. | |
1445 (defun ange-ftp-ftp-name (name) | |
1446 (if (string-equal name ange-ftp-ftp-name-arg) | |
1447 ange-ftp-ftp-name-res | |
1448 (setq ange-ftp-ftp-name-arg name | |
1449 ange-ftp-ftp-name-res | |
1450 (save-match-data | |
1451 (if (posix-string-match (car ange-ftp-name-format) name) | |
1452 (let* ((ns (cdr ange-ftp-name-format)) | |
1453 (host (ange-ftp-ftp-name-component 0 ns name)) | |
1454 (user (ange-ftp-ftp-name-component 1 ns name)) | |
1455 (name (ange-ftp-ftp-name-component 2 ns name))) | |
1456 (if (zerop (length user)) | |
1457 (setq user (ange-ftp-get-user host))) | |
1458 (list host user name)) | |
1459 nil))))) | |
1460 | |
1461 ;; Take a FULLNAME that matches according to ange-ftp-name-format and | |
1462 ;; replace the name component with NAME. | |
1463 (defun ange-ftp-replace-name-component (fullname name) | |
1464 (save-match-data | |
1465 (if (posix-string-match (car ange-ftp-name-format) fullname) | |
1466 (let* ((ns (cdr ange-ftp-name-format)) | |
1467 (elt (nth 2 ns))) | |
1468 (concat (substring fullname 0 (match-beginning elt)) | |
1469 name | |
1470 (substring fullname (match-end elt))))))) | |
1471 | |
1472 ;;;; ------------------------------------------------------------ | |
1473 ;;;; Miscellaneous utils. | |
1474 ;;;; ------------------------------------------------------------ | |
1475 | |
1476 ;; (setq ange-ftp-tmp-keymap (make-sparse-keymap)) | |
1477 ;; (define-key ange-ftp-tmp-keymap "\C-m" 'exit-minibuffer) | |
1478 | |
1479 (defun ange-ftp-repaint-minibuffer () | |
1480 "Clear any existing minibuffer message; let the minibuffer contents show." | |
1481 (message nil)) | |
1482 | |
1483 ;; Return the name of the buffer that collects output from the ftp process | |
1484 ;; connected to the given HOST and USER pair. | |
1485 (defun ange-ftp-ftp-process-buffer (host user) | |
1486 (concat "*ftp " user "@" host "*")) | |
1487 | |
1488 ;; Display the last chunk of output from the ftp process for the given HOST | |
1489 ;; USER pair, and signal an error including MSG in the text. | |
1490 (defun ange-ftp-error (host user msg) | |
52209
abb0fb200345
(ange-ftp-error): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51799
diff
changeset
|
1491 (save-excursion ;; Prevent pop-to-buffer from changing current buffer. |
abb0fb200345
(ange-ftp-error): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51799
diff
changeset
|
1492 (let ((cur (selected-window)) |
abb0fb200345
(ange-ftp-error): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51799
diff
changeset
|
1493 (pop-up-windows t)) |
abb0fb200345
(ange-ftp-error): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51799
diff
changeset
|
1494 (pop-to-buffer |
abb0fb200345
(ange-ftp-error): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51799
diff
changeset
|
1495 (get-buffer-create |
abb0fb200345
(ange-ftp-error): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51799
diff
changeset
|
1496 (ange-ftp-ftp-process-buffer host user))) |
abb0fb200345
(ange-ftp-error): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51799
diff
changeset
|
1497 (goto-char (point-max)) |
abb0fb200345
(ange-ftp-error): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51799
diff
changeset
|
1498 (select-window cur)) |
abb0fb200345
(ange-ftp-error): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51799
diff
changeset
|
1499 (signal 'ftp-error (list (format "FTP Error: %s" msg))))) |
28210 | 1500 |
1501 (defun ange-ftp-set-buffer-mode () | |
1502 "Set correct modes for the current buffer if visiting a remote file." | |
1503 (if (and (stringp buffer-file-name) | |
1504 (ange-ftp-ftp-name buffer-file-name)) | |
1505 (auto-save-mode ange-ftp-auto-save))) | |
1506 | |
1507 (defun ange-ftp-kill-ftp-process (&optional buffer) | |
1508 "Kill the FTP process associated with BUFFER (the current buffer, if nil). | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1509 If the BUFFER's visited filename or `default-directory' is an FTP filename |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1510 then kill the related FTP process." |
28210 | 1511 (interactive "bKill FTP process associated with buffer: ") |
1512 (if (null buffer) | |
1513 (setq buffer (current-buffer)) | |
1514 (setq buffer (get-buffer buffer))) | |
1515 (let ((file (or (buffer-file-name buffer) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
1516 (with-current-buffer buffer default-directory)))) |
28210 | 1517 (if file |
1518 (let ((parsed (ange-ftp-ftp-name (expand-file-name file)))) | |
1519 (if parsed | |
1520 (let ((host (nth 0 parsed)) | |
1521 (user (nth 1 parsed))) | |
1522 (kill-buffer (get-buffer (ange-ftp-ftp-process-buffer host user))))))))) | |
1523 | |
1524 (defun ange-ftp-quote-string (string) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1525 "Quote any characters in STRING that may confuse the FTP process." |
91814
c1e1558393ba
* net/ange-ftp.el (ange-ftp-quote-string): Use
Michael Albinus <michael.albinus@gmx.de>
parents:
91583
diff
changeset
|
1526 ;; This is said to be wrong; ftp is said to need quoting only for ", |
c1e1558393ba
* net/ange-ftp.el (ange-ftp-quote-string): Use
Michael Albinus <michael.albinus@gmx.de>
parents:
91583
diff
changeset
|
1527 ;; and that by doubling it. But experiment says UNIX-style kind of |
c1e1558393ba
* net/ange-ftp.el (ange-ftp-quote-string): Use
Michael Albinus <michael.albinus@gmx.de>
parents:
91583
diff
changeset
|
1528 ;; quoting is correct when talking to ftp on GNU/Linux systems, and |
c1e1558393ba
* net/ange-ftp.el (ange-ftp-quote-string): Use
Michael Albinus <michael.albinus@gmx.de>
parents:
91583
diff
changeset
|
1529 ;; W32-style kind of quoting on, yes, W32 systems. |
91961
93cf29ed1d24
* net/ange-ftp.el (ange-ftp-quote-string): Return the null string
Michael Albinus <michael.albinus@gmx.de>
parents:
91814
diff
changeset
|
1530 (if (stringp string) |
93cf29ed1d24
* net/ange-ftp.el (ange-ftp-quote-string): Return the null string
Michael Albinus <michael.albinus@gmx.de>
parents:
91814
diff
changeset
|
1531 (shell-quote-argument string) |
93cf29ed1d24
* net/ange-ftp.el (ange-ftp-quote-string): Return the null string
Michael Albinus <michael.albinus@gmx.de>
parents:
91814
diff
changeset
|
1532 "")) |
28210 | 1533 |
1534 (defun ange-ftp-barf-if-not-directory (directory) | |
1535 (or (file-directory-p directory) | |
1536 (signal 'file-error | |
1537 (list "Opening directory" | |
1538 (if (file-exists-p directory) | |
1539 "not a directory" | |
1540 "no such file or directory") | |
1541 directory)))) | |
1542 | |
1543 ;;;; ------------------------------------------------------------ | |
1544 ;;;; FTP process filter support. | |
1545 ;;;; ------------------------------------------------------------ | |
1546 | |
1547 (defun ange-ftp-process-handle-line (line proc) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1548 "Look at the given LINE from the FTP process PROC. |
28210 | 1549 Try to categorize it into one of four categories: |
1550 good, skip, fatal, or unknown." | |
1551 (cond ((string-match ange-ftp-xfer-size-msgs line) | |
1552 (setq ange-ftp-xfer-size | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
1553 (/ (string-to-number (match-string 1 line)) |
43187
992a5c499b47
(ange-ftp-process-handle-line, ange-ftp-set-xfer-size): If the file's
Eli Zaretskii <eliz@gnu.org>
parents:
42898
diff
changeset
|
1554 1024))) |
28210 | 1555 ((string-match ange-ftp-skip-msgs line) |
1556 t) | |
1557 ((string-match ange-ftp-good-msgs line) | |
1558 (setq ange-ftp-process-busy nil | |
1559 ange-ftp-process-result t | |
64667
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
1560 ange-ftp-pending-error-line nil |
28210 | 1561 ange-ftp-process-result-line line)) |
1562 ;; Check this before checking for errors. | |
1563 ;; Otherwise the last line of these three seems to be an error: | |
1564 ;; 230-see a significant impact from the move. For those of you who can't | |
1565 ;; 230-use DNS to resolve hostnames and get an error message like | |
1566 ;; 230-"ftp.stsci.edu: unknown host", the new IP address will be... | |
1567 ((string-match ange-ftp-multi-msgs line) | |
1568 (setq ange-ftp-process-multi-skip t)) | |
64667
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
1569 ((string-match ange-ftp-potential-error-msgs line) |
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
1570 ;; This looks like an error, but we have to keep reading the output |
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
1571 ;; to see if it was fixed or not. E.g. it may indicate that IPv6 |
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
1572 ;; failed, but maybe a subsequent IPv4 fallback succeeded. |
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
1573 (set (make-local-variable 'ange-ftp-pending-error-line) line) |
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
1574 t) |
28210 | 1575 ((string-match ange-ftp-fatal-msgs line) |
1576 (delete-process proc) | |
1577 (setq ange-ftp-process-busy nil | |
1578 ange-ftp-process-result-line line)) | |
64667
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
1579 (ange-ftp-process-multi-skip |
28210 | 1580 t) |
1581 (t | |
1582 (setq ange-ftp-process-busy nil | |
1583 ange-ftp-process-result-line line)))) | |
1584 | |
1585 (defun ange-ftp-set-xfer-size (host user bytes) | |
1586 "Set the size of the next FTP transfer in bytes." | |
1587 (let ((proc (ange-ftp-get-process host user))) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1588 (when proc |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1589 (let ((buf (process-buffer proc))) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1590 (when buf |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1591 (with-current-buffer buf |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1592 (setq ange-ftp-xfer-size |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1593 ;; For very large files, BYTES can be a float. |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1594 (if (integerp bytes) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1595 (ash bytes -10) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1596 (/ bytes 1024))))))))) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1597 |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1598 (defun ange-ftp-process-handle-hash (string) |
28210 | 1599 "Remove hash marks from STRING and display count so far." |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1600 (setq string (concat (substring string 0 (match-beginning 0)) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1601 (substring string (match-end 0))) |
28210 | 1602 ange-ftp-hash-mark-count (+ (- (match-end 0) |
1603 (match-beginning 0)) | |
1604 ange-ftp-hash-mark-count)) | |
1605 (and ange-ftp-hash-mark-unit | |
1606 ange-ftp-process-msg | |
1607 ange-ftp-process-verbose | |
1608 (not (eq (selected-window) (minibuffer-window))) | |
1609 (not (boundp 'search-message)) ;screws up isearch otherwise | |
1610 (not cursor-in-echo-area) ;screws up y-or-n-p otherwise | |
1611 (let ((kbytes (ash (* ange-ftp-hash-mark-unit | |
1612 ange-ftp-hash-mark-count) | |
1613 -6))) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1614 (if (zerop ange-ftp-xfer-size) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1615 (ange-ftp-message "%s...%dk" ange-ftp-process-msg kbytes) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1616 (let ((percent (/ (* 100 kbytes) ange-ftp-xfer-size))) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1617 ;; cut out the redisplay of identical %-age messages. |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1618 (unless (eq percent ange-ftp-last-percent) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1619 (setq ange-ftp-last-percent percent) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1620 (ange-ftp-message "%s...%d%%" ange-ftp-process-msg percent)))))) |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1621 string) |
28210 | 1622 |
1623 ;; Call the function specified by CONT. CONT can be either a function | |
1624 ;; or a list of a function and some args. The first two parameters | |
1625 ;; passed to the function will be RESULT and LINE. The remaining args | |
1626 ;; will be taken from CONT if a list was passed. | |
1627 | |
1628 (defun ange-ftp-call-cont (cont result line) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1629 (when cont |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1630 (if (and (listp cont) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1631 (not (eq (car cont) 'lambda))) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1632 (apply (car cont) result line (cdr cont)) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1633 (funcall cont result line)))) |
28210 | 1634 |
1635 ;; Build up a complete line of output from the ftp PROCESS and pass it | |
1636 ;; on to ange-ftp-process-handle-line to deal with. | |
1637 | |
1638 (defun ange-ftp-process-filter (proc str) | |
65516
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1639 ;; Eliminate nulls. |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1640 (while (string-match "\000+" str) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1641 (setq str (replace-match "" nil nil str))) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1642 |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1643 ;; see if the buffer is still around... it could have been deleted. |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1644 (when (buffer-live-p (process-buffer proc)) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1645 (with-current-buffer (process-buffer proc) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1646 |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1647 ;; handle hash mark printing |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1648 (and ange-ftp-process-busy |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1649 (string-match "^#+$" str) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1650 (setq str (ange-ftp-process-handle-hash str))) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1651 (comint-output-filter proc str) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1652 ;; Replace STR by the result of the comint processing. |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1653 (setq str (buffer-substring comint-last-output-start |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1654 (process-mark proc))) |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1655 (when ange-ftp-process-busy |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1656 (setq ange-ftp-process-string (concat ange-ftp-process-string |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1657 str)) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1658 |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1659 ;; if we gave an empty password to the USER command earlier |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1660 ;; then we should send a null password now. |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1661 (if (string-match "Password: *$" ange-ftp-process-string) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1662 (process-send-string proc "\n"))) |
65516
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1663 (while (and ange-ftp-process-busy |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1664 (string-match "\n" ange-ftp-process-string)) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1665 (let ((line (substring ange-ftp-process-string |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1666 0 |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1667 (match-beginning 0))) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1668 (seen-prompt nil)) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1669 (setq ange-ftp-process-string (substring ange-ftp-process-string |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1670 (match-end 0))) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1671 (while (string-match "\\`ftp> *" line) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1672 (setq seen-prompt t) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1673 (setq line (substring line (match-end 0)))) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1674 (if (not (and seen-prompt ange-ftp-pending-error-line)) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1675 (ange-ftp-process-handle-line line proc) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1676 ;; If we've seen a potential error message and it |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1677 ;; hasn't been cancelled by a good message before |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1678 ;; seeing a propt, then the error was real. |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1679 (delete-process proc) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1680 (setq ange-ftp-process-busy nil |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1681 ange-ftp-process-result-line ange-ftp-pending-error-line)))) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1682 |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1683 ;; has the ftp client finished? if so then do some clean-up |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1684 ;; actions. |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1685 (unless ange-ftp-process-busy |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1686 ;; reset the xfer size |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1687 (setq ange-ftp-xfer-size 0) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1688 |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1689 ;; issue the "done" message since we've finished. |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1690 (when (and ange-ftp-process-msg |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1691 ange-ftp-process-verbose |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1692 ange-ftp-process-result) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1693 (ange-ftp-message "%s...done" ange-ftp-process-msg) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1694 (ange-ftp-repaint-minibuffer) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1695 (setq ange-ftp-process-msg nil)) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1696 |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1697 ;; is there a continuation we should be calling? if so, |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1698 ;; we'd better call it, making sure we only call it once. |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1699 (when ange-ftp-process-continue |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1700 (let ((cont ange-ftp-process-continue)) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1701 (setq ange-ftp-process-continue nil) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1702 (ange-ftp-call-cont cont |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1703 ange-ftp-process-result |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1704 ange-ftp-process-result-line))))))) |
28210 | 1705 |
1706 (defun ange-ftp-process-sentinel (proc str) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1707 "When FTP process changes state, nuke all file-entries in cache." |
28210 | 1708 (let ((name (process-name proc))) |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1709 (when (string-match "\\*ftp \\([^@]+\\)@\\([^*]+\\)\\*" name) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1710 (let ((user (match-string 1 name)) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1711 (host (match-string 2 name))) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1712 (ange-ftp-wipe-file-entries host user)))) |
28210 | 1713 (setq ange-ftp-ls-cache-file nil)) |
1714 | |
1715 ;;;; ------------------------------------------------------------ | |
1716 ;;;; Gateway support. | |
1717 ;;;; ------------------------------------------------------------ | |
1718 | |
1719 (defun ange-ftp-use-gateway-p (host) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1720 "Return whether to access this HOST via a normal (non-smart) gateway." |
28210 | 1721 ;; yes, I know that I could simplify the following expression, but it is |
1722 ;; clearer (to me at least) this way. | |
1723 (and (not ange-ftp-smart-gateway) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1724 (not (string-match-p ange-ftp-local-host-regexp host)))) |
28210 | 1725 |
1726 (defun ange-ftp-use-smart-gateway-p (host) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1727 "Returns whether to access this HOST via a smart gateway." |
28210 | 1728 (and ange-ftp-smart-gateway |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1729 (not (string-match-p ange-ftp-local-host-regexp host)))) |
28210 | 1730 |
1731 | |
1732 ;;; ------------------------------------------------------------ | |
1733 ;;; Temporary file location and deletion... | |
1734 ;;; ------------------------------------------------------------ | |
1735 | |
1736 (defun ange-ftp-make-tmp-name (host) | |
1737 "This routine will return the name of a new file." | |
1738 (make-temp-file (if (ange-ftp-use-gateway-p host) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1739 ange-ftp-gateway-tmp-name-template |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1740 ange-ftp-tmp-name-template))) |
28210 | 1741 |
1742 (defalias 'ange-ftp-del-tmp-name 'delete-file) | |
1743 | |
1744 ;;;; ------------------------------------------------------------ | |
1745 ;;;; Interactive gateway program support. | |
1746 ;;;; ------------------------------------------------------------ | |
1747 | |
1748 (defvar ange-ftp-gwp-running t) | |
1749 (defvar ange-ftp-gwp-status nil) | |
1750 | |
1751 (defun ange-ftp-gwp-sentinel (proc str) | |
1752 (setq ange-ftp-gwp-running nil)) | |
1753 | |
1754 (defun ange-ftp-gwp-filter (proc str) | |
1755 (comint-output-filter proc str) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
1756 (with-current-buffer (process-buffer proc) |
28210 | 1757 ;; Replace STR by the result of the comint processing. |
1758 (setq str (buffer-substring comint-last-output-start (process-mark proc)))) | |
1759 (cond ((string-match "login: *$" str) | |
62460
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1760 (process-send-string proc |
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1761 (concat |
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1762 (let ((ange-ftp-default-user t)) |
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1763 (ange-ftp-get-user ange-ftp-gateway-host)) |
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1764 "\n"))) |
28210 | 1765 ((string-match "Password: *$" str) |
62460
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1766 (process-send-string proc |
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1767 (concat |
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1768 (ange-ftp-get-passwd ange-ftp-gateway-host |
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1769 (ange-ftp-get-user |
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1770 ange-ftp-gateway-host)) |
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1771 "\n"))) |
28210 | 1772 ((string-match ange-ftp-gateway-fatal-msgs str) |
1773 (delete-process proc) | |
1774 (setq ange-ftp-gwp-running nil)) | |
1775 ((string-match ange-ftp-gateway-prompt-pattern str) | |
1776 (setq ange-ftp-gwp-running nil | |
1777 ange-ftp-gwp-status t)))) | |
1778 | |
1779 (defun ange-ftp-gwp-start (host user name args) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1780 "Login to the gateway machine and fire up an FTP process." |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1781 (let (;; It would be nice to make process-connection-type nil, |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1782 ;; but that doesn't work: ftp never responds. |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1783 ;; Can anyone find a fix for that? |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1784 (proc (let ((process-connection-type t)) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1785 (start-process name name |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1786 ange-ftp-gateway-program |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1787 ange-ftp-gateway-host))) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1788 (ftp (mapconcat 'identity args " "))) |
56765
3c6aa215e03f
(ange-ftp-gwp-start, ange-ftp-nslookup-host)
Richard M. Stallman <rms@gnu.org>
parents:
56742
diff
changeset
|
1789 (set-process-query-on-exit-flag proc nil) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
1790 (set-process-sentinel proc 'ange-ftp-gwp-sentinel) |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
1791 (set-process-filter proc 'ange-ftp-gwp-filter) |
65762
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
1792 (with-current-buffer (process-buffer proc) |
28210 | 1793 (goto-char (point-max)) |
1794 (set-marker (process-mark proc) (point))) | |
1795 (setq ange-ftp-gwp-running t | |
1796 ange-ftp-gwp-status nil) | |
1797 (ange-ftp-message "Connecting to gateway %s..." ange-ftp-gateway-host) | |
1798 (while ange-ftp-gwp-running ;perform login sequence | |
1799 (accept-process-output proc)) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1800 (unless ange-ftp-gwp-status |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1801 (ange-ftp-error host user "unable to login to gateway")) |
28210 | 1802 (ange-ftp-message "Connecting to gateway %s...done" ange-ftp-gateway-host) |
1803 (setq ange-ftp-gwp-running t | |
1804 ange-ftp-gwp-status nil) | |
1805 (process-send-string proc ange-ftp-gateway-setup-term-command) | |
1806 (while ange-ftp-gwp-running ;zap ^M's and double echoing. | |
1807 (accept-process-output proc)) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1808 (unless ange-ftp-gwp-status |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1809 (ange-ftp-error host user "unable to set terminal modes on gateway")) |
28210 | 1810 (setq ange-ftp-gwp-running t |
1811 ange-ftp-gwp-status nil) | |
1812 (process-send-string proc (concat "exec " ftp "\n")) ;spawn ftp process | |
1813 proc)) | |
1814 | |
1815 ;;;; ------------------------------------------------------------ | |
1816 ;;;; Support for sending commands to the ftp process. | |
1817 ;;;; ------------------------------------------------------------ | |
1818 | |
1819 (defun ange-ftp-raw-send-cmd (proc cmd &optional msg cont nowait) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1820 "Low-level routine to send the given FTP CMD to the FTP process PROC. |
28210 | 1821 MSG is an optional message to output before and after the command. |
30459 | 1822 If CONT is non-nil then it is either a function or a list of function |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1823 and some arguments. The function will be called when the FTP command |
30459 | 1824 has completed. |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1825 If CONT is nil then this routine will return (RESULT . LINE) where RESULT |
28210 | 1826 is whether the command was successful, and LINE is the line from the FTP |
1827 process that caused the command to complete. | |
1828 If NOWAIT is given then the routine will return immediately the command has | |
1829 been queued with no result. CONT will still be called, however." | |
1830 (if (memq (process-status proc) '(run open)) | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
1831 (with-current-buffer (process-buffer proc) |
28210 | 1832 (ange-ftp-wait-not-busy proc) |
1833 (setq ange-ftp-process-string "" | |
1834 ange-ftp-process-result-line "" | |
1835 ange-ftp-process-busy t | |
1836 ange-ftp-process-result nil | |
1837 ange-ftp-process-multi-skip nil | |
1838 ange-ftp-process-msg msg | |
1839 ange-ftp-process-continue cont | |
1840 ange-ftp-hash-mark-count 0 | |
1841 ange-ftp-last-percent -1 | |
1842 cmd (concat cmd "\n")) | |
1843 (and msg ange-ftp-process-verbose (ange-ftp-message "%s..." msg)) | |
1844 (goto-char (point-max)) | |
1845 (move-marker comint-last-input-start (point)) | |
1846 ;; don't insert the password into the buffer on the USER command. | |
1847 (save-match-data | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
1848 (if (string-match "\\`user \"[^\"]*\"" cmd) |
28210 | 1849 (insert (substring cmd 0 (match-end 0)) " Turtle Power!\n") |
1850 (insert cmd))) | |
1851 (move-marker comint-last-input-end (point)) | |
62460
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1852 (process-send-string proc cmd) |
28210 | 1853 (set-marker (process-mark proc) (point)) |
1854 (if nowait | |
1855 nil | |
1856 (ange-ftp-wait-not-busy proc) | |
1857 (if cont | |
1858 nil ;cont has already been called | |
1859 (cons ange-ftp-process-result ange-ftp-process-result-line)))))) | |
1860 | |
1861 ;; Wait for the ange-ftp process PROC not to be busy. | |
1862 (defun ange-ftp-wait-not-busy (proc) | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
1863 (with-current-buffer (process-buffer proc) |
28210 | 1864 (condition-case nil |
1865 ;; This is a kludge to let user quit in case ftp gets hung. | |
1866 ;; It matters because this function can be called from the filter. | |
1867 ;; It is bad to allow quitting in a filter, but getting hung | |
1868 ;; is worse. By binding quit-flag to nil, we might avoid | |
1869 ;; most of the probability of getting screwed because the user | |
1870 ;; wants to quit some command. | |
1871 (let ((quit-flag nil) | |
1872 (inhibit-quit nil)) | |
1873 (while ange-ftp-process-busy | |
1874 (accept-process-output proc))) | |
1875 (quit | |
1876 ;; If the user does quit out of this, | |
1877 ;; kill the process. That stops any transfer in progress. | |
1878 ;; The next operation will open a new ftp connection. | |
1879 (delete-process proc) | |
1880 (signal 'quit nil))))) | |
1881 | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1882 (defun ange-ftp-nslookup-host (hostname) |
28210 | 1883 "Attempt to resolve the given HOSTNAME using nslookup if possible." |
1884 (interactive "sHost: ") | |
1885 (if ange-ftp-nslookup-program | |
1886 (let ((default-directory | |
1887 (if (file-accessible-directory-p default-directory) | |
1888 default-directory | |
1889 exec-directory)) | |
1890 ;; It would be nice to make process-connection-type nil, | |
1891 ;; but that doesn't work: ftp never responds. | |
1892 ;; Can anyone find a fix for that? | |
1893 (proc (let ((process-connection-type t)) | |
1894 (start-process " *nslookup*" " *nslookup*" | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1895 ange-ftp-nslookup-program hostname))) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1896 (res hostname)) |
56765
3c6aa215e03f
(ange-ftp-gwp-start, ange-ftp-nslookup-host)
Richard M. Stallman <rms@gnu.org>
parents:
56742
diff
changeset
|
1897 (set-process-query-on-exit-flag proc nil) |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
1898 (with-current-buffer (process-buffer proc) |
28210 | 1899 (while (memq (process-status proc) '(run open)) |
1900 (accept-process-output proc)) | |
1901 (goto-char (point-min)) | |
1902 (if (re-search-forward "Name:.*\nAddress: *\\(.*\\)$" nil t) | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
1903 (setq res (match-string 1))) |
28210 | 1904 (kill-buffer (current-buffer))) |
1905 res) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1906 hostname)) |
28210 | 1907 |
1908 (defun ange-ftp-start-process (host user name) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1909 "Spawn a new FTP process ready to connect to machine HOST and give it NAME. |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1910 If HOST is only FTP-able through a gateway machine then spawn a shell |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1911 on the gateway machine to do the FTP instead." |
28210 | 1912 (let* ((use-gateway (ange-ftp-use-gateway-p host)) |
1913 (use-smart-ftp (and (not ange-ftp-gateway-host) | |
1914 (ange-ftp-use-smart-gateway-p host))) | |
1915 (ftp-prog (if (or use-gateway | |
30459 | 1916 use-smart-ftp) |
28210 | 1917 ange-ftp-gateway-ftp-program-name |
1918 ange-ftp-ftp-program-name)) | |
1919 (args (append (list ftp-prog) ange-ftp-ftp-program-args)) | |
1920 ;; Without the following binding, ange-ftp-start-process | |
1921 ;; recurses on file-accessible-directory-p, since it needs to | |
1922 ;; restart its process in order to determine anything about | |
1923 ;; default-directory. | |
1924 (file-name-handler-alist) | |
1925 (default-directory | |
1926 (if (file-accessible-directory-p default-directory) | |
1927 default-directory | |
1928 exec-directory)) | |
1929 proc) | |
1930 ;; It would be nice to make process-connection-type nil, | |
1931 ;; but that doesn't work: ftp never responds. | |
1932 ;; Can anyone find a fix for that? | |
1933 (let ((process-connection-type t) | |
53415
d2a77d389b0e
(ange-ftp-start-process): Copy the environment.
Richard M. Stallman <rms@gnu.org>
parents:
53388
diff
changeset
|
1934 ;; Copy this so we don't alter it permanently. |
d2a77d389b0e
(ange-ftp-start-process): Copy the environment.
Richard M. Stallman <rms@gnu.org>
parents:
53388
diff
changeset
|
1935 (process-environment (copy-tree process-environment)) |
28210 | 1936 (buffer (get-buffer-create name))) |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
1937 (with-current-buffer buffer |
28210 | 1938 (internal-ange-ftp-mode)) |
1939 ;; This tells GNU ftp not to output any fancy escape sequences. | |
1940 (setenv "TERM" "dumb") | |
1941 (if use-gateway | |
1942 (if ange-ftp-gateway-program-interactive | |
1943 (setq proc (ange-ftp-gwp-start host user name args)) | |
1944 (setq proc (apply 'start-process name name | |
1945 (append (list ange-ftp-gateway-program | |
1946 ange-ftp-gateway-host) | |
1947 args)))) | |
1948 (setq proc (apply 'start-process name name args)))) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
1949 (with-current-buffer (process-buffer proc) |
28210 | 1950 (goto-char (point-max)) |
1951 (set-marker (process-mark proc) (point))) | |
56765
3c6aa215e03f
(ange-ftp-gwp-start, ange-ftp-nslookup-host)
Richard M. Stallman <rms@gnu.org>
parents:
56742
diff
changeset
|
1952 (set-process-query-on-exit-flag proc nil) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
1953 (set-process-sentinel proc 'ange-ftp-process-sentinel) |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
1954 (set-process-filter proc 'ange-ftp-process-filter) |
28210 | 1955 ;; On Windows, the standard ftp client buffers its output (because |
1956 ;; stdout is a pipe handle) so the startup message may never appear: | |
1957 ;; `accept-process-output' at this point would hang indefinitely. | |
1958 ;; However, sending an innocuous command ("help foo") forces some | |
1959 ;; output that will be ignored, which is just as good. Once we | |
1960 ;; start sending normal commands, the output no longer appears to be | |
1961 ;; buffered, and everything works correctly. My guess is that the | |
1962 ;; output of interest is being sent to stderr which is not buffered. | |
1963 (when (eq system-type 'windows-nt) | |
1964 ;; force ftp output to be treated as DOS text, otherwise the | |
1965 ;; output of "help foo" confuses the EOL detection logic. | |
1966 (set-process-coding-system proc 'raw-text-dos) | |
1967 (process-send-string proc "help foo\n")) | |
1968 (accept-process-output proc) ;wait for ftp startup message | |
1969 proc)) | |
1970 | |
104733
9902de48eab4
(internal-ange-ftp-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
104552
diff
changeset
|
1971 (define-derived-mode internal-ange-ftp-mode comint-mode "Internal Ange-ftp" |
28210 | 1972 "Major mode for interacting with the FTP process. |
1973 | |
1974 \\{comint-mode-map}" | |
63413
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1975 (make-local-variable 'ange-ftp-process-string) |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1976 (setq ange-ftp-process-string "") |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1977 (make-local-variable 'ange-ftp-process-busy) |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1978 (make-local-variable 'ange-ftp-process-result) |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1979 (make-local-variable 'ange-ftp-process-msg) |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1980 (make-local-variable 'ange-ftp-process-multi-skip) |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1981 (make-local-variable 'ange-ftp-process-result-line) |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1982 (make-local-variable 'ange-ftp-process-continue) |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1983 (make-local-variable 'ange-ftp-hash-mark-count) |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1984 (make-local-variable 'ange-ftp-binary-hash-mark-size) |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1985 (make-local-variable 'ange-ftp-ascii-hash-mark-size) |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1986 (make-local-variable 'ange-ftp-hash-mark-unit) |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1987 (make-local-variable 'ange-ftp-xfer-size) |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1988 (make-local-variable 'ange-ftp-last-percent) |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1989 (setq ange-ftp-hash-mark-count 0) |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1990 (setq ange-ftp-xfer-size 0) |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1991 (setq ange-ftp-process-result-line "") |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1992 (setq comint-prompt-regexp "^ftp> ") |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1993 (make-local-variable 'comint-password-prompt-regexp) |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1994 ;; This is a regexp that can't match anything. |
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1995 ;; ange-ftp has its own ways of handling passwords. |
64667
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
1996 (setq comint-password-prompt-regexp "\\`a\\`") |
63413
a66bfdd4586a
(internal-ange-ftp-mode): Use delay-mode-hooks and run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62460
diff
changeset
|
1997 (make-local-variable 'paragraph-start) |
104733
9902de48eab4
(internal-ange-ftp-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
104552
diff
changeset
|
1998 (setq paragraph-start comint-prompt-regexp)) |
28210 | 1999 |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2000 (defcustom ange-ftp-raw-login nil |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2001 "Use raw FTP commands for login, if account password is not nil. |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2002 Some FTP implementations need this, e.g. ftp in NT 4.0." |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2003 :group 'ange-ftp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2004 :version "21.3" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2005 :type 'boolean) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2006 |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2007 (defun ange-ftp-smart-login (host user password account proc) |
28210 | 2008 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. |
2009 PROC is the FTP-client's process. This routine uses the smart-gateway | |
30459 | 2010 host specified in `ange-ftp-gateway-host'." |
28210 | 2011 (let ((result (ange-ftp-raw-send-cmd |
2012 proc | |
2013 (format "open %s %s" | |
2014 (ange-ftp-nslookup-host ange-ftp-gateway-host) | |
2015 ange-ftp-smart-gateway-port) | |
2016 (format "Opening FTP connection to %s via %s" | |
2017 host | |
2018 ange-ftp-gateway-host)))) | |
2019 (or (car result) | |
30459 | 2020 (ange-ftp-error host user |
28210 | 2021 (concat "OPEN request failed: " |
2022 (cdr result)))) | |
2023 (setq result (ange-ftp-raw-send-cmd | |
2024 proc (format "user \"%s\"@%s %s %s" | |
2025 user | |
2026 (ange-ftp-nslookup-host host) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2027 password |
28210 | 2028 account) |
2029 (format "Logging in as user %s@%s" | |
2030 user host))) | |
2031 (or (car result) | |
2032 (progn | |
2033 (ange-ftp-set-passwd host user nil) ; reset password | |
2034 (ange-ftp-set-account host user nil) ; reset account | |
2035 (ange-ftp-error host user | |
2036 (concat "USER request failed: " | |
2037 (cdr result))))))) | |
2038 | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2039 (defun ange-ftp-normal-login (host user password account proc) |
28210 | 2040 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. |
2041 PROC is the process to the FTP-client. HOST may have an optional | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2042 suffix of the form #PORT to specify a non-default port." |
28210 | 2043 (save-match-data |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2044 (string-match "\\`\\([^#]+\\)\\(#\\([0-9]+\\)\\)?\\'" host) |
28210 | 2045 (let* ((nshost (ange-ftp-nslookup-host (match-string 1 host))) |
2046 (port (match-string 3 host)) | |
2047 (result (ange-ftp-raw-send-cmd | |
2048 proc | |
2049 (if port | |
2050 (format "open %s %s" nshost port) | |
2051 (format "open %s" nshost)) | |
2052 (format "Opening FTP connection to %s" host)))) | |
2053 (or (car result) | |
2054 (ange-ftp-error host user | |
2055 (concat "OPEN request failed: " | |
2056 (cdr result)))) | |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2057 (if (not (and ange-ftp-raw-login (string< "" account))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2058 (setq result (ange-ftp-raw-send-cmd |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2059 proc |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2060 (if (and (ange-ftp-use-smart-gateway-p host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2061 ange-ftp-gateway-host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2062 (format "user \"%s\"@%s %s %s" |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2063 user nshost password account) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2064 (format "user \"%s\" %s %s" user password account)) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2065 (format "Logging in as user %s@%s" user host))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2066 (let ((good ange-ftp-good-msgs) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2067 (skip ange-ftp-skip-msgs)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2068 (setq ange-ftp-good-msgs (concat ange-ftp-good-msgs |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2069 "\\|^331 \\|^332 ")) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2070 (if (string-match (regexp-quote "\\|^331 ") ange-ftp-skip-msgs) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2071 (setq ange-ftp-skip-msgs |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2072 (replace-match "" t t ange-ftp-skip-msgs))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2073 (if (string-match (regexp-quote "\\|^332 ") ange-ftp-skip-msgs) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2074 (setq ange-ftp-skip-msgs |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2075 (replace-match "" t t ange-ftp-skip-msgs))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2076 (setq result (ange-ftp-raw-send-cmd |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2077 proc |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2078 (format "quote \"USER %s\"" user) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2079 (format "Logging in as user %s@%s" user host))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2080 (and (car result) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2081 (setq result (ange-ftp-raw-send-cmd |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2082 proc |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2083 (format "quote \"PASS %s\"" password) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2084 (format "Logging in as user %s@%s" user host))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2085 (and (car result) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2086 (setq result (ange-ftp-raw-send-cmd |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2087 proc |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2088 (format "quote \"ACCT %s\"" account) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2089 (format "Logging in as user %s@%s" user host))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2090 )) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2091 (setq ange-ftp-good-msgs good |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2092 ange-ftp-skip-msgs skip))) |
28210 | 2093 (or (car result) |
2094 (progn | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
2095 (ange-ftp-set-passwd host user nil) ;reset password. |
28210 | 2096 (ange-ftp-set-account host user nil) ;reset account. |
2097 (ange-ftp-error host user | |
2098 (concat "USER request failed: " | |
2099 (cdr result)))))))) | |
2100 | |
2101 ;; ange@hplb.hpl.hp.com says this should not be changed. | |
2102 (defvar ange-ftp-hash-mark-msgs | |
2103 "[hH]ash mark [^0-9]*\\([0-9]+\\)" | |
2104 "*Regexp matching the FTP client's output upon doing a HASH command.") | |
2105 | |
2106 (defun ange-ftp-guess-hash-mark-size (proc) | |
2107 (if ange-ftp-send-hash | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
2108 (with-current-buffer (process-buffer proc) |
28210 | 2109 (let* ((status (ange-ftp-raw-send-cmd proc "hash")) |
2110 (line (cdr status))) | |
2111 (save-match-data | |
2112 (if (string-match ange-ftp-hash-mark-msgs line) | |
62402
a7e02ef1e3d6
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
59996
diff
changeset
|
2113 (let ((size (string-to-number (match-string 1 line)))) |
28210 | 2114 (setq ange-ftp-ascii-hash-mark-size size |
2115 ange-ftp-hash-mark-unit (ash size -4)) | |
2116 | |
2117 ;; if a default value for this is set, use that value. | |
2118 (or ange-ftp-binary-hash-mark-size | |
2119 (setq ange-ftp-binary-hash-mark-size size))))))))) | |
2120 | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2121 (defvar ange-ftp-process-startup-hook nil) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2122 |
28210 | 2123 (defun ange-ftp-get-process (host user) |
2124 "Return an FTP subprocess connected to HOST and logged in as USER. | |
2125 Create a new process if needed." | |
2126 (let* ((name (ange-ftp-ftp-process-buffer host user)) | |
2127 (proc (get-process name))) | |
2128 (if (and proc (memq (process-status proc) '(run open))) | |
2129 proc | |
2130 ;; Must delete dead process so that new process can reuse the name. | |
2131 (if proc (delete-process proc)) | |
2132 (let ((pass (ange-ftp-quote-string | |
2133 (ange-ftp-get-passwd host user))) | |
2134 (account (ange-ftp-quote-string | |
2135 (ange-ftp-get-account host user)))) | |
2136 ;; grab a suitable process. | |
2137 (setq proc (ange-ftp-start-process host user name)) | |
30459 | 2138 |
28210 | 2139 ;; login to FTP server. |
2140 (if (and (ange-ftp-use-smart-gateway-p host) | |
2141 ange-ftp-gateway-host) | |
2142 (ange-ftp-smart-login host user pass account proc) | |
2143 (ange-ftp-normal-login host user pass account proc)) | |
30459 | 2144 |
28210 | 2145 ;; Tell client to send back hash-marks as progress. It isn't usually |
2146 ;; fatal if this command fails. | |
2147 (ange-ftp-guess-hash-mark-size proc) | |
2148 | |
2149 ;; Guess at the host type. | |
2150 (ange-ftp-guess-host-type host user) | |
2151 | |
42393
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2152 ;; Turn passive mode on or off as requested. |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2153 (let* ((case-fold-search t) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2154 (passive |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2155 (or (assoc-default host ange-ftp-passive-host-alist |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2156 'string-match) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2157 (if ange-ftp-try-passive-mode "on")))) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2158 (if passive |
42801
b719a1276b31
(ange-ftp-passive-mode): New arg PROC.
Richard M. Stallman <rms@gnu.org>
parents:
42740
diff
changeset
|
2159 (ange-ftp-passive-mode proc passive))) |
28210 | 2160 |
2161 ;; Run any user-specified hooks. Note that proc, host and user are | |
2162 ;; dynamically bound at this point. | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
2163 (let ((ange-ftp-this-user user) |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
2164 (ange-ftp-this-host host)) |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
2165 (run-hooks 'ange-ftp-process-startup-hook))) |
28210 | 2166 proc))) |
2167 | |
42801
b719a1276b31
(ange-ftp-passive-mode): New arg PROC.
Richard M. Stallman <rms@gnu.org>
parents:
42740
diff
changeset
|
2168 (defun ange-ftp-passive-mode (proc on-or-off) |
42393
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2169 (if (string-match (concat "Passive mode " on-or-off) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2170 (cdr (ange-ftp-raw-send-cmd |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2171 proc (concat "passive " on-or-off) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2172 "Trying passive mode..." nil))) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2173 (ange-ftp-message (concat "Trying passive mode..." on-or-off)) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2174 (error "Trying passive mode...failed"))) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2175 |
28210 | 2176 ;; Variables for caching host and host-type |
2177 (defvar ange-ftp-host-cache nil) | |
2178 (defvar ange-ftp-host-type-cache nil) | |
2179 | |
2180 ;; If ange-ftp-host-type is called with the optional user | |
2181 ;; argument, it will attempt to guess the host type by connecting | |
2182 ;; as user, if necessary. For efficiency, I have tried to give this | |
2183 ;; optional second argument only when necessary. Have I missed any calls | |
2184 ;; to ange-ftp-host-type where it should have been supplied? | |
2185 | |
2186 (defun ange-ftp-host-type (host &optional user) | |
2187 "Return a symbol which represents the type of the HOST given. | |
2188 If the optional argument USER is given, attempts to guess the | |
2189 host-type by logging in as USER." | |
2190 (cond ((null host) 'unix) | |
2191 ;; Return `unix' if HOST is nil, since that's the most vanilla | |
2192 ;; possible return value. | |
2193 ((eq host ange-ftp-host-cache) | |
2194 ange-ftp-host-type-cache) | |
2195 ;; Trigger an ftp connection, in case we need to guess at the host type. | |
2196 ((and user (ange-ftp-get-process host user) (eq host ange-ftp-host-cache)) | |
2197 ange-ftp-host-type-cache) | |
2198 (t | |
2199 (setq ange-ftp-host-cache host | |
2200 ange-ftp-host-type-cache | |
2201 (cond ((ange-ftp-dumb-unix-host host) | |
2202 'dumb-unix) | |
2203 ;; ((and (fboundp 'ange-ftp-vos-host) | |
2204 ;; (ange-ftp-vos-host host)) | |
2205 ;; 'vos) | |
2206 ((and (fboundp 'ange-ftp-vms-host) | |
2207 (ange-ftp-vms-host host)) | |
2208 'vms) | |
2209 ((and (fboundp 'ange-ftp-mts-host) | |
2210 (ange-ftp-mts-host host)) | |
2211 'mts) | |
2212 ((and (fboundp 'ange-ftp-cms-host) | |
2213 (ange-ftp-cms-host host)) | |
2214 'cms) | |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2215 ((and (fboundp 'ange-ftp-bs2000-posix-host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2216 (ange-ftp-bs2000-posix-host host)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2217 'text-unix) ; POSIX is a non-ASCII Unix |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2218 ((and (fboundp 'ange-ftp-bs2000-host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2219 (ange-ftp-bs2000-host host)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2220 'bs2000) |
28210 | 2221 (t |
2222 'unix)))))) | |
2223 | |
2224 ;; It would be nice to abstract the functions ange-ftp-TYPE-host and | |
2225 ;; ange-ftp-add-TYPE-host. The trick is to abstract these functions | |
2226 ;; without sacrificing speed. Also, having separate variables | |
2227 ;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to | |
2228 ;; set an alist to indicate that a host is of a given type. Even with | |
2229 ;; automatic host type recognition, setting a regexp is still a good idea | |
2230 ;; (for efficiency) if you log into a particular non-UNIX host frequently. | |
2231 | |
2232 (defvar ange-ftp-fix-name-func-alist nil | |
2233 "Alist saying how to convert file name to the host's syntax. | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2234 Association list of (TYPE . FUNC) pairs, where FUNC is a routine which can |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2235 change a UNIX file name into a name more suitable for a host of type TYPE.") |
28210 | 2236 |
2237 (defvar ange-ftp-fix-dir-name-func-alist nil | |
2238 "Alist saying how to convert directory name to the host's syntax. | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2239 Association list of (TYPE . FUNC) pairs, where FUNC is a routine which can |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2240 change UNIX directory name into a directory name more suitable for a host |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2241 of type TYPE.") |
28210 | 2242 |
2243 ;; *** Perhaps the sense of this variable should be inverted, since there | |
2244 ;; *** is only 1 host type that can take ls-style listing options. | |
2245 (defvar ange-ftp-dumb-host-types '(dumb-unix) | |
2246 "List of host types that can't take UNIX ls-style listing options.") | |
2247 | |
2248 (defun ange-ftp-send-cmd (host user cmd &optional msg cont nowait) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2249 "Find an FTP process connected to HOST logged in as USER and send it CMD. |
28210 | 2250 MSG is an optional status message to be output before and after issuing the |
2251 command. | |
30459 | 2252 See the documentation for `ange-ftp-raw-send-cmd' for a description of CONT |
28210 | 2253 and NOWAIT." |
2254 ;; Handle conversion to remote file name syntax and remote ls option | |
2255 ;; capability. | |
2256 (let ((cmd0 (car cmd)) | |
2257 (cmd1 (nth 1 cmd)) | |
2258 (ange-ftp-this-user user) | |
2259 (ange-ftp-this-host host) | |
2260 (ange-ftp-this-msg msg) | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2261 cmd2 cmd3 host-type fix-name-func result) |
28210 | 2262 |
2263 (cond | |
30459 | 2264 |
28210 | 2265 ;; pwd case (We don't care what host-type.) |
2266 ((null cmd1)) | |
30459 | 2267 |
28210 | 2268 ;; cmd == 'dir "remote-name" "local-name" "ls-switches" |
2269 ((progn | |
2270 (setq cmd2 (nth 2 cmd) | |
2271 host-type (ange-ftp-host-type host user)) | |
2272 ;; This will trigger an FTP login, if one doesn't exist | |
2273 (eq cmd0 'dir)) | |
2274 (setq cmd1 (funcall | |
2275 (or (cdr (assq host-type ange-ftp-fix-dir-name-func-alist)) | |
2276 'identity) | |
2277 cmd1) | |
2278 cmd3 (nth 3 cmd)) | |
42740
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
2279 ;; Need to deal with the HP-UX ftp bug. This should also allow us to |
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
2280 ;; resolve symlinks to directories on SysV machines. (Sebastian will |
28210 | 2281 ;; be happy.) |
2282 (and (eq host-type 'unix) | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2283 (string-match "/\\'" cmd1) |
28210 | 2284 (not (string-match "R" cmd3)) |
2285 (setq cmd1 (concat cmd1 "."))) | |
2286 | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
2287 ;; Using "ls -flags foo" has several problems: |
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
2288 ;; - if foo is a symlink, we may get a single line showing the symlink |
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
2289 ;; rather than the listing of the directory it points to. |
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
2290 ;; - if "foo" has spaces, the parsing of the command may be done wrong. |
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
2291 ;; - some version of netbsd's ftpd only accept a single argument after |
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
2292 ;; `ls', which can either be the directory or the flags. |
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
2293 ;; So to work around those problems, we use "cd foo; ls -flags". |
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
2294 |
28210 | 2295 ;; If the dir name contains a space, some ftp servers will |
2296 ;; refuse to list it. We instead change directory to the | |
2297 ;; directory in question and ls ".". | |
2298 (when (string-match " " cmd1) | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2299 ;; Keep the result. In case of failure, we will (see below) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2300 ;; short-circuit CMD and return this result directly. |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2301 (setq result (ange-ftp-cd host user (nth 1 cmd) 'noerror)) |
28210 | 2302 (setq cmd1 ".")) |
2303 | |
2304 ;; If the remote ls can take switches, put them in | |
45432
85b978f04df7
(ange-ftp-generate-root-prefixes)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45260
diff
changeset
|
2305 (unless (memq host-type ange-ftp-dumb-host-types) |
85b978f04df7
(ange-ftp-generate-root-prefixes)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45260
diff
changeset
|
2306 (setq cmd0 'ls) |
85b978f04df7
(ange-ftp-generate-root-prefixes)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45260
diff
changeset
|
2307 ;; We cd and then use `ls' with no directory argument. |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2308 ;; This works around a misfeature of some versions of netbsd ftpd |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2309 ;; where `ls' can only take one argument: either one set of flags |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2310 ;; or a file/directory name. |
65762
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
2311 ;; If we're trying to `ls' a single file, this fails since we |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2312 ;; can't cd to a file. We can't fix this problem here, tho, because |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2313 ;; at this point we don't know whether the argument is a file or |
65762
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
2314 ;; a directory. Such an `ls' is only ever used (apparently) from |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2315 ;; `insert-directory' when the `full-directory-p' argument is nil |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2316 ;; (which seems to only be used by dired when updating its display |
65762
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
2317 ;; after operating on a set of files). So we've changed |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
2318 ;; `ange-ftp-insert-directory' such that in this case it gets |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2319 ;; a full listing of the directory and extracting the line |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2320 ;; corresponding to the requested file. |
45432
85b978f04df7
(ange-ftp-generate-root-prefixes)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45260
diff
changeset
|
2321 (unless (equal cmd1 ".") |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2322 (setq result (ange-ftp-cd host user (nth 1 cmd) 'noerror))) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2323 (setq cmd1 cmd3))) |
30459 | 2324 |
28210 | 2325 ;; First argument is the remote name |
2326 ((progn | |
2327 (setq fix-name-func (or (cdr (assq host-type | |
2328 ange-ftp-fix-name-func-alist)) | |
2329 'identity)) | |
2330 (memq cmd0 '(get delete mkdir rmdir cd))) | |
2331 (setq cmd1 (funcall fix-name-func cmd1))) | |
2332 | |
2333 ;; Second argument is the remote name | |
40361
8c6df631e62d
(ange-ftp-send-cmd): Call fix-name-func for
Gerd Moellmann <gerd@gnu.org>
parents:
39888
diff
changeset
|
2334 ((or (memq cmd0 '(append put chmod)) |
8c6df631e62d
(ange-ftp-send-cmd): Call fix-name-func for
Gerd Moellmann <gerd@gnu.org>
parents:
39888
diff
changeset
|
2335 (and (eq cmd0 'quote) (string= cmd1 "mdtm"))) |
28210 | 2336 (setq cmd2 (funcall fix-name-func cmd2))) |
2337 ;; Both arguments are remote names | |
2338 ((eq cmd0 'rename) | |
2339 (setq cmd1 (funcall fix-name-func cmd1) | |
2340 cmd2 (funcall fix-name-func cmd2)))) | |
30459 | 2341 |
2342 ;; Turn the command into one long string | |
28210 | 2343 (setq cmd0 (symbol-name cmd0)) |
2344 (setq cmd (concat cmd0 | |
2345 (and cmd1 (concat " " cmd1)) | |
2346 (and cmd2 (concat " " cmd2)))) | |
2347 | |
2348 ;; Actually send the resulting command. | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2349 (if (and (consp result) (null (car result))) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2350 ;; `ange-ftp-cd' has failed, so there's no point sending `cmd'. |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2351 result |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2352 (let (afsc-result |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2353 afsc-line) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2354 (ange-ftp-raw-send-cmd |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2355 (ange-ftp-get-process host user) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2356 cmd |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2357 msg |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2358 (list (lambda (result line host user cmd msg cont nowait) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2359 (or cont (setq afsc-result result |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2360 afsc-line line)) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2361 (if result (ange-ftp-call-cont cont result line) |
30459 | 2362 (ange-ftp-raw-send-cmd |
2363 (ange-ftp-get-process host user) | |
2364 cmd | |
2365 msg | |
2366 (list (lambda (result line cont) | |
2367 (or cont (setq afsc-result result | |
2368 afsc-line line)) | |
2369 (ange-ftp-call-cont cont result line)) | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2370 cont) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2371 nowait))) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2372 host user cmd msg cont nowait) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2373 nowait) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2374 |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2375 (if nowait |
28210 | 2376 nil |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2377 (if cont |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2378 nil |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2379 (cons afsc-result afsc-line))))))) |
28210 | 2380 |
2381 ;; It might be nice to message users about the host type identified, | |
2382 ;; but there is so much other messaging going on, it would not be | |
2383 ;; seen. No point in slowing things down just so users can read | |
2384 ;; a host type message. | |
2385 | |
2386 (defconst ange-ftp-cms-name-template | |
2387 (concat | |
2388 "^[-A-Z0-9$*][-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?" | |
2389 "[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?\\.[0-9][0-9][0-9A-Z]$")) | |
2390 (defconst ange-ftp-vms-name-template | |
2391 "^[-A-Z0-9_$]+:\\[[-A-Z0-9_$]+\\(\\.[-A-Z0-9_$]+\\)*\\]$") | |
2392 (defconst ange-ftp-mts-name-template | |
2393 "^[A-Z0-9._][A-Z0-9._][A-Z0-9._][A-Z0-9._]:$") | |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2394 (defconst ange-ftp-bs2000-filename-pubset-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2395 ":[A-Z0-9]+:" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2396 "Valid pubset for an BS2000 file name.") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2397 (defconst ange-ftp-bs2000-filename-username-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2398 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2399 "\\$[A-Z0-9]*\\.") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2400 "Valid username for an BS2000 file name.") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2401 (defconst ange-ftp-bs2000-filename-prefix-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2402 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2403 ange-ftp-bs2000-filename-pubset-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2404 ange-ftp-bs2000-filename-username-regexp) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2405 "Valid prefix for an BS2000 file name (pubset and user).") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2406 (defconst ange-ftp-bs2000-name-template |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2407 (concat "^" ange-ftp-bs2000-filename-prefix-regexp "$")) |
28210 | 2408 |
2409 (defun ange-ftp-guess-host-type (host user) | |
42706 | 2410 "Guess the host type of HOST. |
28210 | 2411 Works by doing a pwd and examining the directory syntax." |
2412 (let ((host-type (ange-ftp-host-type host)) | |
2413 (key (concat host "/" user "/~"))) | |
2414 (if (eq host-type 'unix) | |
2415 ;; Note that ange-ftp-host-type returns unix as the default value. | |
2416 (save-match-data | |
2417 (let* ((result (ange-ftp-get-pwd host user)) | |
2418 (dir (car result)) | |
2419 fix-name-func) | |
2420 (cond ((null dir) | |
2421 (message "Warning! Unable to get home directory") | |
2422 (sit-for 1) | |
2423 (if (string-match | |
2424 "^450 No current working directory defined$" | |
2425 (cdr result)) | |
30459 | 2426 |
28210 | 2427 ;; We'll assume that if pwd bombs with this |
2428 ;; error message, then it's CMS. | |
2429 (progn | |
2430 (ange-ftp-add-cms-host host) | |
2431 (setq ange-ftp-host-cache host | |
2432 ange-ftp-host-type-cache 'cms)))) | |
2433 | |
2434 ;; try for VMS | |
2435 ((string-match ange-ftp-vms-name-template dir) | |
2436 (ange-ftp-add-vms-host host) | |
2437 ;; The add-host functions clear the host type cache. | |
2438 ;; Therefore, need to set the cache afterwards. | |
2439 (setq ange-ftp-host-cache host | |
2440 ange-ftp-host-type-cache 'vms)) | |
2441 | |
2442 ;; try for MTS | |
2443 ((string-match ange-ftp-mts-name-template dir) | |
2444 (ange-ftp-add-mts-host host) | |
2445 (setq ange-ftp-host-cache host | |
2446 ange-ftp-host-type-cache 'mts)) | |
30459 | 2447 |
28210 | 2448 ;; try for CMS |
2449 ((string-match ange-ftp-cms-name-template dir) | |
2450 (ange-ftp-add-cms-host host) | |
2451 (setq ange-ftp-host-cache host | |
2452 ange-ftp-host-type-cache 'cms)) | |
2453 | |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2454 ;; try for BS2000-POSIX |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2455 ((ange-ftp-bs2000-posix-host host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2456 (ange-ftp-add-bs2000-host host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2457 (setq ange-ftp-host-cache host |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2458 ange-ftp-host-type-cache 'text-unix)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2459 ;; try for BS2000 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2460 ((and (string-match ange-ftp-bs2000-name-template dir) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2461 (not (ange-ftp-bs2000-posix-host host))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2462 (ange-ftp-add-bs2000-host host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2463 (setq ange-ftp-host-cache host |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2464 ange-ftp-host-type-cache 'bs2000)) |
28210 | 2465 ;; assume UN*X |
2466 (t | |
2467 (setq ange-ftp-host-cache host | |
2468 ange-ftp-host-type-cache 'unix))) | |
2469 | |
2470 ;; Now that we have done a pwd, might as well put it in | |
2471 ;; the expand-dir hashtable. | |
2472 (let ((ange-ftp-this-user user) | |
2473 (ange-ftp-this-host host)) | |
2474 (setq fix-name-func (cdr (assq ange-ftp-host-type-cache | |
2475 ange-ftp-fix-name-func-alist))) | |
2476 (if fix-name-func | |
2477 (setq dir (funcall fix-name-func dir 'reverse)))) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2478 (puthash key dir ange-ftp-expand-dir-hashtable)))) |
28210 | 2479 |
2480 ;; In the special case of CMS make sure that know the | |
2481 ;; expansion of the home minidisk now, because we will | |
2482 ;; be doing a lot of cd's. | |
2483 (if (and (eq host-type 'cms) | |
2484 (not (ange-ftp-hash-entry-exists-p | |
2485 key ange-ftp-expand-dir-hashtable))) | |
2486 (let ((dir (car (ange-ftp-get-pwd host user)))) | |
2487 (if dir | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2488 (puthash key (concat "/" dir) ange-ftp-expand-dir-hashtable) |
28210 | 2489 (message "Warning! Unable to get home directory") |
2490 (sit-for 1)))))) | |
2491 | |
2492 | |
2493 ;;;; ------------------------------------------------------------ | |
2494 ;;;; Remote file and directory listing support. | |
2495 ;;;; ------------------------------------------------------------ | |
2496 | |
2497 ;; Returns whether HOST's FTP server doesn't like \'ls\' or \'dir\' commands | |
2498 ;; to take switch arguments. | |
2499 (defun ange-ftp-dumb-unix-host (host) | |
2500 (and host ange-ftp-dumb-unix-host-regexp | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2501 (string-match-p ange-ftp-dumb-unix-host-regexp host))) |
28210 | 2502 |
2503 (defun ange-ftp-add-dumb-unix-host (host) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2504 "Interactively add a given HOST to `ange-ftp-dumb-unix-host-regexp'." |
28210 | 2505 (interactive |
2506 (list (read-string "Host: " | |
2507 (let ((name (or (buffer-file-name) default-directory))) | |
2508 (and name (car (ange-ftp-ftp-name name))))))) | |
2509 (if (not (ange-ftp-dumb-unix-host host)) | |
2510 (setq ange-ftp-dumb-unix-host-regexp | |
2511 (concat "^" (regexp-quote host) "$" | |
2512 (and ange-ftp-dumb-unix-host-regexp "\\|") | |
2513 ange-ftp-dumb-unix-host-regexp) | |
2514 ange-ftp-host-cache nil))) | |
2515 | |
2516 (defvar ange-ftp-parse-list-func-alist nil | |
2517 "Alist saying how to parse directory listings for certain OS types. | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2518 Association list of (TYPE . FUNC) pairs. The FUNC is a routine which |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2519 can parse the output from a DIR listing for a host of type TYPE.") |
28210 | 2520 |
2521 ;; With no-error nil, this function returns: | |
2522 ;; an error if file is not an ange-ftp-name | |
30459 | 2523 ;; (This should never happen.) |
28210 | 2524 ;; an error if either the listing is unreadable or there is an ftp error. |
2525 ;; the listing (a string), if everything works. | |
30459 | 2526 ;; |
28210 | 2527 ;; With no-error t, it returns: |
2528 ;; an error if not an ange-ftp-name | |
2529 ;; error if listing is unreadable (most likely caused by a slow connection) | |
2530 ;; nil if ftp error (this is because although asking to list a nonexistent | |
2531 ;; directory on a remote unix machine usually (except | |
2532 ;; maybe for dumb hosts) returns an ls error, but no | |
2533 ;; ftp error, if the same is done on a VMS machine, | |
2534 ;; an ftp error is returned. Need to trap the error | |
2535 ;; so we can go on and try to list the parent.) | |
2536 ;; the listing, if everything works. | |
2537 | |
2538 ;; If WILDCARD is non-nil, then this implements the guts of insert-directory | |
2539 ;; in the wildcard case. Then we make a relative directory listing | |
2540 ;; of FILE within the directory specified by `default-directory'. | |
2541 | |
2542 (defvar ange-ftp-before-parse-ls-hook nil | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2543 "Normal hook run before parsing the text of an FTP directory listing.") |
28210 | 2544 |
37813
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
2545 (defvar ange-ftp-after-parse-ls-hook nil |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2546 "Normal hook run after parsing the text of an FTP directory listing.") |
37813
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
2547 |
28210 | 2548 (defun ange-ftp-ls (file lsargs parse &optional no-error wildcard) |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2549 "Return the output of a `DIR' or `ls' command done over FTP. |
28210 | 2550 FILE is the full name of the remote file, LSARGS is any args to pass to the |
2551 `ls' command, and PARSE specifies that the output should be parsed and stored | |
2552 away in the internal cache." | |
47575
4d9f899a5963
* dired.el (dired-insert-directory): Always add "--dired" to to
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
47113
diff
changeset
|
2553 (when (string-match "^--dired\\s-+" lsargs) |
4d9f899a5963
* dired.el (dired-insert-directory): Always add "--dired" to to
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
47113
diff
changeset
|
2554 (setq lsargs (replace-match "" nil t lsargs))) |
28210 | 2555 ;; If parse is t, we assume that file is a directory. i.e. we only parse |
2556 ;; full directory listings. | |
2557 (let* ((ange-ftp-this-file (ange-ftp-expand-file-name file)) | |
2558 (parsed (ange-ftp-ftp-name ange-ftp-this-file))) | |
2559 (if parsed | |
2560 (let* ((host (nth 0 parsed)) | |
2561 (user (nth 1 parsed)) | |
2562 (name (ange-ftp-quote-string (nth 2 parsed))) | |
2563 (key (directory-file-name ange-ftp-this-file)) | |
2564 (host-type (ange-ftp-host-type host user)) | |
2565 (dumb (memq host-type ange-ftp-dumb-host-types)) | |
2566 result | |
2567 temp | |
2568 lscmd parse-func) | |
2569 (if (string-equal name "") | |
2570 (setq name | |
2571 (ange-ftp-real-file-name-as-directory | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2572 (ange-ftp-expand-dir host user "~")))) |
28210 | 2573 (if (and ange-ftp-ls-cache-file |
2574 (string-equal key ange-ftp-ls-cache-file) | |
2575 ;; Don't care about lsargs for dumb hosts. | |
2576 (or dumb (string-equal lsargs ange-ftp-ls-cache-lsargs))) | |
2577 ange-ftp-ls-cache-res | |
2578 (setq temp (ange-ftp-make-tmp-name host)) | |
2579 (if wildcard | |
2580 (progn | |
2581 (ange-ftp-cd host user (file-name-directory name)) | |
75552
4144cd078a1d
* files.el (get-free-disk-space): Return nil for remote
Michael Albinus <michael.albinus@gmx.de>
parents:
75347
diff
changeset
|
2582 (setq lscmd (list 'ls file temp lsargs))) |
28210 | 2583 (setq lscmd (list 'dir name temp lsargs))) |
2584 (unwind-protect | |
2585 (if (car (setq result (ange-ftp-send-cmd | |
2586 host | |
2587 user | |
2588 lscmd | |
2589 (format "Listing %s" | |
2590 (ange-ftp-abbreviate-filename | |
2591 ange-ftp-this-file))))) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
2592 (with-current-buffer (get-buffer-create |
65814
967a91879fee
(ange-ftp-ls): Fix typo introduced in last change.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
65810
diff
changeset
|
2593 ange-ftp-data-buffer-name) |
28210 | 2594 (erase-buffer) |
2595 (if (ange-ftp-real-file-readable-p temp) | |
2596 (ange-ftp-real-insert-file-contents temp) | |
2597 (sleep-for ange-ftp-retry-time) | |
2598 ;wait for file to possibly appear | |
2599 (if (ange-ftp-real-file-readable-p temp) | |
2600 ;; Try again. | |
2601 (ange-ftp-real-insert-file-contents temp) | |
2602 (ange-ftp-error host user | |
2603 (format | |
2604 "list data file %s not readable" | |
2605 temp)))) | |
30518
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30481
diff
changeset
|
2606 ;; remove ^M inserted by the win32 ftp client |
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30481
diff
changeset
|
2607 (while (re-search-forward "\r$" nil t) |
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30481
diff
changeset
|
2608 (replace-match "")) |
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30481
diff
changeset
|
2609 (goto-char 1) |
28210 | 2610 (run-hooks 'ange-ftp-before-parse-ls-hook) |
2611 (if parse | |
2612 (ange-ftp-set-files | |
2613 ange-ftp-this-file | |
2614 (if (setq | |
2615 parse-func | |
2616 (cdr (assq host-type | |
2617 ange-ftp-parse-list-func-alist))) | |
2618 (funcall parse-func) | |
2619 (ange-ftp-parse-dired-listing lsargs)))) | |
37813
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
2620 ;; Place this hook here to convert the contents of the |
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
2621 ;; buffer to a ls compatible format if the host system |
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
2622 ;; that is being queried is other than Unix i.e. VMS |
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
2623 ;; returns an ls format that really sucks. |
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
2624 (run-hooks 'ange-ftp-after-parse-ls-hook) |
28210 | 2625 (setq ange-ftp-ls-cache-file key |
2626 ange-ftp-ls-cache-lsargs lsargs | |
2627 ; For dumb hosts-types this is | |
2628 ; meaningless but harmless. | |
2629 ange-ftp-ls-cache-res (buffer-string)) | |
2630 ;; (kill-buffer (current-buffer)) | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2631 (if (equal ange-ftp-ls-cache-res "total 0\n") |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2632 ;; wu-ftpd seems to return a successful result |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2633 ;; with an empty file-listing when doing a |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2634 ;; `DIR /some/file/.' which leads ange-ftp to |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2635 ;; believe that /some/file is a directory ;-( |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2636 nil |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2637 ange-ftp-ls-cache-res)) |
28210 | 2638 (if no-error |
2639 nil | |
2640 (ange-ftp-error host user | |
2641 (concat "DIR failed: " (cdr result))))) | |
2642 (ange-ftp-del-tmp-name temp)))) | |
2643 (error "Should never happen. Please report. Bug ref. no.: 1")))) | |
2644 | |
2645 ;;;; ------------------------------------------------------------ | |
2646 ;;;; Directory information caching support. | |
2647 ;;;; ------------------------------------------------------------ | |
2648 | |
2649 (defvar ange-ftp-add-file-entry-alist nil | |
2650 "Alist saying how to add file entries on certain OS types. | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2651 Association list of pairs (TYPE . FUNC), where FUNC is a function |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2652 to be used to add a file entry for the OS TYPE. |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2653 The main reason for this alist is to deal with file versions in VMS.") |
28210 | 2654 |
2655 (defvar ange-ftp-delete-file-entry-alist nil | |
2656 "Alist saying how to delete files on certain OS types. | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2657 Association list of pairs (TYPE . FUNC), where FUNC is a function |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2658 to be used to delete a file entry for the OS TYPE. |
28210 | 2659 The main reason for this alist is to deal with file versions in VMS.") |
2660 | |
2661 (defun ange-ftp-add-file-entry (name &optional dir-p) | |
2662 "Add a file entry for file NAME, if its directory info exists." | |
2663 (funcall (or (cdr (assq (ange-ftp-host-type | |
2664 (car (ange-ftp-ftp-name name))) | |
2665 ange-ftp-add-file-entry-alist)) | |
2666 'ange-ftp-internal-add-file-entry) | |
2667 name dir-p) | |
2668 (setq ange-ftp-ls-cache-file nil)) | |
2669 | |
2670 (defun ange-ftp-delete-file-entry (name &optional dir-p) | |
2671 "Delete the file entry for file NAME, if its directory info exists." | |
2672 (funcall (or (cdr (assq (ange-ftp-host-type | |
2673 (car (ange-ftp-ftp-name name))) | |
2674 ange-ftp-delete-file-entry-alist)) | |
2675 'ange-ftp-internal-delete-file-entry) | |
2676 name dir-p) | |
2677 (setq ange-ftp-ls-cache-file nil)) | |
2678 | |
2679 (defmacro ange-ftp-parse-filename () | |
2680 ;;Extract the filename from the current line of a dired-like listing. | |
30459 | 2681 `(let ((eol (progn (end-of-line) (point)))) |
2682 (beginning-of-line) | |
66325
fda96ff4c7e5
* files.el (directory-listing-before-filename-regexp): New
Michael Albinus <michael.albinus@gmx.de>
parents:
66256
diff
changeset
|
2683 (if (re-search-forward directory-listing-before-filename-regexp eol t) |
fda96ff4c7e5
* files.el (directory-listing-before-filename-regexp): New
Michael Albinus <michael.albinus@gmx.de>
parents:
66256
diff
changeset
|
2684 (buffer-substring (point) eol)))) |
30459 | 2685 |
28210 | 2686 ;; This deals with the F switch. Should also do something about |
2687 ;; unquoting names obtained with the SysV b switch and the GNU Q | |
2688 ;; switch. See Sebastian's dired-get-filename. | |
2689 | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
2690 (defun ange-ftp-ls-parser (switches) |
28210 | 2691 ;; Meant to be called by ange-ftp-parse-dired-listing |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2692 (let ((tbl (make-hash-table :test 'equal)) |
46178
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2693 (used-F (and (stringp switches) |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2694 (string-match "F" switches))) |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2695 file-type symlink directory file) |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2696 (while (setq file (ange-ftp-parse-filename)) |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2697 (beginning-of-line) |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2698 (skip-chars-forward "\t 0-9") |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2699 (setq file-type (following-char) |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2700 directory (eq file-type ?d)) |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2701 (if (eq file-type ?l) |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2702 (let ((end (string-match " -> " file))) |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2703 (if end |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2704 ;; Sometimes `ls' appends a @ at the end of the target. |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2705 (setq symlink (substring file (match-end 0) |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2706 (string-match "@\\'" file)) |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2707 file (substring file 0 end)) |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2708 ;; Shouldn't happen |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2709 (setq symlink ""))) |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2710 (setq symlink nil)) |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2711 ;; Only do a costly regexp search if the F switch was used. |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2712 (if (and used-F |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2713 (not (string-equal file "")) |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2714 (looking-at |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2715 ".[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)")) |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2716 (let ((socket (eq file-type ?s)) |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2717 (executable |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2718 (and (not symlink) ; x bits don't mean a thing for symlinks |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2719 (string-match |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2720 "[xst]" |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
2721 (concat (match-string 1) |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
2722 (match-string 2) |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
2723 (match-string 3)))))) |
46178
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2724 ;; Some ls's with the F switch mark symlinks with an @ (ULTRIX) |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2725 ;; and others don't. (sigh...) Beware, that some Unix's don't |
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2726 ;; seem to believe in the F-switch |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2727 (if (or (and symlink (string-match "@\\'" file)) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2728 (and directory (string-match "/\\'" file)) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2729 (and executable (string-match "*\\'" file)) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2730 (and socket (string-match "=\\'" file))) |
46178
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2731 (setq file (substring file 0 -1))))) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2732 (puthash file (or symlink directory) tbl) |
46178
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
2733 (forward-line 1)) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2734 (puthash "." t tbl) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2735 (puthash ".." t tbl) |
30459 | 2736 tbl)) |
28210 | 2737 |
2738 ;;; The dl stuff for descriptive listings | |
2739 | |
2740 (defvar ange-ftp-dl-dir-regexp nil | |
2741 "Regexp matching directories which are listed in dl format. | |
2742 This regexp should not be anchored with a trailing `$', because it should | |
2743 match subdirectories as well.") | |
2744 | |
2745 (defun ange-ftp-add-dl-dir (dir) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2746 "Interactively add a DIR to `ange-ftp-dl-dir-regexp'." |
28210 | 2747 (interactive |
2748 (list (read-string "Directory: " | |
2749 (let ((name (or (buffer-file-name) default-directory))) | |
2750 (and name (ange-ftp-ftp-name name) | |
2751 (file-name-directory name)))))) | |
2752 (if (not (and ange-ftp-dl-dir-regexp | |
2753 (string-match ange-ftp-dl-dir-regexp dir))) | |
2754 (setq ange-ftp-dl-dir-regexp | |
2755 (concat "^" (regexp-quote dir) | |
2756 (and ange-ftp-dl-dir-regexp "\\|") | |
2757 ange-ftp-dl-dir-regexp)))) | |
2758 | |
2759 (defmacro ange-ftp-dl-parser () | |
2760 ;; Parse the current buffer, which is assumed to be a descriptive | |
2761 ;; listing, and return a hashtable. | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2762 `(let ((tbl (make-hash-table :test 'equal))) |
30459 | 2763 (while (not (eobp)) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2764 (puthash |
30459 | 2765 (buffer-substring (point) |
2766 (progn | |
2767 (skip-chars-forward "^ /\n") | |
2768 (point))) | |
2769 (eq (following-char) ?/) | |
2770 tbl) | |
2771 (forward-line 1)) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2772 (puthash "." t tbl) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2773 (puthash ".." t tbl) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2774 tbl)) |
28210 | 2775 |
2776 ;; Parse the current buffer which is assumed to be in a dired-like listing | |
2777 ;; format, and return a hashtable as the result. If the listing is not really | |
2778 ;; a listing, then return nil. | |
2779 | |
2780 (defun ange-ftp-parse-dired-listing (&optional switches) | |
2781 (save-match-data | |
2782 (cond | |
2783 ((looking-at "^total [0-9]+$") | |
2784 (forward-line 1) | |
2785 ;; Some systems put in a blank line here. | |
2786 (if (eolp) (forward-line 1)) | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
2787 (ange-ftp-ls-parser switches)) |
28210 | 2788 ((looking-at "[^\n]+\\( not found\\|: Not a directory\\)\n\\'") |
2789 ;; It's an ls error message. | |
2790 nil) | |
2791 ((eobp) ; i.e. (zerop (buffer-size)) | |
2792 ;; This could be one of: | |
2793 ;; (1) An Ultrix ls error message | |
2794 ;; (2) A listing with the A switch of an empty directory | |
2795 ;; on a machine which doesn't give a total line. | |
2796 ;; (3) The twilight zone. | |
2797 ;; We'll assume (1) for now. | |
2798 nil) | |
66325
fda96ff4c7e5
* files.el (directory-listing-before-filename-regexp): New
Michael Albinus <michael.albinus@gmx.de>
parents:
66256
diff
changeset
|
2799 ((re-search-forward directory-listing-before-filename-regexp nil t) |
28210 | 2800 (beginning-of-line) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
2801 (ange-ftp-ls-parser switches)) |
28210 | 2802 ((re-search-forward "^[^ \n\t]+ +\\([0-9]+\\|-\\|=\\) " nil t) |
2803 ;; It's a dl listing (I hope). | |
2804 ;; file is bound by the call to ange-ftp-ls | |
2805 (ange-ftp-add-dl-dir ange-ftp-this-file) | |
2806 (beginning-of-line) | |
2807 (ange-ftp-dl-parser)) | |
2808 (t nil)))) | |
2809 | |
2810 (defun ange-ftp-set-files (directory files) | |
2811 "For a given DIRECTORY, set or change the associated FILES hashtable." | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2812 (and files (puthash (file-name-as-directory directory) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2813 files ange-ftp-files-hashtable))) |
28210 | 2814 |
2815 (defun ange-ftp-get-files (directory &optional no-error) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2816 "Given a DIRECTORY, return a hashtable of file entries. |
28210 | 2817 This will give an error or return nil, depending on the value of |
2818 NO-ERROR, if a listing for DIRECTORY cannot be obtained." | |
2819 (setq directory (file-name-as-directory directory)) ;normalize | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2820 (or (gethash directory ange-ftp-files-hashtable) |
28210 | 2821 (save-match-data |
2822 (and (ange-ftp-ls directory | |
2823 ;; This is an efficiency hack. We try to | |
2824 ;; anticipate what sort of listing dired | |
2825 ;; might want, and cache just such a listing. | |
2826 (if (and (boundp 'dired-actual-switches) | |
2827 (stringp dired-actual-switches) | |
2828 ;; We allow the A switch, which lists | |
2829 ;; all files except "." and "..". | |
2830 ;; This is OK because we manually | |
2831 ;; insert these entries | |
2832 ;; in the hash table. | |
2833 (string-match | |
2834 "[aA]" dired-actual-switches) | |
2835 (string-match | |
2836 "l" dired-actual-switches) | |
2837 (not (string-match | |
2838 "R" dired-actual-switches))) | |
2839 dired-actual-switches | |
2840 (if (and (boundp 'dired-listing-switches) | |
2841 (stringp dired-listing-switches) | |
2842 (string-match | |
2843 "[aA]" dired-listing-switches) | |
2844 (string-match | |
2845 "l" dired-listing-switches) | |
2846 (not (string-match | |
2847 "R" dired-listing-switches))) | |
2848 dired-listing-switches | |
2849 "-al")) | |
2850 t no-error) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2851 (gethash directory ange-ftp-files-hashtable))))) |
28210 | 2852 |
2853 ;; Given NAME, return the file part that can be used for looking up the | |
2854 ;; file's entry in a hashtable. | |
2855 (defmacro ange-ftp-get-file-part (name) | |
30459 | 2856 `(let ((file (file-name-nondirectory ,name))) |
2857 (if (string-equal file "") | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
2858 "." |
30459 | 2859 file))) |
28210 | 2860 |
2861 ;; Return whether ange-ftp-file-entry-p and ange-ftp-get-file-entry are | |
2862 ;; allowed to determine if NAME is a sub-directory by listing it directly, | |
2863 ;; rather than listing its parent directory. This is used for efficiency so | |
2864 ;; that a wasted listing is not done: | |
2865 ;; 1. When looking for a .dired file in dired-x.el. | |
2866 ;; 2. The syntax of FILE and DIR make it impossible that FILE could be a valid | |
2867 ;; subdirectory. This is of course an OS dependent judgement. | |
2868 | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
2869 (defvar dired-local-variables-file) |
28210 | 2870 (defmacro ange-ftp-allow-child-lookup (dir file) |
45459
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2871 `(not |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2872 (let* ((efile ,file) ; expand once. |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2873 (edir ,dir) |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2874 (parsed (ange-ftp-ftp-name edir)) |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2875 (host-type (ange-ftp-host-type |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2876 (car parsed)))) |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2877 (or |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2878 ;; Deal with dired |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2879 (and (boundp 'dired-local-variables-file) ; in the dired-x package |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2880 (stringp dired-local-variables-file) |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2881 (string-equal dired-local-variables-file efile)) |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2882 ;; No dots in dir names in vms. |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2883 (and (eq host-type 'vms) |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2884 (string-match "\\." efile)) |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2885 ;; No subdirs in mts of cms. |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2886 (and (memq host-type '(mts cms)) |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2887 (not (string-equal "/" (nth 2 parsed)))) |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2888 ;; No dots in pseudo-dir names in bs2000. |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2889 (and (eq host-type 'bs2000) |
d9e7dc0ccc84
(ange-ftp-allow-child-lookup): Re-enable since
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45432
diff
changeset
|
2890 (string-match "\\." efile)))))) |
28210 | 2891 |
2892 (defun ange-ftp-file-entry-p (name) | |
2893 "Given NAME, return whether there is a file entry for it." | |
2894 (let* ((name (directory-file-name name)) | |
2895 (dir (file-name-directory name)) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2896 (ent (gethash dir ange-ftp-files-hashtable)) |
28210 | 2897 (file (ange-ftp-get-file-part name))) |
2898 (if ent | |
2899 (ange-ftp-hash-entry-exists-p file ent) | |
2900 (or (and (ange-ftp-allow-child-lookup dir file) | |
2901 (setq ent (ange-ftp-get-files name t)) | |
2902 ;; Try a child lookup. i.e. try to list file as a | |
2903 ;; subdirectory of dir. This is a good idea because | |
2904 ;; we may not have read permission for file's parent. Also, | |
2905 ;; people tend to work down directory trees anyway. We use | |
2906 ;; no-error ;; because if file does not exist as a subdir., | |
2907 ;; then dumb hosts will give an ftp error. Smart unix hosts | |
2908 ;; will simply send back the ls | |
2909 ;; error message. | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2910 (gethash "." ent)) |
28210 | 2911 ;; Child lookup failed, so try the parent. |
56742
19c16bca1b49
(ange-ftp-hash-entry-exists-p)
David Kastrup <dak@gnu.org>
parents:
56259
diff
changeset
|
2912 (ange-ftp-hash-entry-exists-p |
19c16bca1b49
(ange-ftp-hash-entry-exists-p)
David Kastrup <dak@gnu.org>
parents:
56259
diff
changeset
|
2913 file (ange-ftp-get-files dir 'no-error)))))) |
28210 | 2914 |
2915 (defun ange-ftp-get-file-entry (name) | |
2916 "Given NAME, return the given file entry. | |
2917 The entry will be either t for a directory, nil for a normal file, | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2918 or a string for a symlink. If the file isn't in the hashtable, |
28210 | 2919 this also returns nil." |
2920 (let* ((name (directory-file-name name)) | |
2921 (dir (file-name-directory name)) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2922 (ent (gethash dir ange-ftp-files-hashtable)) |
28210 | 2923 (file (ange-ftp-get-file-part name))) |
2924 (if ent | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2925 (gethash file ent) |
28210 | 2926 (or (and (ange-ftp-allow-child-lookup dir file) |
2927 (setq ent (ange-ftp-get-files name t)) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2928 (gethash "." ent)) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2929 ;; i.e. it's a directory by child lookup |
49805
6e4a6658cec0
(ange-ftp-get-file-entry): Allow for graceful
David Kastrup <dak@gnu.org>
parents:
49598
diff
changeset
|
2930 (and (setq ent (ange-ftp-get-files dir t)) |
6e4a6658cec0
(ange-ftp-get-file-entry): Allow for graceful
David Kastrup <dak@gnu.org>
parents:
49598
diff
changeset
|
2931 (gethash file ent)))))) |
28210 | 2932 |
2933 (defun ange-ftp-internal-delete-file-entry (name &optional dir-p) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2934 (when dir-p |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2935 (setq name (file-name-as-directory name)) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2936 (remhash name ange-ftp-files-hashtable) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2937 (setq name (directory-file-name name))) |
28210 | 2938 ;; Note that file-name-as-directory followed by directory-file-name |
2939 ;; serves to canonicalize directory file names to their unix form. | |
2940 ;; i.e. in VMS, FOO.DIR -> FOO/ -> FOO | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2941 (let ((files (gethash (file-name-directory name) ange-ftp-files-hashtable))) |
28210 | 2942 (if files |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2943 (remhash (ange-ftp-get-file-part name) files)))) |
28210 | 2944 |
2945 (defun ange-ftp-internal-add-file-entry (name &optional dir-p) | |
2946 (and dir-p | |
2947 (setq name (directory-file-name name))) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2948 (let ((files (gethash (file-name-directory name) ange-ftp-files-hashtable))) |
28210 | 2949 (if files |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2950 (puthash (ange-ftp-get-file-part name) dir-p files)))) |
28210 | 2951 |
2952 (defun ange-ftp-wipe-file-entries (host user) | |
2953 "Get rid of entry for HOST, USER pair from file entry information hashtable." | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2954 (let ((new-tbl (make-hash-table :test 'equal |
46892
6e8123be5cab
(ange-ftp-wipe-file-entries): Fix type mismatch;
David Kastrup <dak@gnu.org>
parents:
46811
diff
changeset
|
2955 :size (hash-table-size |
6e8123be5cab
(ange-ftp-wipe-file-entries): Fix type mismatch;
David Kastrup <dak@gnu.org>
parents:
46811
diff
changeset
|
2956 ange-ftp-files-hashtable)))) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2957 (maphash |
30459 | 2958 (lambda (key val) |
2959 (let ((parsed (ange-ftp-ftp-name key))) | |
2960 (if parsed | |
2961 (let ((h (nth 0 parsed)) | |
2962 (u (nth 1 parsed))) | |
2963 (or (and (equal host h) (equal user u)) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2964 (puthash key val new-tbl)))))) |
28210 | 2965 ange-ftp-files-hashtable) |
2966 (setq ange-ftp-files-hashtable new-tbl))) | |
2967 | |
2968 ;;;; ------------------------------------------------------------ | |
2969 ;;;; File transfer mode support. | |
2970 ;;;; ------------------------------------------------------------ | |
2971 | |
2972 (defun ange-ftp-set-binary-mode (host user) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2973 "Tell the FTP process for the given HOST & USER to switch to binary mode." |
28210 | 2974 (let ((result (ange-ftp-send-cmd host user '(type "binary")))) |
2975 (if (not (car result)) | |
2976 (ange-ftp-error host user (concat "BINARY failed: " (cdr result))) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
2977 (with-current-buffer (process-buffer (ange-ftp-get-process host user)) |
28210 | 2978 (and ange-ftp-binary-hash-mark-size |
2979 (setq ange-ftp-hash-mark-unit | |
2980 (ash ange-ftp-binary-hash-mark-size -4))))))) | |
2981 | |
2982 (defun ange-ftp-set-ascii-mode (host user) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2983 "Tell the FTP process for the given HOST & USER to switch to ASCII mode." |
28210 | 2984 (let ((result (ange-ftp-send-cmd host user '(type "ascii")))) |
2985 (if (not (car result)) | |
2986 (ange-ftp-error host user (concat "ASCII failed: " (cdr result))) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
2987 (with-current-buffer (process-buffer (ange-ftp-get-process host user)) |
28210 | 2988 (and ange-ftp-ascii-hash-mark-size |
2989 (setq ange-ftp-hash-mark-unit | |
2990 (ash ange-ftp-ascii-hash-mark-size -4))))))) | |
2991 | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2992 (defun ange-ftp-cd (host user dir &optional noerror) |
28210 | 2993 (let ((result (ange-ftp-send-cmd host user (list 'cd dir) "Doing CD"))) |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2994 (if noerror result |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2995 (or (car result) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2996 (ange-ftp-error host user (concat "CD failed: " (cdr result))))))) |
28210 | 2997 |
2998 (defun ange-ftp-get-pwd (host user) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2999 "Attempt to get the current working directory for the given HOST/USER pair. |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3000 Returns (DIR . LINE) where DIR is either the directory or nil if not found, |
28210 | 3001 and LINE is the relevant success or fail line from the FTP-client." |
3002 (let* ((result (ange-ftp-send-cmd host user '(pwd) "Getting PWD")) | |
3003 (line (cdr result)) | |
3004 dir) | |
3005 (if (car result) | |
3006 (save-match-data | |
3007 (and (or (string-match "\"\\([^\"]*\\)\"" line) | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
3008 (string-match " \\([^ ]+\\) " line)) ; stone-age VMS servers! |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
3009 (setq dir (match-string 1 line))))) |
28210 | 3010 (cons dir line))) |
3011 | |
3012 ;;; ------------------------------------------------------------ | |
3013 ;;; expand-file-name and friends...which currently don't work | |
3014 ;;; ------------------------------------------------------------ | |
3015 | |
3016 (defun ange-ftp-expand-dir (host user dir) | |
3017 "Return the result of doing a PWD in the current FTP session. | |
3018 Use the connection to machine HOST | |
3019 logged in as user USER and cd'd to directory DIR." | |
3020 (let* ((host-type (ange-ftp-host-type host user)) | |
3021 ;; It is more efficient to call ange-ftp-host-type | |
3022 ;; before binding res, because ange-ftp-host-type sometimes | |
3023 ;; adds to the info in the expand-dir-hashtable. | |
3024 (fix-name-func | |
3025 (cdr (assq host-type ange-ftp-fix-name-func-alist))) | |
3026 (key (concat host "/" user "/" dir)) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3027 (res (gethash key ange-ftp-expand-dir-hashtable))) |
28210 | 3028 (or res |
3029 (progn | |
3030 (or | |
3031 (string-equal user "anonymous") | |
3032 (string-equal user "ftp") | |
3033 (not (eq host-type 'unix)) | |
3034 (let* ((ange-ftp-good-msgs (concat ange-ftp-expand-dir-regexp | |
3035 "\\|" | |
3036 ange-ftp-good-msgs)) | |
3037 (result (ange-ftp-send-cmd host user | |
3038 (list 'get dir null-device) | |
3039 (format "expanding %s" dir))) | |
3040 (line (cdr result))) | |
3041 (setq res | |
3042 (if (string-match ange-ftp-expand-dir-regexp line) | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
3043 (match-string 1 line))))) |
28210 | 3044 (or res |
3045 (if (string-equal dir "~") | |
3046 (setq res (car (ange-ftp-get-pwd host user))) | |
3047 (let ((home (ange-ftp-expand-dir host user "~"))) | |
3048 (unwind-protect | |
3049 (and (ange-ftp-cd host user dir) | |
3050 (setq res (car (ange-ftp-get-pwd host user)))) | |
3051 (ange-ftp-cd host user home))))) | |
3052 (if res | |
3053 (let ((ange-ftp-this-user user) | |
3054 (ange-ftp-this-host host)) | |
3055 (if fix-name-func | |
3056 (setq res (funcall fix-name-func res 'reverse))) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3057 (puthash key res ange-ftp-expand-dir-hashtable))) |
28210 | 3058 res)))) |
3059 | |
3060 (defun ange-ftp-canonize-filename (n) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3061 "Take a string N and short-circuit //, /. and /.." |
28210 | 3062 (if (string-match "[^:]+//" n) ;don't upset Apollo users |
3063 (setq n (substring n (1- (match-end 0))))) | |
3064 (let ((parsed (ange-ftp-ftp-name n))) | |
3065 (if parsed | |
3066 (let ((host (car parsed)) | |
3067 (user (nth 1 parsed)) | |
3068 (name (nth 2 parsed))) | |
30459 | 3069 |
28210 | 3070 ;; See if remote name is absolute. If so then just expand it and |
3071 ;; replace the name component of the overall name. | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3072 (cond ((string-match "\\`/" name) |
28210 | 3073 name) |
30459 | 3074 |
28210 | 3075 ;; Name starts with ~ or ~user. Resolve that part of the name |
3076 ;; making it absolute then re-expand it. | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3077 ((string-match "\\`~[^/]*" name) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
3078 (let* ((tilda (match-string 0 name)) |
28210 | 3079 (rest (substring name (match-end 0))) |
3080 (dir (ange-ftp-expand-dir host user tilda))) | |
3081 (if dir | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3082 ;; C-x d /ftp:anonymous@ftp.gnu.org:~/ RET |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3083 ;; seems to cause `rest' to sometimes be empty. |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3084 ;; Maybe it's an error for `rest' to be empty here, |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3085 ;; but until we figure this out, this quick fix |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3086 ;; seems to do the trick. |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3087 (setq name (cond ((string-equal rest "") dir) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3088 ((string-equal dir "/") rest) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3089 (t (concat dir rest)))) |
30459 | 3090 (error "User \"%s\" is not known" |
28210 | 3091 (substring tilda 1))))) |
30459 | 3092 |
28210 | 3093 ;; relative name. Tack on homedir and re-expand. |
3094 (t | |
3095 (let ((dir (ange-ftp-expand-dir host user "~"))) | |
3096 (if dir | |
3097 (setq name (concat | |
3098 (ange-ftp-real-file-name-as-directory dir) | |
3099 name)) | |
3100 (error "Unable to obtain CWD"))))) | |
30459 | 3101 |
28210 | 3102 ;; If name starts with //, preserve that, for apollo system. |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3103 (unless (string-match "\\`//" name) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3104 (if (not (eq system-type 'windows-nt)) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3105 (setq name (ange-ftp-real-expand-file-name name)) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3106 ;; Windows UNC default dirs do not make sense for ftp. |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3107 (setq name (if (string-match "\\`//" default-directory) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3108 (ange-ftp-real-expand-file-name name "c:/") |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3109 (ange-ftp-real-expand-file-name name))) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3110 ;; Strip off possible drive specifier. |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3111 (if (string-match "\\`[a-zA-Z]:" name) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3112 (setq name (substring name 2)))) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3113 (if (string-match "\\`//" name) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3114 (setq name (substring name 1)))) |
30459 | 3115 |
28210 | 3116 ;; Now substitute the expanded name back into the overall filename. |
3117 (ange-ftp-replace-name-component n name)) | |
30459 | 3118 |
28210 | 3119 ;; non-ange-ftp name. Just expand normally. |
3120 (if (eq (string-to-char n) ?/) | |
3121 (ange-ftp-real-expand-file-name n) | |
3122 (ange-ftp-real-expand-file-name | |
3123 (ange-ftp-real-file-name-nondirectory n) | |
3124 (ange-ftp-real-file-name-directory n)))))) | |
3125 | |
3126 (defun ange-ftp-expand-file-name (name &optional default) | |
65762
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
3127 "Documented as `expand-file-name'." |
28210 | 3128 (save-match-data |
3129 (setq default (or default default-directory)) | |
3130 (cond ((eq (string-to-char name) ?~) | |
3131 (ange-ftp-real-expand-file-name name)) | |
3132 ((eq (string-to-char name) ?/) | |
3133 (ange-ftp-canonize-filename name)) | |
3134 ((and (eq system-type 'windows-nt) | |
3135 (eq (string-to-char name) ?\\)) | |
3136 (ange-ftp-canonize-filename name)) | |
3137 ((and (eq system-type 'windows-nt) | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3138 (or (string-match "\\`[a-zA-Z]:" name) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3139 (string-match "\\`[a-zA-Z]:" default))) |
28210 | 3140 (ange-ftp-real-expand-file-name name default)) |
3141 ((zerop (length name)) | |
3142 (ange-ftp-canonize-filename default)) | |
3143 ((ange-ftp-canonize-filename | |
3144 (concat (file-name-as-directory default) name)))))) | |
3145 | |
3146 ;;; These are problems--they are currently not enabled. | |
3147 | |
3148 (defvar ange-ftp-file-name-as-directory-alist nil | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3149 "Association list of (TYPE . FUNC) pairs. |
28210 | 3150 FUNC converts a filename to a directory name for the operating |
3151 system TYPE.") | |
3152 | |
3153 (defun ange-ftp-file-name-as-directory (name) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3154 "Documented as `file-name-as-directory'." |
28210 | 3155 (let ((parsed (ange-ftp-ftp-name name))) |
3156 (if parsed | |
3157 (if (string-equal (nth 2 parsed) "") | |
3158 name | |
3159 (funcall (or (cdr (assq | |
3160 (ange-ftp-host-type (car parsed)) | |
3161 ange-ftp-file-name-as-directory-alist)) | |
3162 'ange-ftp-real-file-name-as-directory) | |
3163 name)) | |
3164 (ange-ftp-real-file-name-as-directory name)))) | |
30459 | 3165 |
28210 | 3166 (defun ange-ftp-file-name-directory (name) |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3167 "Documented as `file-name-directory'." |
28210 | 3168 (let ((parsed (ange-ftp-ftp-name name))) |
3169 (if parsed | |
3170 (let ((filename (nth 2 parsed))) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3171 (if (string-match-p "\\`~[^/]*\\'" filename) |
28210 | 3172 name |
3173 (ange-ftp-replace-name-component | |
3174 name | |
3175 (ange-ftp-real-file-name-directory filename)))) | |
3176 (ange-ftp-real-file-name-directory name)))) | |
3177 | |
3178 (defun ange-ftp-file-name-nondirectory (name) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3179 "Documented as `file-name-nondirectory'." |
28210 | 3180 (let ((parsed (ange-ftp-ftp-name name))) |
3181 (if parsed | |
3182 (let ((filename (nth 2 parsed))) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3183 (if (string-match-p "\\`~[^/]*\\'" filename) |
28210 | 3184 "" |
3185 (ange-ftp-real-file-name-nondirectory filename))) | |
3186 (ange-ftp-real-file-name-nondirectory name)))) | |
3187 | |
3188 (defun ange-ftp-directory-file-name (dir) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3189 "Documented as `directory-file-name'." |
28210 | 3190 (let ((parsed (ange-ftp-ftp-name dir))) |
3191 (if parsed | |
3192 (ange-ftp-replace-name-component | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
3193 dir |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
3194 (ange-ftp-real-directory-file-name (nth 2 parsed))) |
28210 | 3195 (ange-ftp-real-directory-file-name dir)))) |
3196 | |
3197 | |
3198 ;;; Hooks that handle Emacs primitives. | |
3199 | |
3200 ;; Returns non-nil if should transfer FILE in binary mode. | |
3201 (defun ange-ftp-binary-file (file) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3202 (string-match-p ange-ftp-binary-file-name-regexp file)) |
28210 | 3203 |
3204 (defun ange-ftp-write-region (start end filename &optional append visit) | |
3205 (setq filename (expand-file-name filename)) | |
3206 (let ((parsed (ange-ftp-ftp-name filename))) | |
3207 (if parsed | |
3208 (let* ((host (nth 0 parsed)) | |
3209 (user (nth 1 parsed)) | |
3210 (name (ange-ftp-quote-string (nth 2 parsed))) | |
3211 (temp (ange-ftp-make-tmp-name host)) | |
3212 ;; What we REALLY need here is a way to determine if the mode | |
3213 ;; of the transfer is irrelevant, i.e. we can use binary mode | |
3214 ;; regardless. Maybe a system-type to host-type lookup? | |
3215 (binary (or (ange-ftp-binary-file filename) | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
3216 (and (not (memq system-type |
104552
10c38084881d
Remove code for defunct system-types emx, macos, mswindows,
Glenn Morris <rgm@gnu.org>
parents:
102850
diff
changeset
|
3217 '(ms-dos windows-nt))) |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
3218 (memq (ange-ftp-host-type host user) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
3219 '(unix dumb-unix))))) |
28210 | 3220 (cmd (if append 'append 'put)) |
3221 (abbr (ange-ftp-abbreviate-filename filename)) | |
3222 ;; we need to reset `last-coding-system-used' to its | |
3223 ;; value immediately after calling the real write-region, | |
3224 ;; so that `basic-save-buffer' doesn't see whatever value | |
3225 ;; might be used when communicating with the ftp process. | |
3226 (coding-system-used last-coding-system-used)) | |
3227 (unwind-protect | |
3228 (progn | |
46336
af464c20ffb2
(ange-ftp-write-region): Don't bind executing-kbd-macro; instead, pass
Richard M. Stallman <rms@gnu.org>
parents:
46178
diff
changeset
|
3229 (let ((filename (buffer-file-name)) |
28210 | 3230 (mod-p (buffer-modified-p))) |
3231 (unwind-protect | |
37774
a3b587b05ab3
(ange-ftp-write-region): Make sure to record the
Gerd Moellmann <gerd@gnu.org>
parents:
33539
diff
changeset
|
3232 (progn |
46336
af464c20ffb2
(ange-ftp-write-region): Don't bind executing-kbd-macro; instead, pass
Richard M. Stallman <rms@gnu.org>
parents:
46178
diff
changeset
|
3233 (ange-ftp-real-write-region start end temp nil |
af464c20ffb2
(ange-ftp-write-region): Don't bind executing-kbd-macro; instead, pass
Richard M. Stallman <rms@gnu.org>
parents:
46178
diff
changeset
|
3234 (or visit 'quiet)) |
37774
a3b587b05ab3
(ange-ftp-write-region): Make sure to record the
Gerd Moellmann <gerd@gnu.org>
parents:
33539
diff
changeset
|
3235 (setq coding-system-used last-coding-system-used)) |
28210 | 3236 ;; cleanup forms |
37774
a3b587b05ab3
(ange-ftp-write-region): Make sure to record the
Gerd Moellmann <gerd@gnu.org>
parents:
33539
diff
changeset
|
3237 (setq coding-system-used last-coding-system-used) |
28210 | 3238 (setq buffer-file-name filename) |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
3239 (restore-buffer-modified-p mod-p))) |
28210 | 3240 (if binary |
3241 (ange-ftp-set-binary-mode host user)) | |
3242 | |
3243 ;; tell the process filter what size the transfer will be. | |
3244 (let ((attr (file-attributes temp))) | |
3245 (if attr | |
3246 (ange-ftp-set-xfer-size host user (nth 7 attr)))) | |
3247 | |
3248 ;; put or append the file. | |
3249 (let ((result (ange-ftp-send-cmd host user | |
3250 (list cmd temp name) | |
3251 (format "Writing %s" abbr)))) | |
3252 (or (car result) | |
3253 (signal 'ftp-error | |
3254 (list | |
3255 "Opening output file" | |
3256 (format "FTP Error: \"%s\"" (cdr result)) | |
3257 filename))))) | |
3258 (ange-ftp-del-tmp-name temp) | |
30459 | 3259 (if binary |
28210 | 3260 (ange-ftp-set-ascii-mode host user))) |
3261 (if (eq visit t) | |
3262 (progn | |
30459 | 3263 (set-visited-file-modtime (ange-ftp-file-modtime filename)) |
28210 | 3264 (ange-ftp-set-buffer-mode) |
3265 (setq buffer-file-name filename) | |
3266 (set-buffer-modified-p nil))) | |
3267 ;; ensure `last-coding-system-used' has an appropriate value | |
3268 (setq last-coding-system-used coding-system-used) | |
3269 (ange-ftp-message "Wrote %s" abbr) | |
3270 (ange-ftp-add-file-entry filename)) | |
3271 (ange-ftp-real-write-region start end filename append visit)))) | |
3272 | |
3273 (defun ange-ftp-insert-file-contents (filename &optional visit beg end replace) | |
3274 (barf-if-buffer-read-only) | |
3275 (setq filename (expand-file-name filename)) | |
3276 (let ((parsed (ange-ftp-ftp-name filename))) | |
3277 (if parsed | |
3278 (progn | |
3279 (if visit | |
3280 (setq buffer-file-name filename)) | |
3281 (if (or (file-exists-p filename) | |
3282 (progn | |
3283 (setq ange-ftp-ls-cache-file nil) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3284 (remhash (file-name-directory filename) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3285 ange-ftp-files-hashtable) |
28210 | 3286 (file-exists-p filename))) |
3287 (let* ((host (nth 0 parsed)) | |
3288 (user (nth 1 parsed)) | |
3289 (name (ange-ftp-quote-string (nth 2 parsed))) | |
3290 (temp (ange-ftp-make-tmp-name host)) | |
3291 (binary (or (ange-ftp-binary-file filename) | |
3292 (memq (ange-ftp-host-type host user) | |
3293 '(unix dumb-unix)))) | |
3294 (abbr (ange-ftp-abbreviate-filename filename)) | |
3295 (coding-system-used last-coding-system-used) | |
3296 size) | |
3297 (unwind-protect | |
3298 (progn | |
3299 (if binary | |
3300 (ange-ftp-set-binary-mode host user)) | |
3301 (let ((result (ange-ftp-send-cmd host user | |
3302 (list 'get name temp) | |
3303 (format "Retrieving %s" abbr)))) | |
3304 (or (car result) | |
3305 (signal 'ftp-error | |
3306 (list | |
3307 "Opening input file" | |
3308 (format "FTP Error: \"%s\"" (cdr result)) | |
3309 filename)))) | |
3310 (if (or (ange-ftp-real-file-readable-p temp) | |
3311 (sleep-for ange-ftp-retry-time) | |
3312 ;; Wait for file to hopefully appear. | |
3313 (ange-ftp-real-file-readable-p temp)) | |
3314 (setq | |
3315 size | |
3316 (nth 1 (ange-ftp-real-insert-file-contents | |
3317 temp visit beg end replace)) | |
3318 coding-system-used last-coding-system-used | |
3319 ;; override autodetection of buffer file type | |
3320 ;; to ensure buffer is saved in DOS format | |
3321 buffer-file-type binary) | |
3322 (signal 'ftp-error | |
3323 (list | |
3324 "Opening input file:" | |
3325 (format | |
3326 "FTP Error: %s not arrived or readable" | |
3327 filename))))) | |
3328 (if binary | |
3329 ;; We must keep `last-coding-system-used' | |
3330 ;; unchanged. | |
3331 (let (last-coding-system-used) | |
3332 (ange-ftp-set-ascii-mode host user))) | |
3333 (ange-ftp-del-tmp-name temp)) | |
3334 (if visit | |
3335 (progn | |
30459 | 3336 (set-visited-file-modtime |
3337 (ange-ftp-file-modtime filename)) | |
28210 | 3338 (setq buffer-file-name filename))) |
3339 (setq last-coding-system-used coding-system-used) | |
3340 (list filename size)) | |
3341 (signal 'file-error | |
30459 | 3342 (list |
28210 | 3343 "Opening input file" |
3344 filename)))) | |
3345 (ange-ftp-real-insert-file-contents filename visit beg end replace)))) | |
30459 | 3346 |
28210 | 3347 (defun ange-ftp-expand-symlink (file dir) |
50578
2bf79af13e21
From Michael Albinus <Michael.Albinus@alcatel.de>.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49805
diff
changeset
|
3348 (let ((res (if (file-name-absolute-p file) |
2bf79af13e21
From Michael Albinus <Michael.Albinus@alcatel.de>.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49805
diff
changeset
|
3349 (ange-ftp-replace-name-component dir file) |
2bf79af13e21
From Michael Albinus <Michael.Albinus@alcatel.de>.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49805
diff
changeset
|
3350 (expand-file-name file dir)))) |
2bf79af13e21
From Michael Albinus <Michael.Albinus@alcatel.de>.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49805
diff
changeset
|
3351 (if (file-symlink-p res) |
2bf79af13e21
From Michael Albinus <Michael.Albinus@alcatel.de>.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49805
diff
changeset
|
3352 (ange-ftp-expand-symlink |
2bf79af13e21
From Michael Albinus <Michael.Albinus@alcatel.de>.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49805
diff
changeset
|
3353 (ange-ftp-get-file-entry res) |
2bf79af13e21
From Michael Albinus <Michael.Albinus@alcatel.de>.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49805
diff
changeset
|
3354 (file-name-directory (directory-file-name res))) |
2bf79af13e21
From Michael Albinus <Michael.Albinus@alcatel.de>.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49805
diff
changeset
|
3355 res))) |
28210 | 3356 |
3357 (defun ange-ftp-file-symlink-p (file) | |
3358 ;; call ange-ftp-expand-file-name rather than the normal | |
3359 ;; expand-file-name to stop loops when using a package that | |
3360 ;; redefines both file-symlink-p and expand-file-name. | |
3361 (setq file (ange-ftp-expand-file-name file)) | |
3362 (if (ange-ftp-ftp-name file) | |
51799
2a6ed9e210b2
(ange-ftp-file-symlink-p):
Richard M. Stallman <rms@gnu.org>
parents:
50578
diff
changeset
|
3363 (condition-case nil |
56742
19c16bca1b49
(ange-ftp-hash-entry-exists-p)
David Kastrup <dak@gnu.org>
parents:
56259
diff
changeset
|
3364 (let ((ent (ange-ftp-get-files (file-name-directory file)))) |
19c16bca1b49
(ange-ftp-hash-entry-exists-p)
David Kastrup <dak@gnu.org>
parents:
56259
diff
changeset
|
3365 (and ent |
19c16bca1b49
(ange-ftp-hash-entry-exists-p)
David Kastrup <dak@gnu.org>
parents:
56259
diff
changeset
|
3366 (stringp (setq ent |
19c16bca1b49
(ange-ftp-hash-entry-exists-p)
David Kastrup <dak@gnu.org>
parents:
56259
diff
changeset
|
3367 (gethash (ange-ftp-get-file-part file) ent))) |
19c16bca1b49
(ange-ftp-hash-entry-exists-p)
David Kastrup <dak@gnu.org>
parents:
56259
diff
changeset
|
3368 ent)) |
51799
2a6ed9e210b2
(ange-ftp-file-symlink-p):
Richard M. Stallman <rms@gnu.org>
parents:
50578
diff
changeset
|
3369 ;; If we can't read the parent directory, just assume |
2a6ed9e210b2
(ange-ftp-file-symlink-p):
Richard M. Stallman <rms@gnu.org>
parents:
50578
diff
changeset
|
3370 ;; this file is not a symlink. |
2a6ed9e210b2
(ange-ftp-file-symlink-p):
Richard M. Stallman <rms@gnu.org>
parents:
50578
diff
changeset
|
3371 ;; This makes it possible to access a directory that |
2a6ed9e210b2
(ange-ftp-file-symlink-p):
Richard M. Stallman <rms@gnu.org>
parents:
50578
diff
changeset
|
3372 ;; whose parent is not readable. |
2a6ed9e210b2
(ange-ftp-file-symlink-p):
Richard M. Stallman <rms@gnu.org>
parents:
50578
diff
changeset
|
3373 (file-error nil)) |
28210 | 3374 (ange-ftp-real-file-symlink-p file))) |
3375 | |
3376 (defun ange-ftp-file-exists-p (name) | |
3377 (setq name (expand-file-name name)) | |
3378 (if (ange-ftp-ftp-name name) | |
3379 (if (ange-ftp-file-entry-p name) | |
3380 (let ((file-ent (ange-ftp-get-file-entry name))) | |
3381 (if (stringp file-ent) | |
3382 (file-exists-p | |
3383 (ange-ftp-expand-symlink file-ent | |
3384 (file-name-directory | |
3385 (directory-file-name name)))) | |
3386 t))) | |
3387 (ange-ftp-real-file-exists-p name))) | |
3388 | |
3389 (defun ange-ftp-file-directory-p (name) | |
3390 (setq name (expand-file-name name)) | |
3391 (if (ange-ftp-ftp-name name) | |
3392 ;; We do a file-name-as-directory on name here because some | |
3393 ;; machines (VMS) use a .DIR to indicate the filename associated | |
3394 ;; with a directory. This needs to be canonicalized. | |
3395 (let ((file-ent (ange-ftp-get-file-entry | |
3396 (ange-ftp-file-name-as-directory name)))) | |
3397 (if (stringp file-ent) | |
65762
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
3398 ;; Calling file-directory-p doesn't work because ange-ftp |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
3399 ;; is temporarily disabled for this operation. |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
3400 (ange-ftp-file-directory-p |
28210 | 3401 (ange-ftp-expand-symlink file-ent |
3402 (file-name-directory | |
3403 (directory-file-name name)))) | |
3404 file-ent)) | |
3405 (ange-ftp-real-file-directory-p name))) | |
3406 | |
3407 (defun ange-ftp-directory-files (directory &optional full match | |
3408 &rest v19-args) | |
3409 (setq directory (expand-file-name directory)) | |
3410 (if (ange-ftp-ftp-name directory) | |
3411 (progn | |
3412 (ange-ftp-barf-if-not-directory directory) | |
3413 (let ((tail (ange-ftp-hash-table-keys | |
3414 (ange-ftp-get-files directory))) | |
3415 files f) | |
3416 (setq directory (file-name-as-directory directory)) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3417 (while tail |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3418 (setq f (car tail) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3419 tail (cdr tail)) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3420 (if (or (not match) (string-match-p match f)) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3421 (setq files |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3422 (cons (if full (concat directory f) f) files)))) |
28210 | 3423 (nreverse files))) |
3424 (apply 'ange-ftp-real-directory-files directory full match v19-args))) | |
3425 | |
53351
d3b9902eacfe
(ange-ftp-file-attributes): Add new optional parameter ID-FORMAT.
Sam Steingold <sds@gnu.org>
parents:
52401
diff
changeset
|
3426 (defun ange-ftp-file-attributes (file &optional id-format) |
28210 | 3427 (setq file (expand-file-name file)) |
3428 (let ((parsed (ange-ftp-ftp-name file))) | |
3429 (if parsed | |
3430 (let ((part (ange-ftp-get-file-part file)) | |
3431 (files (ange-ftp-get-files (file-name-directory file)))) | |
3432 (if (ange-ftp-hash-entry-exists-p part files) | |
3433 (let ((host (nth 0 parsed)) | |
3434 (user (nth 1 parsed)) | |
3435 (name (nth 2 parsed)) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3436 (dirp (gethash part files)) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3437 (inode (gethash file ange-ftp-inodes-hashtable))) |
28210 | 3438 (unless inode |
3439 (setq inode ange-ftp-next-inode-number | |
3440 ange-ftp-next-inode-number (1+ inode)) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3441 (puthash file inode ange-ftp-inodes-hashtable)) |
28210 | 3442 (list (if (and (stringp dirp) (file-name-absolute-p dirp)) |
3443 (ange-ftp-expand-symlink dirp | |
3444 (file-name-directory file)) | |
3445 dirp) ;0 file type | |
3446 -1 ;1 link count | |
3447 -1 ;2 uid | |
3448 -1 ;3 gid | |
3449 '(0 0) ;4 atime | |
30459 | 3450 (ange-ftp-file-modtime file) ;5 mtime |
28210 | 3451 '(0 0) ;6 ctime |
3452 -1 ;7 size | |
3453 (concat (if (stringp dirp) "l" (if dirp "d" "-")) | |
3454 "?????????") ;8 mode | |
3455 nil ;9 gid weird | |
3456 inode ;10 "inode number". | |
3457 -1 ;11 device number [v19 only] | |
3458 )))) | |
53500
530a52a3971b
(ange-ftp-file-attributes):
Richard M. Stallman <rms@gnu.org>
parents:
53415
diff
changeset
|
3459 (if id-format |
530a52a3971b
(ange-ftp-file-attributes):
Richard M. Stallman <rms@gnu.org>
parents:
53415
diff
changeset
|
3460 (ange-ftp-real-file-attributes file id-format) |
530a52a3971b
(ange-ftp-file-attributes):
Richard M. Stallman <rms@gnu.org>
parents:
53415
diff
changeset
|
3461 (ange-ftp-real-file-attributes file))))) |
28210 | 3462 |
30481 | 3463 (defun ange-ftp-file-newer-than-file-p (f1 f2) |
3464 (let ((f1-parsed (ange-ftp-ftp-name f1)) | |
3465 (f2-parsed (ange-ftp-ftp-name f2))) | |
3466 (if (or f1-parsed f2-parsed) | |
3467 (let ((f1-mt (nth 5 (file-attributes f1))) | |
3468 (f2-mt (nth 5 (file-attributes f2)))) | |
3469 (cond ((null f1-mt) nil) | |
3470 ((null f2-mt) t) | |
3471 (t (> (float-time f1-mt) (float-time f2-mt))))) | |
3472 (ange-ftp-real-file-newer-than-file-p f1 f2)))) | |
3473 | |
28210 | 3474 (defun ange-ftp-file-writable-p (file) |
33533 | 3475 (let ((ange-ftp-process-verbose nil)) |
3476 (setq file (expand-file-name file)) | |
3477 (if (ange-ftp-ftp-name file) | |
3478 (or (file-exists-p file) ;guess here for speed | |
3479 (file-directory-p (file-name-directory file))) | |
3480 (ange-ftp-real-file-writable-p file)))) | |
28210 | 3481 |
3482 (defun ange-ftp-file-readable-p (file) | |
33533 | 3483 (let ((ange-ftp-process-verbose nil)) |
3484 (setq file (expand-file-name file)) | |
3485 (if (ange-ftp-ftp-name file) | |
3486 (file-exists-p file) | |
3487 (ange-ftp-real-file-readable-p file)))) | |
28210 | 3488 |
3489 (defun ange-ftp-file-executable-p (file) | |
33533 | 3490 (let ((ange-ftp-process-verbose nil)) |
3491 (setq file (expand-file-name file)) | |
3492 (if (ange-ftp-ftp-name file) | |
3493 (file-exists-p file) | |
3494 (ange-ftp-real-file-executable-p file)))) | |
28210 | 3495 |
3496 (defun ange-ftp-delete-file (file) | |
3497 (interactive "fDelete file: ") | |
3498 (setq file (expand-file-name file)) | |
3499 (let ((parsed (ange-ftp-ftp-name file))) | |
3500 (if parsed | |
3501 (let* ((host (nth 0 parsed)) | |
3502 (user (nth 1 parsed)) | |
3503 (name (ange-ftp-quote-string (nth 2 parsed))) | |
3504 (abbr (ange-ftp-abbreviate-filename file)) | |
3505 (result (ange-ftp-send-cmd host user | |
3506 (list 'delete name) | |
3507 (format "Deleting %s" abbr)))) | |
3508 (or (car result) | |
3509 (signal 'ftp-error | |
3510 (list | |
3511 "Removing old name" | |
3512 (format "FTP Error: \"%s\"" (cdr result)) | |
3513 file))) | |
3514 (ange-ftp-delete-file-entry file)) | |
3515 (ange-ftp-real-delete-file file)))) | |
3516 | |
30459 | 3517 (defun ange-ftp-file-modtime (file) |
38312
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3518 "Return the modification time of remote file FILE. |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3519 Value is (0 0) if the modification time cannot be determined." |
30459 | 3520 (let* ((parsed (ange-ftp-ftp-name file)) |
38312
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3521 ;; At least one FTP server (wu-ftpd) can return a "226 |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3522 ;; Transfer complete" before the "213 MODTIME". Let's skip |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3523 ;; that. |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3524 (ange-ftp-skip-msgs (concat ange-ftp-skip-msgs "\\|^226")) |
30459 | 3525 (res (ange-ftp-send-cmd (car parsed) (cadr parsed) |
38312
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3526 (list 'quote "mdtm" (cadr (cdr parsed))))) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3527 (line (cdr res)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3528 (modtime '(0 0))) |
38328
3c2404604bae
(ange-ftp-file-modtime): Check a 213 response
Gerd Moellmann <gerd@gnu.org>
parents:
38312
diff
changeset
|
3529 ;; MDTM should return "213 YYYYMMDDhhmmss" GMT on success |
3c2404604bae
(ange-ftp-file-modtime): Check a 213 response
Gerd Moellmann <gerd@gnu.org>
parents:
38312
diff
changeset
|
3530 ;; following the Internet draft for FTP extensions. |
3c2404604bae
(ange-ftp-file-modtime): Check a 213 response
Gerd Moellmann <gerd@gnu.org>
parents:
38312
diff
changeset
|
3531 ;; Bob@rattlesnake.com reports that is returns something different |
3c2404604bae
(ange-ftp-file-modtime): Check a 213 response
Gerd Moellmann <gerd@gnu.org>
parents:
38312
diff
changeset
|
3532 ;; for at least one FTP server. So, let's use the response only |
3c2404604bae
(ange-ftp-file-modtime): Check a 213 response
Gerd Moellmann <gerd@gnu.org>
parents:
38312
diff
changeset
|
3533 ;; if it matches the Internet draft. |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3534 (when (string-match-p "^213 [0-9]\\{14\\}$" line) |
38312
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3535 (setq modtime |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3536 (encode-time |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3537 (string-to-number (substring line 16 18)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3538 (string-to-number (substring line 14 16)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3539 (string-to-number (substring line 12 14)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3540 (string-to-number (substring line 10 12)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3541 (string-to-number (substring line 8 10)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3542 (string-to-number (substring line 4 8)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3543 0))) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3544 modtime)) |
30459 | 3545 |
28210 | 3546 (defun ange-ftp-verify-visited-file-modtime (buf) |
3547 (let ((name (buffer-file-name buf))) | |
3548 (if (and (stringp name) (ange-ftp-ftp-name name)) | |
30459 | 3549 (let ((file-mdtm (ange-ftp-file-modtime name)) |
3550 (buf-mdtm (with-current-buffer buf (visited-file-modtime)))) | |
3551 (or (zerop (car file-mdtm)) | |
30518
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30481
diff
changeset
|
3552 (<= (float-time file-mdtm) (float-time buf-mdtm)))) |
28210 | 3553 (ange-ftp-real-verify-visited-file-modtime buf)))) |
3554 | |
3555 ;;;; ------------------------------------------------------------ | |
3556 ;;;; File copying support... totally re-written 6/24/92. | |
3557 ;;;; ------------------------------------------------------------ | |
3558 | |
3559 (defun ange-ftp-barf-or-query-if-file-exists (absname querystring interactive) | |
3560 (if (file-exists-p absname) | |
3561 (if (not interactive) | |
3562 (signal 'file-already-exists (list absname)) | |
3563 (if (not (yes-or-no-p (format "File %s already exists; %s anyway? " | |
3564 absname querystring))) | |
3565 (signal 'file-already-exists (list absname)))))) | |
3566 | |
3567 ;; async local copy commented out for now since I don't seem to get | |
3568 ;; the process sentinel called for some processes. | |
3569 ;; | |
3570 ;; (defun ange-ftp-copy-file-locally (filename newname ok-if-already-exists | |
3571 ;; keep-date cont) | |
3572 ;; "Kludge to copy a local file and call a continuation when the copy | |
3573 ;; finishes." | |
3574 ;; ;; check to see if we can overwrite | |
3575 ;; (if (or (not ok-if-already-exists) | |
3576 ;; (numberp ok-if-already-exists)) | |
30459 | 3577 ;; (ange-ftp-barf-or-query-if-file-exists newname "copy to it" |
28210 | 3578 ;; (numberp ok-if-already-exists))) |
3579 ;; (let ((proc (start-process " *copy*" | |
3580 ;; (generate-new-buffer "*copy*") | |
3581 ;; "cp" | |
3582 ;; filename | |
3583 ;; newname)) | |
3584 ;; res) | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
3585 ;; (set-process-sentinel proc 'ange-ftp-copy-file-locally-sentinel) |
28210 | 3586 ;; (process-kill-without-query proc) |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
3587 ;; (with-current-buffer (process-buffer proc) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
3588 ;; (set (make-local-variable 'copy-cont) cont)))) |
30459 | 3589 ;; |
28210 | 3590 ;; (defun ange-ftp-copy-file-locally-sentinel (proc status) |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
3591 ;; (with-current-buffer (process-buffer proc) |
28210 | 3592 ;; (let ((cont copy-cont) |
3593 ;; (result (buffer-string))) | |
3594 ;; (unwind-protect | |
3595 ;; (if (and (string-equal status "finished\n") | |
3596 ;; (zerop (length result))) | |
3597 ;; (ange-ftp-call-cont cont t nil) | |
3598 ;; (ange-ftp-call-cont cont | |
3599 ;; nil | |
3600 ;; (if (zerop (length result)) | |
3601 ;; (substring status 0 -1) | |
3602 ;; (substring result 0 -1)))) | |
3603 ;; (kill-buffer (current-buffer)))))) | |
3604 | |
3605 ;; this is the extended version of ange-ftp-copy-file-internal that works | |
3606 ;; asynchronously if asked nicely. | |
3607 (defun ange-ftp-copy-file-internal (filename newname ok-if-already-exists | |
3608 keep-date &optional msg cont nowait) | |
3609 (setq filename (expand-file-name filename) | |
3610 newname (expand-file-name newname)) | |
3611 | |
3612 ;; canonicalize newname if a directory. | |
3613 (if (file-directory-p newname) | |
3614 (setq newname (expand-file-name (file-name-nondirectory filename) newname))) | |
3615 | |
3616 (let ((f-parsed (ange-ftp-ftp-name filename)) | |
3617 (t-parsed (ange-ftp-ftp-name newname))) | |
3618 | |
3619 ;; local file to local file copy? | |
3620 (if (and (not f-parsed) (not t-parsed)) | |
3621 (progn | |
3622 (ange-ftp-real-copy-file filename newname ok-if-already-exists | |
3623 keep-date) | |
3624 (if cont | |
3625 (ange-ftp-call-cont cont t "Copied locally"))) | |
3626 ;; one or both files are remote. | |
3627 (let* ((f-host (and f-parsed (nth 0 f-parsed))) | |
3628 (f-user (and f-parsed (nth 1 f-parsed))) | |
3629 (f-name (and f-parsed (ange-ftp-quote-string (nth 2 f-parsed)))) | |
3630 (f-abbr (ange-ftp-abbreviate-filename filename)) | |
3631 (t-host (and t-parsed (nth 0 t-parsed))) | |
3632 (t-user (and t-parsed (nth 1 t-parsed))) | |
3633 (t-name (and t-parsed (ange-ftp-quote-string (nth 2 t-parsed)))) | |
3634 (t-abbr (ange-ftp-abbreviate-filename newname filename)) | |
3635 (binary (or (ange-ftp-binary-file filename) | |
3636 (ange-ftp-binary-file newname) | |
3637 (and (memq (ange-ftp-host-type f-host f-user) | |
3638 '(unix dumb-unix)) | |
3639 (memq (ange-ftp-host-type t-host t-user) | |
3640 '(unix dumb-unix))))) | |
3641 temp1 | |
3642 temp2) | |
3643 | |
3644 ;; check to see if we can overwrite | |
3645 (if (or (not ok-if-already-exists) | |
3646 (numberp ok-if-already-exists)) | |
30459 | 3647 (ange-ftp-barf-or-query-if-file-exists newname "copy to it" |
28210 | 3648 (numberp ok-if-already-exists))) |
3649 | |
3650 ;; do the copying. | |
3651 (if f-parsed | |
30459 | 3652 |
28210 | 3653 ;; filename was remote. |
3654 (progn | |
3655 (if (or (ange-ftp-use-gateway-p f-host) | |
3656 t-parsed) | |
3657 ;; have to use intermediate file if we are getting via | |
3658 ;; gateway machine or we are doing a remote to remote copy. | |
3659 (setq temp1 (ange-ftp-make-tmp-name f-host))) | |
30459 | 3660 |
28210 | 3661 (if binary |
3662 (ange-ftp-set-binary-mode f-host f-user)) | |
3663 | |
3664 (ange-ftp-send-cmd | |
3665 f-host | |
3666 f-user | |
3667 (list 'get f-name (or temp1 (ange-ftp-quote-string newname))) | |
3668 (or msg | |
3669 (if (and temp1 t-parsed) | |
3670 (format "Getting %s" f-abbr) | |
3671 (format "Copying %s to %s" f-abbr t-abbr))) | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
3672 (list 'ange-ftp-cf1 |
28210 | 3673 filename newname binary msg |
3674 f-parsed f-host f-user f-name f-abbr | |
3675 t-parsed t-host t-user t-name t-abbr | |
3676 temp1 temp2 cont nowait) | |
3677 nowait)) | |
3678 | |
3679 ;; filename wasn't remote. newname must be remote. call the | |
3680 ;; function which does the remainder of the copying work. | |
3681 (ange-ftp-cf1 t nil | |
3682 filename newname binary msg | |
3683 f-parsed f-host f-user f-name f-abbr | |
3684 t-parsed t-host t-user t-name t-abbr | |
3685 nil nil cont nowait)))))) | |
3686 | |
3687 (defvar ange-ftp-waiting-flag nil) | |
3688 | |
3689 ;; next part of copying routine. | |
3690 (defun ange-ftp-cf1 (result line | |
3691 filename newname binary msg | |
3692 f-parsed f-host f-user f-name f-abbr | |
3693 t-parsed t-host t-user t-name t-abbr | |
3694 temp1 temp2 cont nowait) | |
3695 (if line | |
3696 ;; filename must have been remote, and we must have just done a GET. | |
3697 (unwind-protect | |
3698 (or result | |
3699 ;; GET failed for some reason. Clean up and get out. | |
3700 (progn | |
3701 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3702 (or cont | |
3703 (if ange-ftp-waiting-flag | |
3704 (throw 'ftp-error t) | |
3705 (signal 'ftp-error | |
3706 (list "Opening input file" | |
3707 (format "FTP Error: \"%s\"" line) | |
3708 filename)))))) | |
3709 ;; cleanup | |
3710 (if binary | |
3711 (ange-ftp-set-ascii-mode f-host f-user)))) | |
3712 | |
3713 (if result | |
3714 ;; We now have to copy either temp1 or filename to newname. | |
3715 (if t-parsed | |
30459 | 3716 |
28210 | 3717 ;; newname was remote. |
3718 (progn | |
3719 (if (ange-ftp-use-gateway-p t-host) | |
3720 (setq temp2 (ange-ftp-make-tmp-name t-host))) | |
30459 | 3721 |
28210 | 3722 ;; make sure data is moved into the right place for the |
3723 ;; outgoing transfer. gateway temporary files complicate | |
3724 ;; things nicely. | |
3725 (if temp1 | |
3726 (if temp2 | |
3727 (if (string-equal temp1 temp2) | |
3728 (setq temp1 nil) | |
3729 (ange-ftp-real-copy-file temp1 temp2 t)) | |
3730 (setq temp2 temp1 temp1 nil)) | |
3731 (if temp2 | |
3732 (ange-ftp-real-copy-file filename temp2 t))) | |
30459 | 3733 |
28210 | 3734 (if binary |
3735 (ange-ftp-set-binary-mode t-host t-user)) | |
3736 | |
3737 ;; tell the process filter what size the file is. | |
3738 (let ((attr (file-attributes (or temp2 filename)))) | |
3739 (if attr | |
3740 (ange-ftp-set-xfer-size t-host t-user (nth 7 attr)))) | |
3741 | |
3742 (ange-ftp-send-cmd | |
3743 t-host | |
3744 t-user | |
80116
91513d7aa412
* net/ange-ftp.el (ange-ftp-cf1): Quote FILENAME.
Michael Albinus <michael.albinus@gmx.de>
parents:
80044
diff
changeset
|
3745 (list 'put (or temp2 (ange-ftp-quote-string filename)) t-name) |
28210 | 3746 (or msg |
3747 (if (and temp2 f-parsed) | |
3748 (format "Putting %s" newname) | |
3749 (format "Copying %s to %s" f-abbr t-abbr))) | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
3750 (list 'ange-ftp-cf2 |
28210 | 3751 newname t-host t-user binary temp1 temp2 cont) |
3752 nowait)) | |
30459 | 3753 |
28210 | 3754 ;; newname wasn't remote. |
3755 (ange-ftp-cf2 t nil newname t-host t-user binary temp1 temp2 cont)) | |
3756 | |
3757 ;; first copy failed, tell caller | |
3758 (ange-ftp-call-cont cont result line))) | |
3759 | |
3760 ;; last part of copying routine. | |
3761 (defun ange-ftp-cf2 (result line newname t-host t-user binary temp1 temp2 cont) | |
3762 (unwind-protect | |
3763 (if line | |
3764 ;; result from doing a local to remote copy. | |
3765 (unwind-protect | |
3766 (progn | |
3767 (or result | |
3768 (or cont | |
3769 (if ange-ftp-waiting-flag | |
3770 (throw 'ftp-error t) | |
3771 (signal 'ftp-error | |
3772 (list "Opening output file" | |
3773 (format "FTP Error: \"%s\"" line) | |
3774 newname))))) | |
30459 | 3775 |
28210 | 3776 (ange-ftp-add-file-entry newname)) |
30459 | 3777 |
28210 | 3778 ;; cleanup. |
3779 (if binary | |
3780 (ange-ftp-set-ascii-mode t-host t-user))) | |
30459 | 3781 |
28210 | 3782 ;; newname was local. |
3783 (if temp1 | |
3784 (ange-ftp-real-copy-file temp1 newname t))) | |
30459 | 3785 |
28210 | 3786 ;; clean up |
3787 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3788 (and temp2 (ange-ftp-del-tmp-name temp2)) | |
3789 (ange-ftp-call-cont cont result line))) | |
3790 | |
3791 (defun ange-ftp-copy-file (filename newname &optional ok-if-already-exists | |
85505
bc97f31b2cf1
* files.el (backup-buffer-copy): Call `copy-file' with non-nil
Michael Albinus <michael.albinus@gmx.de>
parents:
84913
diff
changeset
|
3792 keep-date preserve-uid-gid) |
28210 | 3793 (interactive "fCopy file: \nFCopy %s to file: \np") |
3794 (ange-ftp-copy-file-internal filename | |
3795 newname | |
3796 ok-if-already-exists | |
3797 keep-date | |
3798 nil | |
3799 nil | |
3800 (interactive-p))) | |
39839
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3801 |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3802 (defun ange-ftp-copy-files-async (okay-p line verbose-p files) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3803 "Copy some files in the background. |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3804 OKAY-P must be t, and LINE does not matter. They are here to make this |
39839
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3805 function a valid CONT argument for `ange-ftp-raw-send-cmd'. |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3806 If VERBOSE-P is non-nil, print progress report in the echo area. |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3807 When all the files have been copied already, a message is shown anyway. |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3808 FILES is a list of files to copy in the form |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3809 (from-file to-file ok-if-already-exists keep-date) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3810 E.g., |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3811 (ange-ftp-copy-files-async t nil t '((\"a\" \"b\" t t) (\"c\" \"d\" t t)))" |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3812 (unless okay-p (error "%s: %s" 'ange-ftp-copy-files-async line)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3813 (if files |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3814 (let* ((ff (car files)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3815 (from-file (nth 0 ff)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3816 (to-file (nth 1 ff)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3817 (ok-if-exists (nth 2 ff)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3818 (keep-date (nth 3 ff))) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3819 (ange-ftp-copy-file-internal |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3820 from-file to-file ok-if-exists keep-date |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3821 (and verbose-p (format "%s --> %s" from-file to-file)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3822 (list 'ange-ftp-copy-files-async verbose-p (cdr files)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3823 t)) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3824 (message "%s: done" 'ange-ftp-copy-files-async))) |
39839
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3825 |
28210 | 3826 |
3827 ;;;; ------------------------------------------------------------ | |
3828 ;;;; File renaming support. | |
3829 ;;;; ------------------------------------------------------------ | |
3830 | |
3831 (defun ange-ftp-rename-remote-to-remote (filename newname f-parsed t-parsed) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3832 "Rename remote file FILENAME to remote file NEWNAME." |
28210 | 3833 (let ((f-host (nth 0 f-parsed)) |
3834 (f-user (nth 1 f-parsed)) | |
3835 (t-host (nth 0 t-parsed)) | |
3836 (t-user (nth 1 t-parsed))) | |
3837 (if (and (string-equal f-host t-host) | |
3838 (string-equal f-user t-user)) | |
3839 (let* ((f-name (ange-ftp-quote-string (nth 2 f-parsed))) | |
3840 (t-name (ange-ftp-quote-string (nth 2 t-parsed))) | |
3841 (cmd (list 'rename f-name t-name)) | |
3842 (fabbr (ange-ftp-abbreviate-filename filename)) | |
3843 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3844 (result (ange-ftp-send-cmd f-host f-user cmd | |
3845 (format "Renaming %s to %s" | |
3846 fabbr | |
3847 nabbr)))) | |
3848 (or (car result) | |
3849 (signal 'ftp-error | |
3850 (list | |
3851 "Renaming" | |
3852 (format "FTP Error: \"%s\"" (cdr result)) | |
3853 filename | |
3854 newname))) | |
3855 (ange-ftp-add-file-entry newname) | |
3856 (ange-ftp-delete-file-entry filename)) | |
3857 (ange-ftp-copy-file-internal filename newname t nil) | |
3858 (delete-file filename)))) | |
3859 | |
3860 (defun ange-ftp-rename-local-to-remote (filename newname) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3861 "Rename local file FILENAME to remote file NEWNAME." |
28210 | 3862 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3863 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3864 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3865 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3866 (let (ange-ftp-process-verbose) | |
3867 (delete-file filename)))) | |
3868 | |
3869 (defun ange-ftp-rename-remote-to-local (filename newname) | |
3870 "Rename remote file FILENAME to local file NEWNAME." | |
3871 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) | |
3872 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3873 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3874 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3875 (let (ange-ftp-process-verbose) | |
3876 (delete-file filename)))) | |
3877 | |
3878 (defun ange-ftp-rename-file (filename newname &optional ok-if-already-exists) | |
3879 (interactive "fRename file: \nFRename %s to file: \np") | |
3880 (setq filename (expand-file-name filename)) | |
3881 (setq newname (expand-file-name newname)) | |
3882 (let* ((f-parsed (ange-ftp-ftp-name filename)) | |
3883 (t-parsed (ange-ftp-ftp-name newname))) | |
3884 (if (and (or f-parsed t-parsed) | |
3885 (or (not ok-if-already-exists) | |
3886 (numberp ok-if-already-exists))) | |
3887 (ange-ftp-barf-or-query-if-file-exists | |
3888 newname | |
3889 "rename to it" | |
3890 (numberp ok-if-already-exists))) | |
3891 (if f-parsed | |
3892 (if t-parsed | |
3893 (ange-ftp-rename-remote-to-remote filename newname f-parsed | |
3894 t-parsed) | |
3895 (ange-ftp-rename-remote-to-local filename newname)) | |
3896 (if t-parsed | |
3897 (ange-ftp-rename-local-to-remote filename newname) | |
3898 (ange-ftp-real-rename-file filename newname ok-if-already-exists))))) | |
3899 | |
3900 ;;;; ------------------------------------------------------------ | |
3901 ;;;; File name completion support. | |
3902 ;;;; ------------------------------------------------------------ | |
3903 | |
3904 ;; If the file entry is not a directory (nor a symlink pointing to a directory) | |
3905 ;; returns whether the file (or file pointed to by the symlink) is ignored | |
3906 ;; by completion-ignored-extensions. | |
3907 ;; Note that `ange-ftp-this-dir' and `ange-ftp-completion-ignored-pattern' | |
3908 ;; are used as free variables. | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3909 (defun ange-ftp-file-entry-not-ignored-p (symname val) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3910 (if (stringp val) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3911 (let ((file (ange-ftp-expand-symlink val ange-ftp-this-dir))) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3912 (or (file-directory-p file) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3913 (and (file-exists-p file) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3914 (not (string-match ange-ftp-completion-ignored-pattern |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3915 symname))))) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3916 (or val ; is a directory name |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3917 (not (string-match ange-ftp-completion-ignored-pattern symname))))) |
28210 | 3918 |
42740
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
3919 (defun ange-ftp-root-dir-p (dir) |
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
3920 ;; Maybe we should use something more like |
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
3921 ;; (equal dir (file-name-directory (directory-file-name dir))) -stef |
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
3922 (or (and (eq system-type 'windows-nt) |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3923 (string-match "\\`[a-zA-Z]:[/\\]\\'" dir)) |
42740
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
3924 (string-equal "/" dir))) |
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
3925 |
28210 | 3926 (defun ange-ftp-file-name-all-completions (file dir) |
3927 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
3928 (if (ange-ftp-ftp-name ange-ftp-this-dir) | |
3929 (progn | |
3930 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3931 (setq ange-ftp-this-dir | |
3932 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) | |
3933 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
3934 (completions (all-completions file tbl))) |
28210 | 3935 |
3936 ;; see whether each matching file is a directory or not... | |
3937 (mapcar | |
30459 | 3938 (lambda (file) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3939 (let ((ent (gethash file tbl))) |
30459 | 3940 (if (and ent |
3941 (or (not (stringp ent)) | |
3942 (file-directory-p | |
3943 (ange-ftp-expand-symlink ent | |
3944 ange-ftp-this-dir)))) | |
3945 (concat file "/") | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3946 file))) |
28210 | 3947 completions))) |
3948 | |
42740
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
3949 (if (ange-ftp-root-dir-p ange-ftp-this-dir) |
28210 | 3950 (nconc (all-completions file (ange-ftp-generate-root-prefixes)) |
3951 (ange-ftp-real-file-name-all-completions file | |
3952 ange-ftp-this-dir)) | |
3953 (ange-ftp-real-file-name-all-completions file ange-ftp-this-dir))))) | |
3954 | |
74766
ca4412906dbd
* net/ange-ftp.el (ange-ftp-file-name-completion): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
68648
diff
changeset
|
3955 (defun ange-ftp-file-name-completion (file dir &optional predicate) |
28210 | 3956 (let ((ange-ftp-this-dir (expand-file-name dir))) |
3957 (if (ange-ftp-ftp-name ange-ftp-this-dir) | |
3958 (progn | |
3959 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3960 (if (equal file "") | |
3961 "" | |
3962 (setq ange-ftp-this-dir | |
3963 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) ;real? | |
3964 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
3965 (ange-ftp-completion-ignored-pattern | |
30459 | 3966 (mapconcat (lambda (s) (if (stringp s) |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3967 (concat (regexp-quote s) "$") |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3968 "/")) ; / never in filename |
28210 | 3969 completion-ignored-extensions |
3970 "\\|"))) | |
3971 (save-match-data | |
3972 (or (ange-ftp-file-name-completion-1 | |
3973 file tbl ange-ftp-this-dir | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
3974 'ange-ftp-file-entry-not-ignored-p) |
28210 | 3975 (ange-ftp-file-name-completion-1 |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
3976 file tbl ange-ftp-this-dir)))))) |
28210 | 3977 |
42740
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
3978 (if (ange-ftp-root-dir-p ange-ftp-this-dir) |
28210 | 3979 (try-completion |
3980 file | |
3981 (nconc (ange-ftp-generate-root-prefixes) | |
45432
85b978f04df7
(ange-ftp-generate-root-prefixes)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45260
diff
changeset
|
3982 (ange-ftp-real-file-name-all-completions |
74766
ca4412906dbd
* net/ange-ftp.el (ange-ftp-file-name-completion): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
68648
diff
changeset
|
3983 file ange-ftp-this-dir)) |
ca4412906dbd
* net/ange-ftp.el (ange-ftp-file-name-completion): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
68648
diff
changeset
|
3984 predicate) |
ca4412906dbd
* net/ange-ftp.el (ange-ftp-file-name-completion): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
68648
diff
changeset
|
3985 (if predicate |
ca4412906dbd
* net/ange-ftp.el (ange-ftp-file-name-completion): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
68648
diff
changeset
|
3986 (ange-ftp-real-file-name-completion |
ca4412906dbd
* net/ange-ftp.el (ange-ftp-file-name-completion): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
68648
diff
changeset
|
3987 file ange-ftp-this-dir predicate) |
ca4412906dbd
* net/ange-ftp.el (ange-ftp-file-name-completion): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
68648
diff
changeset
|
3988 (ange-ftp-real-file-name-completion |
ca4412906dbd
* net/ange-ftp.el (ange-ftp-file-name-completion): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
68648
diff
changeset
|
3989 file ange-ftp-this-dir)))))) |
28210 | 3990 |
3991 | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
3992 (defun ange-ftp-file-name-completion-1 (file tbl dir &optional predicate) |
28210 | 3993 (let ((bestmatch (try-completion file tbl predicate))) |
3994 (if bestmatch | |
3995 (if (eq bestmatch t) | |
3996 (if (file-directory-p (expand-file-name file dir)) | |
3997 (concat file "/") | |
3998 t) | |
3999 (if (and (eq (try-completion bestmatch tbl predicate) t) | |
4000 (file-directory-p | |
4001 (expand-file-name bestmatch dir))) | |
4002 (concat bestmatch "/") | |
4003 bestmatch))))) | |
4004 | |
4005 ;; Put these lines uncommmented in your .emacs if you want C-r to refresh | |
4006 ;; ange-ftp's cache whilst doing filename completion. | |
4007 ;; | |
4008 ;;(define-key minibuffer-local-completion-map "\C-r" 'ange-ftp-re-read-dir) | |
4009 ;;(define-key minibuffer-local-must-match-map "\C-r" 'ange-ftp-re-read-dir) | |
4010 | |
45170
1f468f3ca959
(ange-ftp-re-read-dir): Don't hide it behind the autoload-cookie.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
44953
diff
changeset
|
4011 ;;;###autoload |
1f468f3ca959
(ange-ftp-re-read-dir): Don't hide it behind the autoload-cookie.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
44953
diff
changeset
|
4012 (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) |
1f468f3ca959
(ange-ftp-re-read-dir): Don't hide it behind the autoload-cookie.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
44953
diff
changeset
|
4013 |
28210 | 4014 ;;;###autoload |
4015 (defun ange-ftp-reread-dir (&optional dir) | |
4016 "Reread remote directory DIR to update the directory cache. | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
4017 The implementation of remote FTP file names caches directory contents |
28210 | 4018 for speed. Therefore, when new remote files are created, Emacs |
4019 may not know they exist. You can use this command to reread a specific | |
4020 directory, so that Emacs will know its current contents." | |
4021 (interactive) | |
4022 (if dir | |
4023 (setq dir (expand-file-name dir)) | |
4024 (setq dir (file-name-directory (expand-file-name (buffer-string))))) | |
4025 (if (ange-ftp-ftp-name dir) | |
4026 (progn | |
4027 (setq ange-ftp-ls-cache-file nil) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
4028 (remhash dir ange-ftp-files-hashtable) |
28210 | 4029 (ange-ftp-get-files dir t)))) |
4030 | |
4031 (defun ange-ftp-make-directory (dir &optional parents) | |
4032 (interactive (list (expand-file-name (read-file-name "Make directory: ")))) | |
4033 (if parents | |
4034 (let ((parent (file-name-directory (directory-file-name dir)))) | |
4035 (or (file-exists-p parent) | |
4036 (ange-ftp-make-directory parent parents)))) | |
4037 (if (file-exists-p dir) | |
4038 (error "Cannot make directory %s: file already exists" dir) | |
4039 (let ((parsed (ange-ftp-ftp-name dir))) | |
4040 (if parsed | |
4041 (let* ((host (nth 0 parsed)) | |
4042 (user (nth 1 parsed)) | |
4043 ;; Some ftp's on unix machines (at least on Suns) | |
4044 ;; insist that mkdir take a filename, and not a | |
4045 ;; directory-name name as an arg. Argh!! This is a bug. | |
4046 ;; Non-unix machines will probably always insist | |
4047 ;; that mkdir takes a directory-name as an arg | |
4048 ;; (as the ftp man page says it should). | |
4049 (name (ange-ftp-quote-string | |
4050 (if (eq (ange-ftp-host-type host) 'unix) | |
4051 (ange-ftp-real-directory-file-name (nth 2 parsed)) | |
4052 (ange-ftp-real-file-name-as-directory | |
4053 (nth 2 parsed))))) | |
4054 (abbr (ange-ftp-abbreviate-filename dir)) | |
4055 (result (ange-ftp-send-cmd host user | |
4056 (list 'mkdir name) | |
4057 (format "Making directory %s" | |
4058 abbr)))) | |
4059 (or (car result) | |
4060 (ange-ftp-error host user | |
4061 (format "Could not make directory %s: %s" | |
4062 dir | |
4063 (cdr result)))) | |
4064 (ange-ftp-add-file-entry dir t)) | |
4065 (ange-ftp-real-make-directory dir))))) | |
4066 | |
4067 (defun ange-ftp-delete-directory (dir) | |
4068 (if (file-directory-p dir) | |
4069 (let ((parsed (ange-ftp-ftp-name dir))) | |
4070 (if parsed | |
4071 (let* ((host (nth 0 parsed)) | |
4072 (user (nth 1 parsed)) | |
4073 ;; Some ftp's on unix machines (at least on Suns) | |
4074 ;; insist that rmdir take a filename, and not a | |
4075 ;; directory-name name as an arg. Argh!! This is a bug. | |
4076 ;; Non-unix machines will probably always insist | |
4077 ;; that rmdir takes a directory-name as an arg | |
4078 ;; (as the ftp man page says it should). | |
4079 (name (ange-ftp-quote-string | |
4080 (if (eq (ange-ftp-host-type host) 'unix) | |
4081 (ange-ftp-real-directory-file-name | |
4082 (nth 2 parsed)) | |
4083 (ange-ftp-real-file-name-as-directory | |
4084 (nth 2 parsed))))) | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
4085 (abbr (ange-ftp-abbreviate-filename dir)) |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
4086 (result (ange-ftp-send-cmd host user |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
4087 (list 'rmdir name) |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
4088 (format "Removing directory %s" |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
4089 abbr)))) |
28210 | 4090 (or (car result) |
4091 (ange-ftp-error host user | |
4092 (format "Could not remove directory %s: %s" | |
4093 dir | |
4094 (cdr result)))) | |
4095 (ange-ftp-delete-file-entry dir t)) | |
4096 (ange-ftp-real-delete-directory dir))) | |
4097 (error "Not a directory: %s" dir))) | |
4098 | |
4099 ;; Make a local copy of FILE and return its name. | |
4100 | |
4101 (defun ange-ftp-file-local-copy (file) | |
4102 (let* ((fn1 (expand-file-name file)) | |
4103 (pa1 (ange-ftp-ftp-name fn1))) | |
4104 (if pa1 | |
4105 (let ((tmp1 (ange-ftp-make-tmp-name (car pa1)))) | |
4106 (ange-ftp-copy-file-internal fn1 tmp1 t nil | |
4107 (format "Getting %s" fn1)) | |
4108 tmp1)))) | |
4109 | |
81937
c2b7868011b1
* net/ange-ftp.el: (ange-ftp-file-remote-p): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
81758
diff
changeset
|
4110 (defun ange-ftp-file-remote-p (file &optional identification connected) |
c2b7868011b1
* net/ange-ftp.el: (ange-ftp-file-remote-p): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
81758
diff
changeset
|
4111 (let* ((parsed (ange-ftp-ftp-name file)) |
c2b7868011b1
* net/ange-ftp.el: (ange-ftp-file-remote-p): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
81758
diff
changeset
|
4112 (host (nth 0 parsed)) |
98390
e2da96799e45
* net/ange-ftp.el (ange-ftp-file-remote-p): Handle `localname' as
Michael Albinus <michael.albinus@gmx.de>
parents:
94677
diff
changeset
|
4113 (user (nth 1 parsed)) |
e2da96799e45
* net/ange-ftp.el (ange-ftp-file-remote-p): Handle `localname' as
Michael Albinus <michael.albinus@gmx.de>
parents:
94677
diff
changeset
|
4114 (localname (nth 2 parsed))) |
81937
c2b7868011b1
* net/ange-ftp.el: (ange-ftp-file-remote-p): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
81758
diff
changeset
|
4115 (and (or (not connected) |
c2b7868011b1
* net/ange-ftp.el: (ange-ftp-file-remote-p): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
81758
diff
changeset
|
4116 (let ((proc (get-process (ange-ftp-ftp-process-buffer host user)))) |
c2b7868011b1
* net/ange-ftp.el: (ange-ftp-file-remote-p): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
81758
diff
changeset
|
4117 (and proc (processp proc) |
c2b7868011b1
* net/ange-ftp.el: (ange-ftp-file-remote-p): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
81758
diff
changeset
|
4118 (memq (process-status proc) '(run open))))) |
c2b7868011b1
* net/ange-ftp.el: (ange-ftp-file-remote-p): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
81758
diff
changeset
|
4119 (cond |
c2b7868011b1
* net/ange-ftp.el: (ange-ftp-file-remote-p): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
81758
diff
changeset
|
4120 ((eq identification 'method) (and parsed "ftp")) |
c2b7868011b1
* net/ange-ftp.el: (ange-ftp-file-remote-p): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
81758
diff
changeset
|
4121 ((eq identification 'user) user) |
c2b7868011b1
* net/ange-ftp.el: (ange-ftp-file-remote-p): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
81758
diff
changeset
|
4122 ((eq identification 'host) host) |
98390
e2da96799e45
* net/ange-ftp.el (ange-ftp-file-remote-p): Handle `localname' as
Michael Albinus <michael.albinus@gmx.de>
parents:
94677
diff
changeset
|
4123 ((eq identification 'localname) localname) |
81937
c2b7868011b1
* net/ange-ftp.el: (ange-ftp-file-remote-p): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
81758
diff
changeset
|
4124 (t (ange-ftp-replace-name-component file "")))))) |
55846
aed680fa845d
(ange-ftp-file-remote-p): New defun.
Michael Albinus <michael.albinus@gmx.de>
parents:
53500
diff
changeset
|
4125 |
28210 | 4126 (defun ange-ftp-load (file &optional noerror nomessage nosuffix) |
4127 (if (ange-ftp-ftp-name file) | |
4128 (let ((tryfiles (if nosuffix | |
4129 (list file) | |
4130 (list (concat file ".elc") (concat file ".el") file))) | |
4131 ;; make sure there are no references to temp files | |
4132 (load-force-doc-strings t) | |
4133 copy) | |
4134 (while (and tryfiles (not copy)) | |
4135 (catch 'ftp-error | |
4136 (let ((ange-ftp-waiting-flag t)) | |
4137 (condition-case error | |
4138 (setq copy (ange-ftp-file-local-copy (car tryfiles))) | |
4139 (ftp-error nil)))) | |
4140 (setq tryfiles (cdr tryfiles))) | |
4141 (if copy | |
4142 (unwind-protect | |
4143 (funcall 'load copy noerror nomessage nosuffix) | |
4144 (delete-file copy)) | |
4145 (or noerror | |
4146 (signal 'file-error (list "Cannot open load file" file))) | |
4147 nil)) | |
4148 (ange-ftp-real-load file noerror nomessage nosuffix))) | |
4149 | |
4150 ;; Calculate default-unhandled-directory for a given ange-ftp buffer. | |
4151 (defun ange-ftp-unhandled-file-name-directory (filename) | |
91583
846fe57f9c57
(ange-ftp-unhandled-file-name-directory):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
4152 nil) |
28210 | 4153 |
4154 | |
4155 ;; Need the following functions for making filenames of compressed | |
4156 ;; files, because some OS's (unlike UNIX) do not allow a filename to | |
4157 ;; have two extensions. | |
4158 | |
4159 (defvar ange-ftp-make-compressed-filename-alist nil | |
4160 "Alist of host-type-specific functions to process file names for compression. | |
4161 Each element has the form (TYPE . FUNC). | |
4162 FUNC should take one argument, a file name, and return a list | |
4163 of the form (COMPRESSING NEWNAME). | |
30459 | 4164 COMPRESSING should be t if the specified file should be compressed, |
28210 | 4165 and nil if it should be uncompressed (that is, if it is a compressed file). |
4166 NEWNAME should be the name to give the new compressed or uncompressed file.") | |
4167 | |
4168 (defun ange-ftp-dired-compress-file (name) | |
4169 (let ((parsed (ange-ftp-ftp-name name)) | |
4170 conversion-func) | |
4171 (if (and parsed | |
4172 (setq conversion-func | |
4173 (cdr (assq (ange-ftp-host-type (car parsed)) | |
4174 ange-ftp-make-compressed-filename-alist)))) | |
4175 (let* ((decision | |
4176 (save-match-data (funcall conversion-func name))) | |
4177 (compressing (car decision)) | |
4178 (newfile (nth 1 decision))) | |
4179 (if compressing | |
4180 (ange-ftp-compress name newfile) | |
4181 (ange-ftp-uncompress name newfile))) | |
4182 (let (file-name-handler-alist) | |
4183 (dired-compress-file name))))) | |
4184 | |
4185 ;; Copy FILE to this machine, compress it, and copy out to NFILE. | |
4186 (defun ange-ftp-compress (file nfile) | |
4187 (let* ((parsed (ange-ftp-ftp-name file)) | |
4188 (tmp1 (ange-ftp-make-tmp-name (car parsed))) | |
4189 (tmp2 (ange-ftp-make-tmp-name (car parsed))) | |
4190 (abbr (ange-ftp-abbreviate-filename file)) | |
4191 (nabbr (ange-ftp-abbreviate-filename nfile)) | |
4192 (msg1 (format "Getting %s" abbr)) | |
4193 (msg2 (format "Putting %s" nabbr))) | |
4194 (unwind-protect | |
4195 (progn | |
4196 (ange-ftp-copy-file-internal file tmp1 t nil msg1) | |
4197 (and ange-ftp-process-verbose | |
4198 (ange-ftp-message "Compressing %s..." abbr)) | |
4199 (call-process-region (point) | |
4200 (point) | |
4201 shell-file-name | |
4202 nil | |
4203 t | |
4204 nil | |
4205 "-c" | |
4206 (format "compress -f -c < %s > %s" tmp1 tmp2)) | |
4207 (and ange-ftp-process-verbose | |
4208 (ange-ftp-message "Compressing %s...done" abbr)) | |
4209 (if (zerop (buffer-size)) | |
4210 (progn | |
4211 (let (ange-ftp-process-verbose) | |
4212 (delete-file file)) | |
4213 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) | |
4214 (ange-ftp-del-tmp-name tmp1) | |
4215 (ange-ftp-del-tmp-name tmp2)))) | |
30459 | 4216 |
28210 | 4217 ;; Copy FILE to this machine, uncompress it, and copy out to NFILE. |
4218 (defun ange-ftp-uncompress (file nfile) | |
4219 (let* ((parsed (ange-ftp-ftp-name file)) | |
4220 (tmp1 (ange-ftp-make-tmp-name (car parsed))) | |
4221 (tmp2 (ange-ftp-make-tmp-name (car parsed))) | |
4222 (abbr (ange-ftp-abbreviate-filename file)) | |
4223 (nabbr (ange-ftp-abbreviate-filename nfile)) | |
4224 (msg1 (format "Getting %s" abbr)) | |
4225 (msg2 (format "Putting %s" nabbr)) | |
4226 ;; ;; Cheap hack because of problems with binary file transfers from | |
4227 ;; ;; VMS hosts. | |
4228 ;; (gbinary (not (eq 'vms (ange-ftp-host-type (car parsed))))) | |
4229 ) | |
4230 (unwind-protect | |
4231 (progn | |
4232 (ange-ftp-copy-file-internal file tmp1 t nil msg1) | |
4233 (and ange-ftp-process-verbose | |
4234 (ange-ftp-message "Uncompressing %s..." abbr)) | |
4235 (call-process-region (point) | |
4236 (point) | |
4237 shell-file-name | |
4238 nil | |
4239 t | |
4240 nil | |
4241 "-c" | |
4242 (format "uncompress -c < %s > %s" tmp1 tmp2)) | |
4243 (and ange-ftp-process-verbose | |
4244 (ange-ftp-message "Uncompressing %s...done" abbr)) | |
4245 (if (zerop (buffer-size)) | |
4246 (progn | |
4247 (let (ange-ftp-process-verbose) | |
4248 (delete-file file)) | |
4249 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) | |
4250 (ange-ftp-del-tmp-name tmp1) | |
4251 (ange-ftp-del-tmp-name tmp2)))) | |
4252 | |
4253 (defun ange-ftp-find-backup-file-name (fn) | |
4254 ;; Either return the ordinary backup name, etc., | |
4255 ;; or return nil meaning don't make a backup. | |
4256 (if ange-ftp-make-backup-files | |
4257 (ange-ftp-real-find-backup-file-name fn))) | |
4258 | |
4259 ;;; Define the handler for special file names | |
4260 ;;; that causes ange-ftp to be invoked. | |
4261 | |
4262 ;;;###autoload | |
4263 (defun ange-ftp-hook-function (operation &rest args) | |
4264 (let ((fn (get operation 'ange-ftp))) | |
78422
5f8e4804505c
* net/ange-ftp.el (ange-ftp-hook-function): Catch also errors in
Michael Albinus <michael.albinus@gmx.de>
parents:
78230
diff
changeset
|
4265 (if fn |
5f8e4804505c
* net/ange-ftp.el (ange-ftp-hook-function): Catch also errors in
Michael Albinus <michael.albinus@gmx.de>
parents:
78230
diff
changeset
|
4266 ;; Catch also errors in process-filter. |
5f8e4804505c
* net/ange-ftp.el (ange-ftp-hook-function): Catch also errors in
Michael Albinus <michael.albinus@gmx.de>
parents:
78230
diff
changeset
|
4267 (condition-case err |
5f8e4804505c
* net/ange-ftp.el (ange-ftp-hook-function): Catch also errors in
Michael Albinus <michael.albinus@gmx.de>
parents:
78230
diff
changeset
|
4268 (let ((debug-on-error t)) |
5f8e4804505c
* net/ange-ftp.el (ange-ftp-hook-function): Catch also errors in
Michael Albinus <michael.albinus@gmx.de>
parents:
78230
diff
changeset
|
4269 (save-match-data (apply fn args))) |
78423
ca1e15221b34
*** empty log message ***
Michael Albinus <michael.albinus@gmx.de>
parents:
78422
diff
changeset
|
4270 (error (signal (car err) (cdr err)))) |
28210 | 4271 (ange-ftp-run-real-handler operation args)))) |
4272 | |
46349
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4273 ;; The following code is commented out because Tramp now deals with |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4274 ;; Ange-FTP filenames, too. |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4275 |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4276 ;;-;;; This regexp takes care of real ange-ftp file names (with a slash |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4277 ;;-;;; and colon). |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4278 ;;-;;; Don't allow the host name to end in a period--some systems use /.: |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4279 ;;-;;;###autoload |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4280 ;;-(or (assoc "^/[^/:]*[^/:.]:" file-name-handler-alist) |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4281 ;;- (setq file-name-handler-alist |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4282 ;;- (cons '("^/[^/:]*[^/:.]:" . ange-ftp-hook-function) |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4283 ;;- file-name-handler-alist))) |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4284 ;;- |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4285 ;;-;;; This regexp recognizes absolute filenames with only one component, |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4286 ;;-;;; for the sake of hostname completion. |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4287 ;;-;;;###autoload |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4288 ;;-(or (assoc "^/[^/:]*\\'" file-name-handler-alist) |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4289 ;;- (setq file-name-handler-alist |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4290 ;;- (cons '("^/[^/:]*\\'" . ange-ftp-completion-hook-function) |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4291 ;;- file-name-handler-alist))) |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4292 ;;- |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4293 ;;-;;; This regexp recognizes absolute filenames with only one component |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4294 ;;-;;; on Windows, for the sake of hostname completion. |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4295 ;;-;;; NB. Do not mark this as autoload, because it is very common to |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4296 ;;-;;; do completions in the root directory of drives on Windows. |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4297 ;;-(and (memq system-type '(ms-dos windows-nt)) |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4298 ;;- (or (assoc "^[a-zA-Z]:/[^/:]*\\'" file-name-handler-alist) |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4299 ;;- (setq file-name-handler-alist |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4300 ;;- (cons '("^[a-zA-Z]:/[^/:]*\\'" . |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4301 ;;- ange-ftp-completion-hook-function) |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4302 ;;- file-name-handler-alist)))) |
28210 | 4303 |
4304 ;;; The above two forms are sufficient to cause this file to be loaded | |
4305 ;;; if the user ever uses a file name with a colon in it. | |
4306 | |
30459 | 4307 ;;; This sets the mode |
46178
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
4308 (add-hook 'find-file-hook 'ange-ftp-set-buffer-mode) |
28210 | 4309 |
4310 ;;; Now say where to find the handlers for particular operations. | |
4311 | |
4312 (put 'file-name-directory 'ange-ftp 'ange-ftp-file-name-directory) | |
4313 (put 'file-name-nondirectory 'ange-ftp 'ange-ftp-file-name-nondirectory) | |
4314 (put 'file-name-as-directory 'ange-ftp 'ange-ftp-file-name-as-directory) | |
4315 (put 'directory-file-name 'ange-ftp 'ange-ftp-directory-file-name) | |
4316 (put 'expand-file-name 'ange-ftp 'ange-ftp-expand-file-name) | |
4317 (put 'make-directory 'ange-ftp 'ange-ftp-make-directory) | |
4318 (put 'delete-directory 'ange-ftp 'ange-ftp-delete-directory) | |
4319 (put 'insert-file-contents 'ange-ftp 'ange-ftp-insert-file-contents) | |
4320 (put 'directory-files 'ange-ftp 'ange-ftp-directory-files) | |
4321 (put 'file-directory-p 'ange-ftp 'ange-ftp-file-directory-p) | |
4322 (put 'file-writable-p 'ange-ftp 'ange-ftp-file-writable-p) | |
4323 (put 'file-readable-p 'ange-ftp 'ange-ftp-file-readable-p) | |
4324 (put 'file-executable-p 'ange-ftp 'ange-ftp-file-executable-p) | |
4325 (put 'file-symlink-p 'ange-ftp 'ange-ftp-file-symlink-p) | |
4326 (put 'delete-file 'ange-ftp 'ange-ftp-delete-file) | |
4327 (put 'verify-visited-file-modtime 'ange-ftp | |
4328 'ange-ftp-verify-visited-file-modtime) | |
4329 (put 'file-exists-p 'ange-ftp 'ange-ftp-file-exists-p) | |
4330 (put 'write-region 'ange-ftp 'ange-ftp-write-region) | |
4331 (put 'copy-file 'ange-ftp 'ange-ftp-copy-file) | |
4332 (put 'rename-file 'ange-ftp 'ange-ftp-rename-file) | |
4333 (put 'file-attributes 'ange-ftp 'ange-ftp-file-attributes) | |
30481 | 4334 (put 'file-newer-than-file-p 'ange-ftp 'ange-ftp-file-newer-than-file-p) |
28210 | 4335 (put 'file-name-all-completions 'ange-ftp 'ange-ftp-file-name-all-completions) |
4336 (put 'file-name-completion 'ange-ftp 'ange-ftp-file-name-completion) | |
4337 (put 'insert-directory 'ange-ftp 'ange-ftp-insert-directory) | |
4338 (put 'file-local-copy 'ange-ftp 'ange-ftp-file-local-copy) | |
55846
aed680fa845d
(ange-ftp-file-remote-p): New defun.
Michael Albinus <michael.albinus@gmx.de>
parents:
53500
diff
changeset
|
4339 (put 'file-remote-p 'ange-ftp 'ange-ftp-file-remote-p) |
28210 | 4340 (put 'unhandled-file-name-directory 'ange-ftp |
4341 'ange-ftp-unhandled-file-name-directory) | |
4342 (put 'file-name-sans-versions 'ange-ftp 'ange-ftp-file-name-sans-versions) | |
4343 (put 'dired-uncache 'ange-ftp 'ange-ftp-dired-uncache) | |
4344 (put 'dired-compress-file 'ange-ftp 'ange-ftp-dired-compress-file) | |
4345 (put 'load 'ange-ftp 'ange-ftp-load) | |
4346 (put 'find-backup-file-name 'ange-ftp 'ange-ftp-find-backup-file-name) | |
102850
0bb3e7671842
* net/ange-ftp.el (ange-ftp-set-file-modes): New defun. Change
Michael Albinus <michael.albinus@gmx.de>
parents:
102715
diff
changeset
|
4347 (put 'set-file-modes 'ange-ftp 'ange-ftp-set-file-modes) |
28210 | 4348 |
4349 ;; Turn off truename processing to save time. | |
4350 ;; Treat each name as its own truename. | |
4351 (put 'file-truename 'ange-ftp 'identity) | |
4352 | |
83791
cf51047dc34c
* net/ange-ftp.el: Add ange-ftp property to 'set-file-modes and
Michael Albinus <michael.albinus@gmx.de>
parents:
82287
diff
changeset
|
4353 ;; We must return non-nil in order to mask our inability to do the job. |
cf51047dc34c
* net/ange-ftp.el: Add ange-ftp property to 'set-file-modes and
Michael Albinus <michael.albinus@gmx.de>
parents:
82287
diff
changeset
|
4354 ;; Otherwise there are errors when applied to the target file during |
cf51047dc34c
* net/ange-ftp.el: Add ange-ftp property to 'set-file-modes and
Michael Albinus <michael.albinus@gmx.de>
parents:
82287
diff
changeset
|
4355 ;; copying from a (localhost) Tramp file. |
cf51047dc34c
* net/ange-ftp.el: Add ange-ftp property to 'set-file-modes and
Michael Albinus <michael.albinus@gmx.de>
parents:
82287
diff
changeset
|
4356 (put 'set-file-times 'ange-ftp 'ignore) |
cf51047dc34c
* net/ange-ftp.el: Add ange-ftp property to 'set-file-modes and
Michael Albinus <michael.albinus@gmx.de>
parents:
82287
diff
changeset
|
4357 |
28210 | 4358 ;; Turn off RCS/SCCS processing to save time. |
4359 ;; This returns nil for any file name as argument. | |
4360 (put 'vc-registered 'ange-ftp 'null) | |
4361 | |
81758
f03856eb136b
* files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
81639
diff
changeset
|
4362 ;; We can handle process-file in a restricted way (just for chown). |
83791
cf51047dc34c
* net/ange-ftp.el: Add ange-ftp property to 'set-file-modes and
Michael Albinus <michael.albinus@gmx.de>
parents:
82287
diff
changeset
|
4363 ;; Nothing possible for `start-file-process'. |
81639
8e5203081e80
* dired-aux.el: Remove `dired-call-process'.
Michael Albinus <michael.albinus@gmx.de>
parents:
76407
diff
changeset
|
4364 (put 'process-file 'ange-ftp 'ange-ftp-process-file) |
81758
f03856eb136b
* files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
81639
diff
changeset
|
4365 (put 'start-file-process 'ange-ftp 'ignore) |
28210 | 4366 (put 'shell-command 'ange-ftp 'ange-ftp-shell-command) |
4367 | |
4368 ;;; Define ways of getting at unmodified Emacs primitives, | |
4369 ;;; turning off our handler. | |
4370 | |
4371 (defun ange-ftp-run-real-handler (operation args) | |
4372 (let ((inhibit-file-name-handlers | |
4373 (cons 'ange-ftp-hook-function | |
4374 (cons 'ange-ftp-completion-hook-function | |
4375 (and (eq inhibit-file-name-operation operation) | |
4376 inhibit-file-name-handlers)))) | |
4377 (inhibit-file-name-operation operation)) | |
4378 (apply operation args))) | |
4379 | |
4380 (defun ange-ftp-real-file-name-directory (&rest args) | |
4381 (ange-ftp-run-real-handler 'file-name-directory args)) | |
4382 (defun ange-ftp-real-file-name-nondirectory (&rest args) | |
4383 (ange-ftp-run-real-handler 'file-name-nondirectory args)) | |
4384 (defun ange-ftp-real-file-name-as-directory (&rest args) | |
4385 (ange-ftp-run-real-handler 'file-name-as-directory args)) | |
4386 (defun ange-ftp-real-directory-file-name (&rest args) | |
4387 (ange-ftp-run-real-handler 'directory-file-name args)) | |
4388 (defun ange-ftp-real-expand-file-name (&rest args) | |
4389 (ange-ftp-run-real-handler 'expand-file-name args)) | |
4390 (defun ange-ftp-real-make-directory (&rest args) | |
4391 (ange-ftp-run-real-handler 'make-directory args)) | |
4392 (defun ange-ftp-real-delete-directory (&rest args) | |
4393 (ange-ftp-run-real-handler 'delete-directory args)) | |
4394 (defun ange-ftp-real-insert-file-contents (&rest args) | |
4395 (ange-ftp-run-real-handler 'insert-file-contents args)) | |
4396 (defun ange-ftp-real-directory-files (&rest args) | |
4397 (ange-ftp-run-real-handler 'directory-files args)) | |
4398 (defun ange-ftp-real-file-directory-p (&rest args) | |
4399 (ange-ftp-run-real-handler 'file-directory-p args)) | |
4400 (defun ange-ftp-real-file-writable-p (&rest args) | |
4401 (ange-ftp-run-real-handler 'file-writable-p args)) | |
4402 (defun ange-ftp-real-file-readable-p (&rest args) | |
4403 (ange-ftp-run-real-handler 'file-readable-p args)) | |
4404 (defun ange-ftp-real-file-executable-p (&rest args) | |
4405 (ange-ftp-run-real-handler 'file-executable-p args)) | |
4406 (defun ange-ftp-real-file-symlink-p (&rest args) | |
4407 (ange-ftp-run-real-handler 'file-symlink-p args)) | |
4408 (defun ange-ftp-real-delete-file (&rest args) | |
4409 (ange-ftp-run-real-handler 'delete-file args)) | |
4410 (defun ange-ftp-real-verify-visited-file-modtime (&rest args) | |
4411 (ange-ftp-run-real-handler 'verify-visited-file-modtime args)) | |
4412 (defun ange-ftp-real-file-exists-p (&rest args) | |
4413 (ange-ftp-run-real-handler 'file-exists-p args)) | |
4414 (defun ange-ftp-real-write-region (&rest args) | |
4415 (ange-ftp-run-real-handler 'write-region args)) | |
4416 (defun ange-ftp-real-backup-buffer (&rest args) | |
4417 (ange-ftp-run-real-handler 'backup-buffer args)) | |
4418 (defun ange-ftp-real-copy-file (&rest args) | |
4419 (ange-ftp-run-real-handler 'copy-file args)) | |
4420 (defun ange-ftp-real-rename-file (&rest args) | |
4421 (ange-ftp-run-real-handler 'rename-file args)) | |
4422 (defun ange-ftp-real-file-attributes (&rest args) | |
4423 (ange-ftp-run-real-handler 'file-attributes args)) | |
30481 | 4424 (defun ange-ftp-real-file-newer-than-file-p (&rest args) |
4425 (ange-ftp-run-real-handler 'file-newer-than-file-p args)) | |
28210 | 4426 (defun ange-ftp-real-file-name-all-completions (&rest args) |
4427 (ange-ftp-run-real-handler 'file-name-all-completions args)) | |
4428 (defun ange-ftp-real-file-name-completion (&rest args) | |
4429 (ange-ftp-run-real-handler 'file-name-completion args)) | |
4430 (defun ange-ftp-real-insert-directory (&rest args) | |
4431 (ange-ftp-run-real-handler 'insert-directory args)) | |
4432 (defun ange-ftp-real-file-name-sans-versions (&rest args) | |
4433 (ange-ftp-run-real-handler 'file-name-sans-versions args)) | |
4434 (defun ange-ftp-real-shell-command (&rest args) | |
4435 (ange-ftp-run-real-handler 'shell-command args)) | |
4436 (defun ange-ftp-real-load (&rest args) | |
4437 (ange-ftp-run-real-handler 'load args)) | |
4438 (defun ange-ftp-real-find-backup-file-name (&rest args) | |
4439 (ange-ftp-run-real-handler 'find-backup-file-name args)) | |
4440 | |
4441 ;; Here we support using dired on remote hosts. | |
4442 ;; I have turned off the support for using dired on foreign directory formats. | |
4443 ;; That involves too many unclean hooks. | |
30459 | 4444 ;; It would be cleaner to support such operations by |
28210 | 4445 ;; converting the foreign directory format to something dired can understand; |
4446 ;; something close to ls -l output. | |
4447 ;; The logical place to do this is in the functions ange-ftp-parse-...-listing. | |
4448 | |
4449 ;; Some of the old dired hooks would still be needed even if this is done. | |
4450 ;; I have preserved (and modernized) those hooks. | |
4451 ;; So the format conversion should be all that is needed. | |
4452 | |
47575
4d9f899a5963
* dired.el (dired-insert-directory): Always add "--dired" to to
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
47113
diff
changeset
|
4453 ;; When called from dired, SWITCHES may start with "--dired". |
4d9f899a5963
* dired.el (dired-insert-directory): Always add "--dired" to to
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
47113
diff
changeset
|
4454 ;; `ange-ftp-ls' handles this. |
4d9f899a5963
* dired.el (dired-insert-directory): Always add "--dired" to to
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
47113
diff
changeset
|
4455 |
28210 | 4456 (defun ange-ftp-insert-directory (file switches &optional wildcard full) |
65762
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4457 (if (not (ange-ftp-ftp-name (expand-file-name file))) |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4458 (ange-ftp-real-insert-directory file switches wildcard full) |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
4459 ;; We used to follow symlinks on `file' here. Apparently it was done |
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
4460 ;; because some FTP servers react to "ls foo" by listing the symlink foo |
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
4461 ;; rather than the directory it points to. Now that ange-ftp-ls uses |
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
4462 ;; "cd foo; ls" instead, this is not necesssary any more. |
65762
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4463 (insert |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4464 (cond |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4465 (wildcard |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4466 (let ((default-directory (file-name-directory file))) |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4467 (ange-ftp-ls (file-name-nondirectory file) switches nil nil t))) |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4468 (full |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4469 (ange-ftp-ls file switches 'parse)) |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4470 (t |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4471 ;; If `full' is nil we're going to do `ls' for a single file. |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4472 ;; Problem is that for various reasons, ange-ftp-ls needs to cd and |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4473 ;; then do an ls of current dir, which obviously won't work if we |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4474 ;; want to ls a file. So instead, we get a full listing of the |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4475 ;; parent directory and extract the line corresponding to `file'. |
102225
d79785ea1088
(ange-ftp-insert-directory): Adapt switch manipulation to 2009-02-11
Chong Yidong <cyd@stupidchicken.com>
parents:
100908
diff
changeset
|
4476 (when (string-match "-?d\\'" switches) |
65762
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4477 ;; Remove "d" which dired added to `switches'. |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4478 (setq switches (substring switches 0 (match-beginning 0)))) |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4479 (let* ((dirlist (ange-ftp-ls (or (file-name-directory file) ".") |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4480 switches nil)) |
65791
5121212db622
(ange-ftp-insert-directory): Fix up the search when `file' is absolute.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65790
diff
changeset
|
4481 (filename (file-name-nondirectory (directory-file-name file))) |
65762
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4482 (case-fold-search nil)) |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4483 ;; FIXME: This presumes a particular output format, which is |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4484 ;; basically Unix. |
65791
5121212db622
(ange-ftp-insert-directory): Fix up the search when `file' is absolute.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65790
diff
changeset
|
4485 (if (string-match (concat "^.+[^ ] " (regexp-quote filename) |
65762
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4486 "\\( -> .*\\)?[@/*=]?\n") dirlist) |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4487 (match-string 0 dirlist) |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4488 ""))))))) |
28210 | 4489 |
4490 (defun ange-ftp-dired-uncache (dir) | |
4491 (if (ange-ftp-ftp-name (expand-file-name dir)) | |
4492 (setq ange-ftp-ls-cache-file nil))) | |
4493 | |
4494 (defvar ange-ftp-sans-version-alist nil | |
4495 "Alist of mapping host type into function to remove file version numbers.") | |
4496 | |
4497 (defun ange-ftp-file-name-sans-versions (file keep-backup-version) | |
4498 (let* ((short (ange-ftp-abbreviate-filename file)) | |
4499 (parsed (ange-ftp-ftp-name short)) | |
65762
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4500 (func (if parsed (cdr (assq (ange-ftp-host-type (car parsed)) |
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
4501 ange-ftp-sans-version-alist))))) |
28210 | 4502 (if func (funcall func file keep-backup-version) |
4503 (ange-ftp-real-file-name-sans-versions file keep-backup-version)))) | |
4504 | |
4505 ;; This is the handler for shell-command. | |
4506 (defun ange-ftp-shell-command (command &optional output-buffer error-buffer) | |
4507 (let* ((parsed (ange-ftp-ftp-name default-directory)) | |
4508 (host (nth 0 parsed)) | |
4509 (user (nth 1 parsed)) | |
4510 (name (nth 2 parsed))) | |
4511 (if (not parsed) | |
4512 (ange-ftp-real-shell-command command output-buffer error-buffer) | |
4513 (if (> (length name) 0) ; else it's $HOME | |
4514 (setq command (concat "cd " name "; " command))) | |
42495
09f1b967d12e
(ange-ftp-shell-command): Remove port specification from the hostname.
Pavel Janík <Pavel@Janik.cz>
parents:
42397
diff
changeset
|
4515 ;; Remove port from the hostname |
42740
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
4516 (when (string-match "\\(.*\\)#" host) |
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
4517 (setq host (match-string 1 host))) |
28210 | 4518 (setq command |
4519 (format "%s %s \"%s\"" ; remsh -l USER does not work well | |
4520 ; on a hp-ux machine I tried | |
4521 remote-shell-program host command)) | |
4522 (ange-ftp-message "Remote command '%s' ..." command) | |
4523 ;; Cannot call ange-ftp-real-dired-run-shell-command here as it | |
4524 ;; would prepend "cd default-directory" --- which bombs because | |
4525 ;; default-directory is in ange-ftp syntax for remote file names. | |
4526 (ange-ftp-real-shell-command command output-buffer error-buffer)))) | |
4527 | |
81639
8e5203081e80
* dired-aux.el: Remove `dired-call-process'.
Michael Albinus <michael.albinus@gmx.de>
parents:
76407
diff
changeset
|
4528 ;;; This is the handler for process-file. |
8e5203081e80
* dired-aux.el: Remove `dired-call-process'.
Michael Albinus <michael.albinus@gmx.de>
parents:
76407
diff
changeset
|
4529 (defun ange-ftp-process-file (program infile buffer display &rest arguments) |
28210 | 4530 ;; PROGRAM is always one of those below in the cond in dired.el. |
4531 ;; The ARGUMENTS are (nearly) always files. | |
4532 (if (ange-ftp-ftp-name default-directory) | |
4533 ;; Can't use ange-ftp-dired-host-type here because the current | |
4534 ;; buffer is *dired-check-process output* | |
4535 (condition-case oops | |
4536 (cond ((equal dired-chmod-program program) | |
4537 (ange-ftp-call-chmod arguments)) | |
4538 ;; ((equal "chgrp" program)) | |
4539 ;; ((equal dired-chown-program program)) | |
4540 (t (error "Unknown remote command: %s" program))) | |
4541 (ftp-error (insert (format "%s: %s, %s\n" | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
4542 (nth 1 oops) |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
4543 (nth 2 oops) |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
4544 (nth 3 oops))) |
28210 | 4545 ;; Caller expects nonzero value to mean failure. |
4546 1) | |
4547 (error (insert (format "%s\n" (nth 1 oops))) | |
4548 1)) | |
81639
8e5203081e80
* dired-aux.el: Remove `dired-call-process'.
Michael Albinus <michael.albinus@gmx.de>
parents:
76407
diff
changeset
|
4549 (apply 'call-process program infile buffer display arguments))) |
28210 | 4550 |
4551 ;; Handle an attempt to run chmod on a remote file | |
4552 ;; by using the ftp chmod command. | |
4553 (defun ange-ftp-call-chmod (args) | |
4554 (if (< (length args) 2) | |
4555 (error "ange-ftp-call-chmod: missing mode and/or filename: %s" args)) | |
4556 (let ((mode (car args)) | |
4557 (rest (cdr args))) | |
4558 (if (equal "--" (car rest)) | |
4559 (setq rest (cdr rest))) | |
84913
db1179979d6b
(ange-ftp-call-chmod, ange-ftp-parse-bs2000-listing):
Juanma Barranquero <lekktu@gmail.com>
parents:
83791
diff
changeset
|
4560 (mapc |
30459 | 4561 (lambda (file) |
4562 (setq file (expand-file-name file)) | |
4563 (let ((parsed (ange-ftp-ftp-name file))) | |
4564 (if parsed | |
4565 (let* ((host (nth 0 parsed)) | |
4566 (user (nth 1 parsed)) | |
4567 (name (ange-ftp-quote-string (nth 2 parsed))) | |
4568 (abbr (ange-ftp-abbreviate-filename file)) | |
4569 (result (ange-ftp-send-cmd host user | |
4570 (list 'chmod mode name) | |
4571 (format "doing chmod %s" | |
4572 abbr)))) | |
4573 (or (car result) | |
102850
0bb3e7671842
* net/ange-ftp.el (ange-ftp-set-file-modes): New defun. Change
Michael Albinus <michael.albinus@gmx.de>
parents:
102715
diff
changeset
|
4574 (ange-ftp-error |
0bb3e7671842
* net/ange-ftp.el (ange-ftp-set-file-modes): New defun. Change
Michael Albinus <michael.albinus@gmx.de>
parents:
102715
diff
changeset
|
4575 host user (concat "CHMOD failed: " (cdr result)))))))) |
28210 | 4576 rest)) |
4577 (setq ange-ftp-ls-cache-file nil) ;Stop confusing Dired. | |
4578 0) | |
102850
0bb3e7671842
* net/ange-ftp.el (ange-ftp-set-file-modes): New defun. Change
Michael Albinus <michael.albinus@gmx.de>
parents:
102715
diff
changeset
|
4579 |
0bb3e7671842
* net/ange-ftp.el (ange-ftp-set-file-modes): New defun. Change
Michael Albinus <michael.albinus@gmx.de>
parents:
102715
diff
changeset
|
4580 (defun ange-ftp-set-file-modes (filename mode) |
0bb3e7671842
* net/ange-ftp.el (ange-ftp-set-file-modes): New defun. Change
Michael Albinus <michael.albinus@gmx.de>
parents:
102715
diff
changeset
|
4581 (ange-ftp-call-chmod (list (format "%o" mode) filename))) |
28210 | 4582 |
64667
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
4583 ;; This is turned off because it has nothing properly to do |
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
4584 ;; with dired. It could be reasonable to adapt this to |
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
4585 ;; replace ange-ftp-copy-file. |
28210 | 4586 |
4587 ;;;;; ------------------------------------------------------------ | |
4588 ;;;;; Noddy support for async copy-file within dired. | |
4589 ;;;;; ------------------------------------------------------------ | |
4590 | |
4591 ;;(defun ange-ftp-dired-copy-file (from to ok-flag &optional cont nowait) | |
4592 ;; "Documented as original." | |
4593 ;; (dired-handle-overwrite to) | |
4594 ;; (ange-ftp-copy-file-internal from to ok-flag dired-copy-preserve-time nil | |
4595 ;; cont nowait)) | |
4596 | |
4597 ;;(defun ange-ftp-dired-do-create-files (op-symbol file-creator operation arg | |
4598 ;; &optional marker-char op1 | |
4599 ;; how-to) | |
4600 ;; "Documented as original." | |
4601 ;; ;; we need to let ange-ftp-dired-create-files know that we indirectly | |
4602 ;; ;; called it rather than somebody else. | |
4603 ;; (let ((ange-ftp-dired-do-create-files t)) ; tell who caller is | |
4604 ;; (ange-ftp-real-dired-do-create-files op-symbol file-creator operation | |
4605 ;; arg marker-char op1 how-to))) | |
4606 | |
4607 ;;(defun ange-ftp-dired-create-files (file-creator operation fn-list name-constructor | |
4608 ;; &optional marker-char) | |
4609 ;; "Documented as original." | |
4610 ;; (if (and (boundp 'ange-ftp-dired-do-create-files) | |
4611 ;; ;; called from ange-ftp-dired-do-create-files? | |
4612 ;; ange-ftp-dired-do-create-files | |
4613 ;; ;; any files worth copying? | |
4614 ;; fn-list | |
4615 ;; ;; we only support async copy-file at the mo. | |
4616 ;; (eq file-creator 'dired-copy-file) | |
4617 ;; ;; it is only worth calling the alternative function for remote files | |
4618 ;; ;; as we tie ourself in recursive knots otherwise. | |
4619 ;; (or (ange-ftp-ftp-name (car fn-list)) | |
4620 ;; ;; we can only call the name constructor for dired-do-create-files | |
4621 ;; ;; since the one for regexps starts prompting here, there and | |
4622 ;; ;; everywhere. | |
4623 ;; (ange-ftp-ftp-name (funcall name-constructor (car fn-list))))) | |
4624 ;; ;; use the process-filter driven routine rather than the iterative one. | |
4625 ;; (ange-ftp-dcf-1 file-creator | |
4626 ;; operation | |
4627 ;; fn-list | |
4628 ;; name-constructor | |
4629 ;; (and (boundp 'target) target) ;dynamically bound | |
4630 ;; marker-char | |
4631 ;; (current-buffer) | |
4632 ;; nil ;overwrite-query | |
4633 ;; nil ;overwrite-backup-query | |
4634 ;; nil ;failures | |
4635 ;; nil ;skipped | |
4636 ;; 0 ;success-count | |
4637 ;; (length fn-list) ;total | |
4638 ;; ) | |
4639 ;; ;; normal case... use the interactive routine... much cheaper. | |
4640 ;; (ange-ftp-real-dired-create-files file-creator operation fn-list | |
4641 ;; name-constructor marker-char))) | |
4642 | |
4643 ;;(defun ange-ftp-dcf-1 (file-creator operation fn-list name-constructor | |
30459 | 4644 ;; target marker-char buffer overwrite-query |
28210 | 4645 ;; overwrite-backup-query failures skipped |
4646 ;; success-count total) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
4647 ;; (with-current-buffer buffer |
28210 | 4648 ;; (if (null fn-list) |
4649 ;; (ange-ftp-dcf-3 failures operation total skipped | |
4650 ;; success-count buffer) | |
30459 | 4651 |
28210 | 4652 ;; (let* ((from (car fn-list)) |
4653 ;; (to (funcall name-constructor from))) | |
4654 ;; (if (equal to from) | |
4655 ;; (progn | |
4656 ;; (setq to nil) | |
4657 ;; (dired-log "Cannot %s to same file: %s\n" | |
4658 ;; (downcase operation) from))) | |
4659 ;; (if (not to) | |
4660 ;; (ange-ftp-dcf-1 file-creator | |
4661 ;; operation | |
4662 ;; (cdr fn-list) | |
4663 ;; name-constructor | |
4664 ;; target | |
4665 ;; marker-char | |
4666 ;; buffer | |
4667 ;; overwrite-query | |
4668 ;; overwrite-backup-query | |
4669 ;; failures | |
4670 ;; (cons (dired-make-relative from) skipped) | |
4671 ;; success-count | |
4672 ;; total) | |
4673 ;; (let* ((overwrite (file-exists-p to)) | |
4674 ;; (overwrite-confirmed ; for dired-handle-overwrite | |
4675 ;; (and overwrite | |
4676 ;; (let ((help-form '(format "\ | |
4677 ;;Type SPC or `y' to overwrite file `%s', | |
4678 ;;DEL or `n' to skip to next, | |
4679 ;;ESC or `q' to not overwrite any of the remaining files, | |
4680 ;;`!' to overwrite all remaining files with no more questions." to))) | |
4681 ;; (dired-query 'overwrite-query | |
4682 ;; "Overwrite `%s'?" to)))) | |
4683 ;; ;; must determine if FROM is marked before file-creator | |
4684 ;; ;; gets a chance to delete it (in case of a move). | |
4685 ;; (actual-marker-char | |
4686 ;; (cond ((integerp marker-char) marker-char) | |
4687 ;; (marker-char (dired-file-marker from)) ; slow | |
4688 ;; (t nil)))) | |
4689 ;; (condition-case err | |
4690 ;; (funcall file-creator from to overwrite-confirmed | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
4691 ;; (list 'ange-ftp-dcf-2 |
28210 | 4692 ;; nil ;err |
4693 ;; file-creator operation fn-list | |
4694 ;; name-constructor | |
4695 ;; target | |
4696 ;; marker-char actual-marker-char | |
4697 ;; buffer to from | |
4698 ;; overwrite | |
4699 ;; overwrite-confirmed | |
30459 | 4700 ;; overwrite-query |
28210 | 4701 ;; overwrite-backup-query |
4702 ;; failures skipped success-count | |
4703 ;; total) | |
4704 ;; t) | |
4705 ;; (file-error ; FILE-CREATOR aborted | |
4706 ;; (ange-ftp-dcf-2 nil ;result | |
4707 ;; nil ;line | |
4708 ;; err | |
4709 ;; file-creator operation fn-list | |
4710 ;; name-constructor | |
4711 ;; target | |
4712 ;; marker-char actual-marker-char | |
4713 ;; buffer to from | |
4714 ;; overwrite | |
4715 ;; overwrite-confirmed | |
30459 | 4716 ;; overwrite-query |
28210 | 4717 ;; overwrite-backup-query |
4718 ;; failures skipped success-count | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
4719 ;; total))))))))) |
28210 | 4720 |
4721 ;;(defun ange-ftp-dcf-2 (result line err | |
4722 ;; file-creator operation fn-list | |
4723 ;; name-constructor | |
4724 ;; target | |
4725 ;; marker-char actual-marker-char | |
4726 ;; buffer to from | |
4727 ;; overwrite | |
4728 ;; overwrite-confirmed | |
30459 | 4729 ;; overwrite-query |
28210 | 4730 ;; overwrite-backup-query |
4731 ;; failures skipped success-count | |
4732 ;; total) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
4733 ;; (with-current-buffer buffer |
28210 | 4734 ;; (if (or err (not result)) |
4735 ;; (progn | |
4736 ;; (setq failures (cons (dired-make-relative from) failures)) | |
4737 ;; (dired-log "%s `%s' to `%s' failed:\n%s\n" | |
4738 ;; operation from to (or err line))) | |
4739 ;; (if overwrite | |
4740 ;; ;; If we get here, file-creator hasn't been aborted | |
4741 ;; ;; and the old entry (if any) has to be deleted | |
4742 ;; ;; before adding the new entry. | |
4743 ;; (dired-remove-file to)) | |
4744 ;; (setq success-count (1+ success-count)) | |
4745 ;; (message "%s: %d of %d" operation success-count total) | |
4746 ;; (dired-add-file to actual-marker-char)) | |
30459 | 4747 |
28210 | 4748 ;; (ange-ftp-dcf-1 file-creator operation (cdr fn-list) |
4749 ;; name-constructor | |
4750 ;; target | |
4751 ;; marker-char | |
4752 ;; buffer | |
30459 | 4753 ;; overwrite-query |
28210 | 4754 ;; overwrite-backup-query |
4755 ;; failures skipped success-count | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
4756 ;; total))) |
28210 | 4757 |
4758 ;;(defun ange-ftp-dcf-3 (failures operation total skipped success-count | |
4759 ;; buffer) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
4760 ;; (with-current-buffer buffer |
28210 | 4761 ;; (cond |
4762 ;; (failures | |
4763 ;; (dired-log-summary | |
4764 ;; (message "%s failed for %d of %d file%s %s" | |
4765 ;; operation (length failures) total | |
4766 ;; (dired-plural-s total) failures))) | |
4767 ;; (skipped | |
4768 ;; (dired-log-summary | |
4769 ;; (message "%s: %d of %d file%s skipped %s" | |
4770 ;; operation (length skipped) total | |
4771 ;; (dired-plural-s total) skipped))) | |
4772 ;; (t | |
4773 ;; (message "%s: %s file%s." | |
4774 ;; operation success-count (dired-plural-s success-count)))) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
4775 ;; (dired-move-to-filename))) |
28210 | 4776 |
4777 ;;;; ----------------------------------------------- | |
4778 ;;;; Unix Descriptive Listing (dl) Support | |
4779 ;;;; ----------------------------------------------- | |
4780 | |
4781 ;; This is turned off because nothing uses it currently | |
4782 ;; and because I don't understand what it's supposed to be for. --rms. | |
4783 | |
4784 ;;(defconst ange-ftp-dired-dl-re-dir | |
4785 ;; "^. [^ /]+/[ \n]" | |
4786 ;; "Regular expression to use to search for dl directories.") | |
4787 | |
4788 ;;(or (assq 'unix:dl ange-ftp-dired-re-dir-alist) | |
4789 ;; (setq ange-ftp-dired-re-dir-alist | |
4790 ;; (cons (cons 'unix:dl ange-ftp-dired-dl-re-dir) | |
4791 ;; ange-ftp-dired-re-dir-alist))) | |
4792 | |
4793 ;;(defun ange-ftp-dired-dl-move-to-filename (&optional raise-error eol) | |
4794 ;; "In dired, move to the first character of the filename on this line." | |
4795 ;; ;; This is the Unix dl version. | |
4796 ;; (or eol (setq eol (progn (end-of-line) (point)))) | |
4797 ;; (let (case-fold-search) | |
4798 ;; (beginning-of-line) | |
4799 ;; (if (looking-at ". [^ ]+ +\\([0-9]+\\|-\\|=\\) ") | |
4800 ;; (goto-char (+ (point) 2)) | |
4801 ;; (if raise-error | |
4802 ;; (error "No file on this line") | |
4803 ;; nil)))) | |
4804 | |
4805 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-filename-alist) | |
4806 ;; (setq ange-ftp-dired-move-to-filename-alist | |
4807 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-filename) | |
4808 ;; ange-ftp-dired-move-to-filename-alist))) | |
4809 | |
4810 ;;(defun ange-ftp-dired-dl-move-to-end-of-filename (&optional no-error eol) | |
4811 ;; ;; Assumes point is at beginning of filename. | |
4812 ;; ;; So, it should be called only after (dired-move-to-filename t). | |
4813 ;; ;; On failure, signals an error or returns nil. | |
4814 ;; ;; This is the Unix dl version. | |
4815 ;; (let ((opoint (point)) | |
4816 ;; case-fold-search hidden) | |
4817 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) | |
4818 ;; (setq hidden (and selective-display | |
4819 ;; (save-excursion | |
4820 ;; (search-forward "\r" eol t)))) | |
4821 ;; (if hidden | |
4822 ;; (if no-error | |
4823 ;; nil | |
4824 ;; (error | |
4825 ;; (substitute-command-keys | |
4826 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) | |
4827 ;; (skip-chars-forward "^ /" eol) | |
4828 ;; (if (eq opoint (point)) | |
4829 ;; (if no-error | |
4830 ;; nil | |
4831 ;; (error "No file on this line")) | |
4832 ;; (point))))) | |
4833 | |
4834 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-end-of-filename-alist) | |
4835 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist | |
4836 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-end-of-filename) | |
4837 ;; ange-ftp-dired-move-to-end-of-filename-alist))) | |
4838 | |
4839 ;;;; ------------------------------------------------------------ | |
4840 ;;;; VOS support (VOS support is probably broken, | |
4841 ;;;; but I don't know anything about VOS.) | |
4842 ;;;; ------------------------------------------------------------ | |
4843 ; | |
4844 ;(defun ange-ftp-fix-name-for-vos (name &optional reverse) | |
4845 ; (setq name (copy-sequence name)) | |
4846 ; (let ((from (if reverse ?\> ?\/)) | |
4847 ; (to (if reverse ?\/ ?\>)) | |
4848 ; (i (1- (length name)))) | |
4849 ; (while (>= i 0) | |
4850 ; (if (= (aref name i) from) | |
4851 ; (aset name i to)) | |
4852 ; (setq i (1- i))) | |
4853 ; name)) | |
4854 ; | |
4855 ;(or (assq 'vos ange-ftp-fix-name-func-alist) | |
4856 ; (setq ange-ftp-fix-name-func-alist | |
4857 ; (cons '(vos . ange-ftp-fix-name-for-vos) | |
4858 ; ange-ftp-fix-name-func-alist))) | |
4859 ; | |
4860 ;(or (memq 'vos ange-ftp-dumb-host-types) | |
4861 ; (setq ange-ftp-dumb-host-types | |
4862 ; (cons 'vos ange-ftp-dumb-host-types))) | |
4863 ; | |
4864 ;(defun ange-ftp-fix-dir-name-for-vos (dir-name) | |
4865 ; (ange-ftp-fix-name-for-vos | |
4866 ; (concat dir-name | |
4867 ; (if (eq ?/ (aref dir-name (1- (length dir-name)))) | |
4868 ; "" "/") | |
4869 ; "*"))) | |
4870 ; | |
4871 ;(or (assq 'vos ange-ftp-fix-dir-name-func-alist) | |
4872 ; (setq ange-ftp-fix-dir-name-func-alist | |
4873 ; (cons '(vos . ange-ftp-fix-dir-name-for-vos) | |
4874 ; ange-ftp-fix-dir-name-func-alist))) | |
4875 ; | |
4876 ;(defvar ange-ftp-vos-host-regexp nil | |
4877 ; "If a host matches this regexp then it is assumed to be running VOS.") | |
4878 ; | |
4879 ;(defun ange-ftp-vos-host (host) | |
4880 ; (and ange-ftp-vos-host-regexp | |
4881 ; (save-match-data | |
4882 ; (string-match ange-ftp-vos-host-regexp host)))) | |
4883 ; | |
4884 ;(defun ange-ftp-parse-vos-listing () | |
4885 ; "Parse the current buffer which is assumed to be in VOS list -all | |
4886 ;format, and return a hashtable as the result." | |
4887 ; (let ((tbl (ange-ftp-make-hashtable)) | |
4888 ; (type-list | |
4889 ; '(("^Files: [0-9]+ +Blocks: [0-9]+\n+" nil 40) | |
4890 ; ("^Dirs: [0-9]+\n+" t 30))) | |
4891 ; type-regexp type-is-dir type-col file) | |
4892 ; (goto-char (point-min)) | |
4893 ; (save-match-data | |
4894 ; (while type-list | |
4895 ; (setq type-regexp (car (car type-list)) | |
4896 ; type-is-dir (nth 1 (car type-list)) | |
4897 ; type-col (nth 2 (car type-list)) | |
4898 ; type-list (cdr type-list)) | |
4899 ; (if (re-search-forward type-regexp nil t) | |
4900 ; (while (eq (char-after (point)) ? ) | |
4901 ; (move-to-column type-col) | |
4902 ; (setq file (buffer-substring (point) | |
4903 ; (progn | |
4904 ; (end-of-line 1) | |
4905 ; (point)))) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
4906 ; (puthash file type-is-dir tbl) |
28210 | 4907 ; (forward-line 1)))) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
4908 ; (puthash "." 'vosdir tbl) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
4909 ; (puthash ".." 'vosdir tbl)) |
28210 | 4910 ; tbl)) |
4911 ; | |
4912 ;(or (assq 'vos ange-ftp-parse-list-func-alist) | |
4913 ; (setq ange-ftp-parse-list-func-alist | |
4914 ; (cons '(vos . ange-ftp-parse-vos-listing) | |
4915 ; ange-ftp-parse-list-func-alist))) | |
4916 | |
4917 ;;;; ------------------------------------------------------------ | |
4918 ;;;; VMS support. | |
4919 ;;;; ------------------------------------------------------------ | |
4920 | |
4921 ;; Convert NAME from UNIX-ish to VMS. If REVERSE given then convert from VMS | |
4922 ;; to UNIX-ish. | |
4923 (defun ange-ftp-fix-name-for-vms (name &optional reverse) | |
4924 (save-match-data | |
4925 (if reverse | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
4926 (if (string-match "\\`\\([^:]+:\\)?\\(\\[.*\\]\\)?\\([^][]*\\)\\'" name) |
28210 | 4927 (let (drive dir file) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
4928 (setq drive (match-string 1 name)) |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
4929 (setq dir (match-string 2 name)) |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
4930 (setq file (match-string 3 name)) |
28210 | 4931 (and dir |
30481 | 4932 (setq dir (subst-char-in-string |
37813
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
4933 ?/ ?. (substring dir 1 -1) t))) |
28210 | 4934 (concat (and drive |
4935 (concat "/" drive "/")) | |
4936 dir (and dir "/") | |
4937 file)) | |
4938 (error "name %s didn't match" name)) | |
4939 (let (drive dir file tmp) | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
4940 (if (string-match "\\`/[^:]+:/" name) |
28210 | 4941 (setq drive (substring name 1 |
4942 (1- (match-end 0))) | |
4943 name (substring name (match-end 0)))) | |
4944 (setq tmp (file-name-directory name)) | |
4945 (if tmp | |
37813
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
4946 (setq dir (subst-char-in-string ?/ ?. (substring tmp 0 -1) t))) |
28210 | 4947 (setq file (file-name-nondirectory name)) |
4948 (concat drive | |
4949 (and dir (concat "[" (if drive nil ".") dir "]")) | |
4950 file))))) | |
4951 | |
4952 ;; (ange-ftp-fix-name-for-vms "/PUB$:/ANONYMOUS/SDSCPUB/NEXT/Readme.txt;1") | |
4953 ;; (ange-ftp-fix-name-for-vms "/PUB$:[ANONYMOUS.SDSCPUB.NEXT]Readme.txt;1" t) | |
4954 | |
4955 (or (assq 'vms ange-ftp-fix-name-func-alist) | |
4956 (setq ange-ftp-fix-name-func-alist | |
4957 (cons '(vms . ange-ftp-fix-name-for-vms) | |
4958 ange-ftp-fix-name-func-alist))) | |
4959 | |
4960 (or (memq 'vms ange-ftp-dumb-host-types) | |
4961 (setq ange-ftp-dumb-host-types | |
4962 (cons 'vms ange-ftp-dumb-host-types))) | |
4963 | |
4964 ;; It is important that this function barf for directories for which we know | |
4965 ;; that we cannot possibly get a directory listing, such as "/" and "/DEV:/". | |
4966 ;; This is because it saves an unnecessary FTP error, or possibly the listing | |
4967 ;; might succeed, but give erroneous info. This last case is particularly | |
4968 ;; likely for OS's (like MTS) for which we need to use a wildcard in order | |
4969 ;; to list a directory. | |
4970 | |
4971 ;; Convert name from UNIX-ish to VMS ready for a DIRectory listing. | |
4972 (defun ange-ftp-fix-dir-name-for-vms (dir-name) | |
4973 ;; Should there be entries for .. -> [-] and . -> [] below. Don't | |
4974 ;; think so, because expand-filename should have already short-circuited | |
4975 ;; them. | |
4976 (cond ((string-equal dir-name "/") | |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
38328
diff
changeset
|
4977 (error "Cannot get listing for fictitious \"/\" directory")) |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
4978 ((string-match "\\`/[-A-Z0-9_$]+:/\\'" dir-name) |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
38328
diff
changeset
|
4979 (error "Cannot get listing for device")) |
28210 | 4980 ((ange-ftp-fix-name-for-vms dir-name)))) |
30459 | 4981 |
28210 | 4982 (or (assq 'vms ange-ftp-fix-dir-name-func-alist) |
4983 (setq ange-ftp-fix-dir-name-func-alist | |
4984 (cons '(vms . ange-ftp-fix-dir-name-for-vms) | |
4985 ange-ftp-fix-dir-name-func-alist))) | |
4986 | |
4987 (defvar ange-ftp-vms-host-regexp nil) | |
4988 | |
4989 ;; Return non-nil if HOST is running VMS. | |
4990 (defun ange-ftp-vms-host (host) | |
4991 (and ange-ftp-vms-host-regexp | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
4992 (string-match-p ange-ftp-vms-host-regexp host))) |
28210 | 4993 |
4994 ;; Because some VMS ftp servers convert filenames to lower case | |
4995 ;; we allow a-z in the filename regexp. I'm not too happy about this. | |
4996 | |
4997 (defconst ange-ftp-vms-filename-regexp | |
4998 (concat | |
4999 "\\(\\([_A-Za-z0-9$]?\\|[_A-Za-z0-9$][-_A-Za-z0-9$]*\\)\\." | |
5000 "[-_A-Za-z0-9$]*;+[0-9]*\\)") | |
5001 "Regular expression to match for a valid VMS file name in Dired buffer. | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
5002 Stupid freaking bug! Position of _ and $ shouldn't matter but they do. |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
5003 Having [A-Z0-9$_] bombs on filename _$$CHANGE_LOG$.TXT$ and $CHANGE_LOG$.TX. |
28210 | 5004 Other orders of $ and _ seem to all work just fine.") |
5005 | |
5006 ;; These parsing functions are as general as possible because the syntax | |
5007 ;; of ftp listings from VMS hosts is a bit erratic. What saves us is that | |
5008 ;; the VMS filename syntax is so rigid. If they bomb on a listing in the | |
5009 ;; standard VMS Multinet format, then this is a bug. If they bomb on a listing | |
5010 ;; from vms.weird.net, then too bad. | |
5011 | |
5012 ;; Extract the next filename from a VMS dired-like listing. | |
5013 (defun ange-ftp-parse-vms-filename () | |
5014 (if (re-search-forward | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5015 ange-ftp-vms-filename-regexp |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5016 nil t) |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5017 (match-string 0))) |
28210 | 5018 |
5019 ;; Parse the current buffer which is assumed to be in MultiNet FTP dir | |
5020 ;; format, and return a hashtable as the result. | |
5021 (defun ange-ftp-parse-vms-listing () | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5022 (let ((tbl (make-hash-table :test 'equal)) |
28210 | 5023 file) |
5024 (goto-char (point-min)) | |
5025 (save-match-data | |
5026 (while (setq file (ange-ftp-parse-vms-filename)) | |
5027 (if (string-match "\\.\\(DIR\\|dir\\);[0-9]+" file) | |
5028 ;; deal with directories | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5029 (puthash (substring file 0 (match-beginning 0)) t tbl) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5030 (puthash file nil tbl) |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5031 (if (string-match ";[0-9]+\\'" file) ; deal with extension |
28210 | 5032 ;; sans extension |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5033 (puthash (substring file 0 (match-beginning 0)) nil tbl))) |
28210 | 5034 (forward-line 1)) |
5035 ;; Would like to look for a "Total" line, or a "Directory" line to | |
5036 ;; make sure that the listing isn't complete garbage before putting | |
5037 ;; in "." and "..", but we can't even count on all VAX's giving us | |
5038 ;; either of these. | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5039 (puthash "." t tbl) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5040 (puthash ".." t tbl)) |
28210 | 5041 tbl)) |
5042 | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5043 (add-to-list 'ange-ftp-parse-list-func-alist |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5044 '(vms . ange-ftp-parse-vms-listing)) |
28210 | 5045 |
5046 ;; This version only deletes file entries which have | |
5047 ;; explicit version numbers, because that is all VMS allows. | |
5048 | |
5049 ;; Can the following two functions be speeded up using file | |
5050 ;; completion functions? | |
5051 | |
5052 (defun ange-ftp-vms-delete-file-entry (name &optional dir-p) | |
5053 (if dir-p | |
5054 (ange-ftp-internal-delete-file-entry name t) | |
5055 (save-match-data | |
5056 (let ((file (ange-ftp-get-file-part name))) | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5057 (if (string-match ";[0-9]+\\'" file) |
30459 | 5058 ;; In VMS you can't delete a file without an explicit |
28210 | 5059 ;; version number, or wild-card (e.g. FOO;*) |
5060 ;; For now, we give up on wildcards. | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5061 (let ((files (gethash (file-name-directory name) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5062 ange-ftp-files-hashtable))) |
28210 | 5063 (if files |
5064 (let* ((root (substring file 0 | |
5065 (match-beginning 0))) | |
5066 (regexp (concat "^" | |
5067 (regexp-quote root) | |
5068 ";[0-9]+$")) | |
5069 versions) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5070 (remhash file files) |
28210 | 5071 ;; Now we need to check if there are any |
5072 ;; versions left. If not, then delete the | |
5073 ;; root entry. | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5074 (maphash |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5075 (lambda (key val) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5076 (and (string-match regexp key) |
29587
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
5077 (setq versions t))) |
28210 | 5078 files) |
5079 (or versions | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5080 (remhash root files)))))))))) |
28210 | 5081 |
5082 (or (assq 'vms ange-ftp-delete-file-entry-alist) | |
5083 (setq ange-ftp-delete-file-entry-alist | |
5084 (cons '(vms . ange-ftp-vms-delete-file-entry) | |
5085 ange-ftp-delete-file-entry-alist))) | |
5086 | |
5087 (defun ange-ftp-vms-add-file-entry (name &optional dir-p) | |
5088 (if dir-p | |
5089 (ange-ftp-internal-add-file-entry name t) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5090 (let ((files (gethash (file-name-directory name) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5091 ange-ftp-files-hashtable))) |
28210 | 5092 (if files |
5093 (let ((file (ange-ftp-get-file-part name))) | |
5094 (save-match-data | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5095 (if (string-match ";[0-9]+\\'" file) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5096 (puthash (substring file 0 (match-beginning 0)) nil files) |
28210 | 5097 ;; Need to figure out what version of the file |
5098 ;; is being added. | |
5099 (let ((regexp (concat "^" | |
5100 (regexp-quote file) | |
5101 ";\\([0-9]+\\)$")) | |
5102 (version 0)) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5103 (maphash |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5104 (lambda (name val) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5105 (and (string-match regexp name) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5106 (setq version |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5107 (max version |
62402
a7e02ef1e3d6
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
59996
diff
changeset
|
5108 (string-to-number (match-string 1 name)))))) |
28210 | 5109 files) |
5110 (setq version (1+ version)) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5111 (puthash |
28210 | 5112 (concat file ";" (int-to-string version)) |
5113 nil files)))) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5114 (puthash file nil files)))))) |
28210 | 5115 |
5116 (or (assq 'vms ange-ftp-add-file-entry-alist) | |
5117 (setq ange-ftp-add-file-entry-alist | |
5118 (cons '(vms . ange-ftp-vms-add-file-entry) | |
5119 ange-ftp-add-file-entry-alist))) | |
5120 | |
5121 | |
5122 (defun ange-ftp-add-vms-host (host) | |
5123 "Mark HOST as the name of a machine running VMS." | |
5124 (interactive | |
5125 (list (read-string "Host: " | |
5126 (let ((name (or (buffer-file-name) default-directory))) | |
5127 (and name (car (ange-ftp-ftp-name name))))))) | |
5128 (if (not (ange-ftp-vms-host host)) | |
5129 (setq ange-ftp-vms-host-regexp | |
5130 (concat "^" (regexp-quote host) "$" | |
5131 (and ange-ftp-vms-host-regexp "\\|") | |
5132 ange-ftp-vms-host-regexp) | |
5133 ange-ftp-host-cache nil))) | |
5134 | |
5135 | |
5136 (defun ange-ftp-vms-file-name-as-directory (name) | |
5137 (save-match-data | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5138 (if (string-match "\\.\\(DIR\\|dir\\)\\(;[0-9]+\\)?\\'" name) |
28210 | 5139 (setq name (substring name 0 (match-beginning 0)))) |
5140 (ange-ftp-real-file-name-as-directory name))) | |
5141 | |
5142 (or (assq 'vms ange-ftp-file-name-as-directory-alist) | |
5143 (setq ange-ftp-file-name-as-directory-alist | |
5144 (cons '(vms . ange-ftp-vms-file-name-as-directory) | |
5145 ange-ftp-file-name-as-directory-alist))) | |
5146 | |
5147 ;;; Tree dired support: | |
5148 | |
5149 ;; For this code I have borrowed liberally from Sebastian Kremer's | |
5150 ;; dired-vms.el | |
5151 | |
5152 | |
5153 ;;;; These regexps must be anchored to beginning of line. | |
5154 ;;;; Beware that the ftpd may put the device in front of the filename. | |
5155 | |
5156 ;;(defconst ange-ftp-dired-vms-re-exe "^. [^ \t.]+\\.\\(EXE\\|exe\\)[; ]" | |
5157 ;; "Regular expression to use to search for VMS executable files.") | |
5158 | |
5159 ;;(defconst ange-ftp-dired-vms-re-dir "^. [^ \t.]+\\.\\(DIR\\|dir\\)[; ]" | |
5160 ;; "Regular expression to use to search for VMS directories.") | |
5161 | |
5162 ;;(or (assq 'vms ange-ftp-dired-re-exe-alist) | |
5163 ;; (setq ange-ftp-dired-re-exe-alist | |
5164 ;; (cons (cons 'vms ange-ftp-dired-vms-re-exe) | |
5165 ;; ange-ftp-dired-re-exe-alist))) | |
5166 | |
5167 ;;(or (assq 'vms ange-ftp-dired-re-dir-alist) | |
5168 ;; (setq ange-ftp-dired-re-dir-alist | |
5169 ;; (cons (cons 'vms ange-ftp-dired-vms-re-dir) | |
5170 ;; ange-ftp-dired-re-dir-alist))) | |
5171 | |
5172 ;;(defun ange-ftp-dired-vms-insert-headerline (dir) | |
5173 ;; ;; VMS inserts a headerline. I would prefer the headerline | |
5174 ;; ;; to be in ange-ftp format. This version tries to | |
5175 ;; ;; be careful, because we can't count on a headerline | |
5176 ;; ;; over ftp, and we wouldn't want to delete anything | |
5177 ;; ;; important. | |
5178 ;; (save-excursion | |
5179 ;; (if (looking-at "^ wildcard ") | |
5180 ;; (forward-line 1)) | |
5181 ;; (if (looking-at "^[ \n\t]*[^\n]+\\][ \t]*\n") | |
5182 ;; (delete-region (point) (match-end 0)))) | |
5183 ;; (ange-ftp-real-dired-insert-headerline dir)) | |
5184 | |
5185 ;;(or (assq 'vms ange-ftp-dired-insert-headerline-alist) | |
5186 ;; (setq ange-ftp-dired-insert-headerline-alist | |
5187 ;; (cons '(vms . ange-ftp-dired-vms-insert-headerline) | |
5188 ;; ange-ftp-dired-insert-headerline-alist))) | |
5189 | |
5190 ;;(defun ange-ftp-dired-vms-move-to-filename (&optional raise-error eol) | |
5191 ;; "In dired, move to first char of filename on this line. | |
5192 ;;Returns position (point) or nil if no filename on this line." | |
5193 ;; ;; This is the VMS version. | |
5194 ;; (let (case-fold-search) | |
5195 ;; (or eol (setq eol (progn (end-of-line) (point)))) | |
5196 ;; (beginning-of-line) | |
5197 ;; (if (re-search-forward ange-ftp-vms-filename-regexp eol t) | |
5198 ;; (goto-char (match-beginning 1)) | |
5199 ;; (if raise-error | |
5200 ;; (error "No file on this line") | |
5201 ;; nil)))) | |
5202 | |
5203 ;;(or (assq 'vms ange-ftp-dired-move-to-filename-alist) | |
5204 ;; (setq ange-ftp-dired-move-to-filename-alist | |
5205 ;; (cons '(vms . ange-ftp-dired-vms-move-to-filename) | |
5206 ;; ange-ftp-dired-move-to-filename-alist))) | |
5207 | |
5208 ;;(defun ange-ftp-dired-vms-move-to-end-of-filename (&optional no-error eol) | |
5209 ;; ;; Assumes point is at beginning of filename. | |
5210 ;; ;; So, it should be called only after (dired-move-to-filename t). | |
5211 ;; ;; case-fold-search must be nil, at least for VMS. | |
5212 ;; ;; On failure, signals an error or returns nil. | |
5213 ;; ;; This is the VMS version. | |
5214 ;; (let (opoint hidden case-fold-search) | |
5215 ;; (setq opoint (point)) | |
5216 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) | |
5217 ;; (setq hidden (and selective-display | |
5218 ;; (save-excursion (search-forward "\r" eol t)))) | |
5219 ;; (if hidden | |
5220 ;; nil | |
5221 ;; (re-search-forward ange-ftp-vms-filename-regexp eol t)) | |
5222 ;; (or no-error | |
5223 ;; (not (eq opoint (point))) | |
5224 ;; (error | |
5225 ;; (if hidden | |
5226 ;; (substitute-command-keys | |
5227 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") | |
5228 ;; "No file on this line"))) | |
5229 ;; (if (eq opoint (point)) | |
5230 ;; nil | |
5231 ;; (point)))) | |
5232 | |
5233 ;;(or (assq 'vms ange-ftp-dired-move-to-end-of-filename-alist) | |
5234 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist | |
5235 ;; (cons '(vms . ange-ftp-dired-vms-move-to-end-of-filename) | |
5236 ;; ange-ftp-dired-move-to-end-of-filename-alist))) | |
5237 | |
5238 ;;(defun ange-ftp-dired-vms-between-files () | |
5239 ;; (save-excursion | |
5240 ;; (beginning-of-line) | |
5241 ;; (or (equal (following-char) 10) ; newline | |
5242 ;; (equal (following-char) 9) ; tab | |
5243 ;; (progn (forward-char 2) | |
5244 ;; (or (looking-at "Total of") | |
5245 ;; (equal (following-char) 32)))))) | |
5246 | |
5247 ;;(or (assq 'vms ange-ftp-dired-between-files-alist) | |
5248 ;; (setq ange-ftp-dired-between-files-alist | |
5249 ;; (cons '(vms . ange-ftp-dired-vms-between-files) | |
5250 ;; ange-ftp-dired-between-files-alist))) | |
5251 | |
5252 ;; Beware! In VMS filenames must be of the form "FILE.TYPE". | |
5253 ;; Therefore, we cannot just append a ".Z" to filenames for | |
5254 ;; compressed files. Instead, we turn "FILE.TYPE" into | |
5255 ;; "FILE.TYPE-Z". Hope that this is a reasonable thing to do. | |
5256 | |
5257 (defun ange-ftp-vms-make-compressed-filename (name &optional reverse) | |
5258 (cond | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5259 ((string-match "-Z;[0-9]+\\'" name) |
28210 | 5260 (list nil (substring name 0 (match-beginning 0)))) |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5261 ((string-match ";[0-9]+\\'" name) |
28210 | 5262 (list nil (substring name 0 (match-beginning 0)))) |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5263 ((string-match "-Z\\'" name) |
28210 | 5264 (list nil (substring name 0 -2))) |
5265 (t | |
5266 (list t | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5267 (if (string-match ";[0-9]+\\'" name) |
28210 | 5268 (concat (substring name 0 (match-beginning 0)) |
5269 "-Z") | |
5270 (concat name "-Z")))))) | |
5271 | |
5272 (or (assq 'vms ange-ftp-make-compressed-filename-alist) | |
5273 (setq ange-ftp-make-compressed-filename-alist | |
5274 (cons '(vms . ange-ftp-vms-make-compressed-filename) | |
5275 ange-ftp-make-compressed-filename-alist))) | |
5276 | |
5277 ;;;; When the filename is too long, VMS will use two lines to list a file | |
5278 ;;;; (damn them!) This will confuse dired. To solve this, need to convince | |
5279 ;;;; Sebastian to use a function dired-go-to-end-of-file-line, instead of | |
5280 ;;;; (forward-line 1). This would require a number of changes to dired.el. | |
5281 ;;;; If dired gets confused, revert-buffer will fix it. | |
5282 | |
5283 ;;(defun ange-ftp-dired-vms-ls-trim () | |
5284 ;; (goto-char (point-min)) | |
5285 ;; (let ((case-fold-search nil)) | |
5286 ;; (re-search-forward ange-ftp-vms-filename-regexp)) | |
5287 ;; (beginning-of-line) | |
5288 ;; (delete-region (point-min) (point)) | |
5289 ;; (forward-line 1) | |
5290 ;; (delete-region (point) (point-max))) | |
5291 | |
5292 | |
5293 ;;(or (assq 'vms ange-ftp-dired-ls-trim-alist) | |
5294 ;; (setq ange-ftp-dired-ls-trim-alist | |
5295 ;; (cons '(vms . ange-ftp-dired-vms-ls-trim) | |
30459 | 5296 ;; ange-ftp-dired-ls-trim-alist))) |
28210 | 5297 |
5298 (defun ange-ftp-vms-sans-version (name &rest args) | |
5299 (save-match-data | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5300 (if (string-match ";[0-9]+\\'" name) |
28210 | 5301 (substring name 0 (match-beginning 0)) |
5302 name))) | |
5303 | |
5304 (or (assq 'vms ange-ftp-sans-version-alist) | |
5305 (setq ange-ftp-sans-version-alist | |
5306 (cons '(vms . ange-ftp-vms-sans-version) | |
5307 ange-ftp-sans-version-alist))) | |
5308 | |
5309 ;;(defvar ange-ftp-file-version-alist) | |
5310 | |
5311 ;;;;; The vms version of clean-directory has 2 more optional args | |
5312 ;;;;; than the usual dired version. This is so that it can be used by | |
5313 ;;;;; ange-ftp-dired-vms-flag-backup-files. | |
5314 | |
5315 ;;(defun ange-ftp-dired-vms-clean-directory (keep &optional marker msg) | |
5316 ;; "Flag numerical backups for deletion. | |
5317 ;;Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest. | |
5318 ;;Positive prefix arg KEEP overrides `dired-kept-versions'; | |
5319 ;;Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive. | |
5320 | |
5321 ;;To clear the flags on these files, you can use \\[dired-flag-backup-files] | |
5322 ;;with a prefix argument." | |
5323 ;;; (interactive "P") ; Never actually called interactively. | |
5324 ;; (setq keep (max 1 (if keep (prefix-numeric-value keep) dired-kept-versions))) | |
5325 ;; (let ((early-retention (if (< keep 0) (- keep) kept-old-versions)) | |
5326 ;; ;; late-retention must NEVER be allowed to be less than 1 in VMS! | |
5327 ;; ;; This could wipe ALL copies of the file. | |
5328 ;; (late-retention (max 1 (if (<= keep 0) dired-kept-versions keep))) | |
5329 ;; (action (or msg "Cleaning")) | |
5330 ;; (ange-ftp-trample-marker (or marker dired-del-marker)) | |
5331 ;; (ange-ftp-file-version-alist ())) | |
5332 ;; (message (concat action | |
5333 ;; " numerical backups (keeping %d late, %d old)...") | |
5334 ;; late-retention early-retention) | |
5335 ;; ;; Look at each file. | |
5336 ;; ;; If the file has numeric backup versions, | |
5337 ;; ;; put on ange-ftp-file-version-alist an element of the form | |
5338 ;; ;; (FILENAME . VERSION-NUMBER-LIST) | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5339 ;; (dired-map-dired-file-lines 'ange-ftp-dired-vms-collect-file-versions) |
28210 | 5340 ;; ;; Sort each VERSION-NUMBER-LIST, |
5341 ;; ;; and remove the versions not to be deleted. | |
5342 ;; (let ((fval ange-ftp-file-version-alist)) | |
5343 ;; (while fval | |
5344 ;; (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<))) | |
5345 ;; (v-count (length sorted-v-list))) | |
5346 ;; (if (> v-count (+ early-retention late-retention)) | |
5347 ;; (rplacd (nthcdr early-retention sorted-v-list) | |
5348 ;; (nthcdr (- v-count late-retention) | |
5349 ;; sorted-v-list))) | |
5350 ;; (rplacd (car fval) | |
5351 ;; (cdr sorted-v-list))) | |
5352 ;; (setq fval (cdr fval)))) | |
5353 ;; ;; Look at each file. If it is a numeric backup file, | |
5354 ;; ;; find it in a VERSION-NUMBER-LIST and maybe flag it for deletion. | |
5355 ;; (dired-map-dired-file-lines | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5356 ;; 'ange-ftp-dired-vms-trample-file-versions mark) |
28210 | 5357 ;; (message (concat action " numerical backups...done")))) |
5358 | |
5359 ;;(or (assq 'vms ange-ftp-dired-clean-directory-alist) | |
5360 ;; (setq ange-ftp-dired-clean-directory-alist | |
5361 ;; (cons '(vms . ange-ftp-dired-vms-clean-directory) | |
5362 ;; ange-ftp-dired-clean-directory-alist))) | |
5363 | |
5364 ;;(defun ange-ftp-dired-vms-collect-file-versions (fn) | |
5365 ;; ;; "If it looks like file FN has versions, return a list of the versions. | |
5366 ;; ;;That is a list of strings which are file names. | |
5367 ;; ;;The caller may want to flag some of these files for deletion." | |
5368 ;;(let ((name (nth 2 (ange-ftp-ftp-name fn)))) | |
5369 ;; (if (string-match ";[0-9]+$" name) | |
5370 ;; (let* ((name (substring name 0 (match-beginning 0))) | |
5371 ;; (fn (ange-ftp-replace-name-component fn name))) | |
5372 ;; (if (not (assq fn ange-ftp-file-version-alist)) | |
5373 ;; (let* ((base-versions | |
5374 ;; (concat (file-name-nondirectory name) ";")) | |
5375 ;; (bv-length (length base-versions)) | |
5376 ;; (possibilities (file-name-all-completions | |
5377 ;; base-versions | |
5378 ;; (file-name-directory fn))) | |
5379 ;; (versions (mapcar | |
5380 ;; '(lambda (arg) | |
5381 ;; (if (and (string-match | |
5382 ;; "[0-9]+$" arg bv-length) | |
5383 ;; (= (match-beginning 0) bv-length)) | |
5384 ;; (string-to-int (substring arg bv-length)) | |
5385 ;; 0)) | |
5386 ;; possibilities))) | |
5387 ;; (if versions | |
5388 ;; (setq | |
5389 ;; ange-ftp-file-version-alist | |
5390 ;; (cons (cons fn versions) | |
5391 ;; ange-ftp-file-version-alist))))))))) | |
5392 | |
5393 ;;(defun ange-ftp-dired-vms-trample-file-versions (fn) | |
5394 ;; (let* ((start-vn (string-match ";[0-9]+$" fn)) | |
5395 ;; base-version-list) | |
5396 ;; (and start-vn | |
5397 ;; (setq base-version-list ; there was a base version to which | |
5398 ;; (assoc (substring fn 0 start-vn) ; this looks like a | |
5399 ;; ange-ftp-file-version-alist)) ; subversion | |
5400 ;; (not (memq (string-to-int (substring fn (1+ start-vn))) | |
5401 ;; base-version-list)) ; this one doesn't make the cut | |
5402 ;; (progn (beginning-of-line) | |
5403 ;; (delete-char 1) | |
5404 ;; (insert ange-ftp-trample-marker))))) | |
5405 | |
5406 ;;(defun ange-ftp-dired-vms-flag-backup-files (&optional unflag-p) | |
5407 ;; (let ((dired-kept-versions 1) | |
5408 ;; (kept-old-versions 0) | |
5409 ;; marker msg) | |
5410 ;; (if unflag-p | |
5411 ;; (setq marker ?\040 msg "Unflagging") | |
5412 ;; (setq marker dired-del-marker msg "Cleaning")) | |
5413 ;; (ange-ftp-dired-vms-clean-directory nil marker msg))) | |
5414 | |
5415 ;;(or (assq 'vms ange-ftp-dired-flag-backup-files-alist) | |
5416 ;; (setq ange-ftp-dired-flag-backup-files-alist | |
5417 ;; (cons '(vms . ange-ftp-dired-vms-flag-backup-files) | |
5418 ;; ange-ftp-dired-flag-backup-files-alist))) | |
5419 | |
5420 ;;(defun ange-ftp-dired-vms-backup-diff (&optional switches) | |
5421 ;; (let ((file (dired-get-filename 'no-dir)) | |
5422 ;; bak) | |
5423 ;; (if (and (string-match ";[0-9]+$" file) | |
5424 ;; ;; Find most recent previous version. | |
5425 ;; (let ((root (substring file 0 (match-beginning 0))) | |
5426 ;; (ver | |
5427 ;; (string-to-int (substring file (1+ (match-beginning 0))))) | |
5428 ;; found) | |
5429 ;; (setq ver (1- ver)) | |
5430 ;; (while (and (> ver 0) (not found)) | |
5431 ;; (setq bak (concat root ";" (int-to-string ver))) | |
5432 ;; (and (file-exists-p bak) (setq found t)) | |
5433 ;; (setq ver (1- ver))) | |
5434 ;; found)) | |
5435 ;; (if switches | |
5436 ;; (diff (expand-file-name bak) (expand-file-name file) switches) | |
5437 ;; (diff (expand-file-name bak) (expand-file-name file))) | |
5438 ;; (error "No previous version found for %s" file)))) | |
5439 | |
5440 ;;(or (assq 'vms ange-ftp-dired-backup-diff-alist) | |
5441 ;; (setq ange-ftp-dired-backup-diff-alist | |
5442 ;; (cons '(vms . ange-ftp-dired-vms-backup-diff) | |
5443 ;; ange-ftp-dired-backup-diff-alist))) | |
5444 | |
5445 | |
5446 ;;;; ------------------------------------------------------------ | |
5447 ;;;; MTS support | |
5448 ;;;; ------------------------------------------------------------ | |
5449 | |
5450 | |
5451 ;; Convert NAME from UNIX-ish to MTS. If REVERSE given then convert from | |
5452 ;; MTS to UNIX-ish. | |
5453 (defun ange-ftp-fix-name-for-mts (name &optional reverse) | |
5454 (save-match-data | |
5455 (if reverse | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5456 (if (string-match "\\`\\([^:]+:\\)?\\(.*\\)\\'" name) |
28210 | 5457 (let (acct file) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5458 (setq acct (match-string 1 name)) |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5459 (setq file (match-string 2 name)) |
28210 | 5460 (concat (and acct (concat "/" acct "/")) |
5461 file)) | |
5462 (error "name %s didn't match" name)) | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5463 (if (string-match "\\`/\\([^:]+:\\)/\\(.*\\)\\'" name) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5464 (concat (match-string 1 name) (match-string 2 name)) |
28210 | 5465 ;; Let's hope that mts will recognize it anyway. |
5466 name)))) | |
5467 | |
5468 (or (assq 'mts ange-ftp-fix-name-func-alist) | |
5469 (setq ange-ftp-fix-name-func-alist | |
5470 (cons '(mts . ange-ftp-fix-name-for-mts) | |
5471 ange-ftp-fix-name-func-alist))) | |
5472 | |
5473 ;; Convert name from UNIX-ish to MTS ready for a DIRectory listing. | |
5474 ;; Remember that there are no directories in MTS. | |
5475 (defun ange-ftp-fix-dir-name-for-mts (dir-name) | |
5476 (if (string-equal dir-name "/") | |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
38328
diff
changeset
|
5477 (error "Cannot get listing for fictitious \"/\" directory") |
28210 | 5478 (let ((dir-name (ange-ftp-fix-name-for-mts dir-name))) |
5479 (cond | |
5480 ((string-equal dir-name "") | |
5481 "?") | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5482 ((string-match ":\\'" dir-name) |
28210 | 5483 (concat dir-name "?")) |
5484 (dir-name))))) ; It's just a single file. | |
5485 | |
5486 (or (assq 'mts ange-ftp-fix-dir-name-func-alist) | |
5487 (setq ange-ftp-fix-dir-name-func-alist | |
5488 (cons '(mts . ange-ftp-fix-dir-name-for-mts) | |
5489 ange-ftp-fix-dir-name-func-alist))) | |
5490 | |
5491 (or (memq 'mts ange-ftp-dumb-host-types) | |
5492 (setq ange-ftp-dumb-host-types | |
5493 (cons 'mts ange-ftp-dumb-host-types))) | |
5494 | |
5495 (defvar ange-ftp-mts-host-regexp nil) | |
5496 | |
5497 ;; Return non-nil if HOST is running MTS. | |
5498 (defun ange-ftp-mts-host (host) | |
5499 (and ange-ftp-mts-host-regexp | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
5500 (string-match-p ange-ftp-mts-host-regexp host))) |
28210 | 5501 |
5502 ;; Parse the current buffer which is assumed to be in mts ftp dir format. | |
5503 (defun ange-ftp-parse-mts-listing () | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5504 (let ((tbl (make-hash-table :test 'equal))) |
28210 | 5505 (goto-char (point-min)) |
5506 (save-match-data | |
66325
fda96ff4c7e5
* files.el (directory-listing-before-filename-regexp): New
Michael Albinus <michael.albinus@gmx.de>
parents:
66256
diff
changeset
|
5507 (while (re-search-forward directory-listing-before-filename-regexp nil t) |
28210 | 5508 (end-of-line) |
5509 (skip-chars-backward " ") | |
5510 (let ((end (point))) | |
5511 (skip-chars-backward "-A-Z0-9_.!") | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5512 (puthash (buffer-substring (point) end) nil tbl)) |
28210 | 5513 (forward-line 1))) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5514 ;; Don't need to bother with .. |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5515 (puthash "." t tbl) |
28210 | 5516 tbl)) |
5517 | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5518 (add-to-list 'ange-ftp-parse-list-func-alist |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5519 '(mts . ange-ftp-parse-mts-listing)) |
28210 | 5520 |
5521 (defun ange-ftp-add-mts-host (host) | |
5522 "Mark HOST as the name of a machine running MTS." | |
5523 (interactive | |
5524 (list (read-string "Host: " | |
5525 (let ((name (or (buffer-file-name) default-directory))) | |
5526 (and name (car (ange-ftp-ftp-name name))))))) | |
5527 (if (not (ange-ftp-mts-host host)) | |
5528 (setq ange-ftp-mts-host-regexp | |
5529 (concat "^" (regexp-quote host) "$" | |
5530 (and ange-ftp-mts-host-regexp "\\|") | |
5531 ange-ftp-mts-host-regexp) | |
5532 ange-ftp-host-cache nil))) | |
5533 | |
5534 ;;; Tree dired support: | |
5535 | |
5536 ;;;; There aren't too many systems left that use MTS. This dired support will | |
5537 ;;;; work for the implementation of ftp on mtsg.ubc.ca. I hope other mts systems | |
5538 ;;;; implement ftp in the same way. If not, it might be necessary to make the | |
5539 ;;;; following more flexible. | |
5540 | |
5541 ;;(defun ange-ftp-dired-mts-move-to-filename (&optional raise-error eol) | |
5542 ;; "In dired, move to first char of filename on this line. | |
5543 ;;Returns position (point) or nil if no filename on this line." | |
5544 ;; ;; This is the MTS version. | |
5545 ;; (or eol (setq eol (progn (end-of-line) (point)))) | |
5546 ;; (beginning-of-line) | |
5547 ;; (if (re-search-forward | |
5548 ;; ange-ftp-date-regexp eol t) | |
5549 ;; (progn | |
5550 ;; (skip-chars-forward " ") ; Eat blanks after date | |
5551 ;; (skip-chars-forward "0-9:" eol) ; Eat time or year | |
5552 ;; (skip-chars-forward " " eol) ; one space before filename | |
5553 ;; ;; When listing an account other than the users own account it appends | |
5554 ;; ;; ACCT: to the beginning of the filename. Skip over this. | |
5555 ;; (and (looking-at "[A-Z0-9_.]+:") | |
5556 ;; (goto-char (match-end 0))) | |
5557 ;; (point)) | |
5558 ;; (if raise-error | |
5559 ;; (error "No file on this line") | |
5560 ;; nil))) | |
5561 | |
5562 ;;(or (assq 'mts ange-ftp-dired-move-to-filename-alist) | |
5563 ;; (setq ange-ftp-dired-move-to-filename-alist | |
5564 ;; (cons '(mts . ange-ftp-dired-mts-move-to-filename) | |
5565 ;; ange-ftp-dired-move-to-filename-alist))) | |
5566 | |
5567 ;;(defun ange-ftp-dired-mts-move-to-end-of-filename (&optional no-error eol) | |
5568 ;; ;; Assumes point is at beginning of filename. | |
5569 ;; ;; So, it should be called only after (dired-move-to-filename t). | |
5570 ;; ;; On failure, signals an error or returns nil. | |
5571 ;; ;; This is the MTS version. | |
5572 ;; (let (opoint hidden case-fold-search) | |
5573 ;; (setq opoint (point) | |
5574 ;; eol (save-excursion (end-of-line) (point)) | |
5575 ;; hidden (and selective-display | |
5576 ;; (save-excursion (search-forward "\r" eol t)))) | |
5577 ;; (if hidden | |
5578 ;; nil | |
5579 ;; (skip-chars-forward "-A-Z0-9._!" eol)) | |
5580 ;; (or no-error | |
5581 ;; (not (eq opoint (point))) | |
5582 ;; (error | |
5583 ;; (if hidden | |
5584 ;; (substitute-command-keys | |
5585 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") | |
5586 ;; "No file on this line"))) | |
5587 ;; (if (eq opoint (point)) | |
5588 ;; nil | |
5589 ;; (point)))) | |
5590 | |
5591 ;;(or (assq 'mts ange-ftp-dired-move-to-end-of-filename-alist) | |
5592 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist | |
5593 ;; (cons '(mts . ange-ftp-dired-mts-move-to-end-of-filename) | |
5594 ;; ange-ftp-dired-move-to-end-of-filename-alist))) | |
5595 | |
5596 ;;;; ------------------------------------------------------------ | |
5597 ;;;; CMS support | |
5598 ;;;; ------------------------------------------------------------ | |
5599 | |
5600 ;; Since CMS doesn't have any full file name syntax, we have to fudge | |
5601 ;; things with cd's. We actually send too many cd's, but it's dangerous | |
5602 ;; to try to remember the current minidisk, because if the connection | |
5603 ;; is closed and needs to be reopened, we will find ourselves back in | |
5604 ;; the default minidisk. This is fairly likely since CMS ftp servers | |
5605 ;; usually close the connection after 5 minutes of inactivity. | |
5606 | |
5607 ;; Have I got the filename character set right? | |
5608 | |
5609 (defun ange-ftp-fix-name-for-cms (name &optional reverse) | |
5610 (save-match-data | |
5611 (if reverse | |
5612 ;; Since we only convert output from a pwd in this direction, | |
5613 ;; we'll assume that it's a minidisk, and make it into a | |
5614 ;; directory file name. Note that the expand-dir-hashtable | |
5615 ;; stores directories without the trailing /. Is this | |
5616 ;; consistent? | |
5617 (concat "/" name) | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5618 (if (string-match "\\`/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?\\'" |
28210 | 5619 name) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5620 (let ((minidisk (match-string 1 name))) |
28210 | 5621 (if (match-beginning 2) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5622 (let ((file (match-string 2 name)) |
28210 | 5623 (cmd (concat "cd " minidisk)) |
5624 | |
5625 ;; Note that host and user are bound in the call | |
5626 ;; to ange-ftp-send-cmd | |
5627 (proc (ange-ftp-get-process ange-ftp-this-host | |
5628 ange-ftp-this-user))) | |
5629 | |
5630 ;; Must use ange-ftp-raw-send-cmd here to avoid | |
5631 ;; an infinite loop. | |
5632 (if (car (ange-ftp-raw-send-cmd proc cmd ange-ftp-this-msg)) | |
5633 file | |
5634 ;; failed... try ONCE more. | |
5635 (setq proc (ange-ftp-get-process ange-ftp-this-host | |
5636 ange-ftp-this-user)) | |
5637 (let ((result (ange-ftp-raw-send-cmd proc cmd | |
5638 ange-ftp-this-msg))) | |
5639 (if (car result) | |
5640 file | |
5641 ;; failed. give up. | |
5642 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user | |
5643 (format "cd to minidisk %s failed: %s" | |
5644 minidisk (cdr result))))))) | |
5645 ;; return the minidisk | |
5646 minidisk)) | |
5647 (error "Invalid CMS filename"))))) | |
5648 | |
5649 (or (assq 'cms ange-ftp-fix-name-func-alist) | |
5650 (setq ange-ftp-fix-name-func-alist | |
5651 (cons '(cms . ange-ftp-fix-name-for-cms) | |
5652 ange-ftp-fix-name-func-alist))) | |
5653 | |
5654 (or (memq 'cms ange-ftp-dumb-host-types) | |
5655 (setq ange-ftp-dumb-host-types | |
5656 (cons 'cms ange-ftp-dumb-host-types))) | |
5657 | |
5658 ;; Convert name from UNIX-ish to CMS ready for a DIRectory listing. | |
5659 (defun ange-ftp-fix-dir-name-for-cms (dir-name) | |
5660 (cond | |
5661 ((string-equal "/" dir-name) | |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
38328
diff
changeset
|
5662 (error "Cannot get listing for fictitious \"/\" directory")) |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5663 ((string-match "\\`/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?\\'" dir-name) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5664 (let* ((minidisk (match-string 1 dir-name)) |
28210 | 5665 ;; host and user are bound in the call to ange-ftp-send-cmd |
5666 (proc (ange-ftp-get-process ange-ftp-this-host ange-ftp-this-user)) | |
5667 (cmd (concat "cd " minidisk)) | |
5668 (file (if (match-beginning 2) | |
5669 ;; it's a single file | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5670 (match-string 2 dir-name) |
28210 | 5671 ;; use the wild-card |
5672 "*"))) | |
5673 (if (car (ange-ftp-raw-send-cmd proc cmd)) | |
5674 file | |
5675 ;; try again... | |
5676 (setq proc (ange-ftp-get-process ange-ftp-this-host | |
5677 ange-ftp-this-user)) | |
5678 (let ((result (ange-ftp-raw-send-cmd proc cmd))) | |
5679 (if (car result) | |
5680 file | |
5681 ;; give up | |
5682 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user | |
5683 (format "cd to minidisk %s failed: %s" | |
5684 minidisk (cdr result)))))))) | |
5685 (t (error "Invalid CMS file name")))) | |
5686 | |
5687 (or (assq 'cms ange-ftp-fix-dir-name-func-alist) | |
5688 (setq ange-ftp-fix-dir-name-func-alist | |
5689 (cons '(cms . ange-ftp-fix-dir-name-for-cms) | |
5690 ange-ftp-fix-dir-name-func-alist))) | |
5691 | |
5692 (defvar ange-ftp-cms-host-regexp nil | |
5693 "Regular expression to match hosts running the CMS operating system.") | |
5694 | |
5695 ;; Return non-nil if HOST is running CMS. | |
5696 (defun ange-ftp-cms-host (host) | |
5697 (and ange-ftp-cms-host-regexp | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
5698 (string-match-p ange-ftp-cms-host-regexp host))) |
28210 | 5699 |
5700 (defun ange-ftp-add-cms-host (host) | |
5701 "Mark HOST as the name of a CMS host." | |
5702 (interactive | |
5703 (list (read-string "Host: " | |
5704 (let ((name (or (buffer-file-name) default-directory))) | |
5705 (and name (car (ange-ftp-ftp-name name))))))) | |
5706 (if (not (ange-ftp-cms-host host)) | |
5707 (setq ange-ftp-cms-host-regexp | |
5708 (concat "^" (regexp-quote host) "$" | |
5709 (and ange-ftp-cms-host-regexp "\\|") | |
5710 ange-ftp-cms-host-regexp) | |
5711 ange-ftp-host-cache nil))) | |
5712 | |
5713 (defun ange-ftp-parse-cms-listing () | |
5714 ;; Parse the current buffer which is assumed to be a CMS directory listing. | |
5715 ;; If we succeed in getting a listing, then we will assume that the minidisk | |
5716 ;; exists. file is bound by the call to ange-ftp-ls. This doesn't work | |
5717 ;; because ange-ftp doesn't know that the root hashtable has only part of | |
5718 ;; the info. It will assume that if a minidisk isn't in it, then it doesn't | |
5719 ;; exist. It would be nice if completion worked for minidisks, as we | |
5720 ;; discover them. | |
5721 ; (let* ((dir-file (directory-file-name file)) | |
5722 ; (root (file-name-directory dir-file)) | |
5723 ; (minidisk (ange-ftp-get-file-part dir-file)) | |
5724 ; (root-tbl (ange-ftp-get-hash-entry root ange-ftp-files-hashtable))) | |
5725 ; (if root-tbl | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5726 ; (puthash minidisk t root-tbl) |
28210 | 5727 ; (setq root-tbl (ange-ftp-make-hashtable)) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5728 ; (puthash minidisk t root-tbl) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5729 ; (puthash "." t root-tbl) |
28210 | 5730 ; (ange-ftp-set-files root root-tbl))) |
5731 ;; Now do the usual parsing | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5732 (let ((tbl (make-hash-table :test 'equal))) |
28210 | 5733 (goto-char (point-min)) |
5734 (save-match-data | |
5735 (while | |
5736 (re-search-forward | |
5737 "^\\([-A-Z0-9$_]+\\) +\\([-A-Z0-9$_]+\\) +[VF] +[0-9]+ " nil t) | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5738 (puthash (concat (match-string 1) "." (match-string 2)) nil tbl) |
28210 | 5739 (forward-line 1)) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5740 (puthash "." t tbl)) |
28210 | 5741 tbl)) |
5742 | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5743 (add-to-list 'ange-ftp-parse-list-func-alist |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5744 '(cms . ange-ftp-parse-cms-listing)) |
30459 | 5745 |
28210 | 5746 ;;;;; Tree dired support: |
5747 | |
5748 ;;(defconst ange-ftp-dired-cms-re-exe | |
5749 ;; "^. [-A-Z0-9$_]+ +EXEC " | |
5750 ;; "Regular expression to use to search for CMS executables.") | |
5751 | |
5752 ;;(or (assq 'cms ange-ftp-dired-re-exe-alist) | |
5753 ;; (setq ange-ftp-dired-re-exe-alist | |
5754 ;; (cons (cons 'cms ange-ftp-dired-cms-re-exe) | |
5755 ;; ange-ftp-dired-re-exe-alist))) | |
5756 | |
5757 | |
5758 ;;(defun ange-ftp-dired-cms-insert-headerline (dir) | |
5759 ;; ;; CMS has no total line, so we insert a blank line for | |
5760 ;; ;; aesthetics. | |
5761 ;; (insert "\n") | |
5762 ;; (forward-char -1) | |
5763 ;; (ange-ftp-real-dired-insert-headerline dir)) | |
5764 | |
5765 ;;(or (assq 'cms ange-ftp-dired-insert-headerline-alist) | |
5766 ;; (setq ange-ftp-dired-insert-headerline-alist | |
5767 ;; (cons '(cms . ange-ftp-dired-cms-insert-headerline) | |
5768 ;; ange-ftp-dired-insert-headerline-alist))) | |
5769 | |
5770 ;;(defun ange-ftp-dired-cms-move-to-filename (&optional raise-error eol) | |
5771 ;; "In dired, move to the first char of filename on this line." | |
5772 ;; ;; This is the CMS version. | |
5773 ;; (or eol (setq eol (progn (end-of-line) (point)))) | |
5774 ;; (let (case-fold-search) | |
5775 ;; (beginning-of-line) | |
5776 ;; (if (re-search-forward " [-A-Z0-9$_]+ +[-A-Z0-9$_]+ +[VF] +[0-9]+ " eol t) | |
5777 ;; (goto-char (1+ (match-beginning 0))) | |
5778 ;; (if raise-error | |
5779 ;; (error "No file on this line") | |
5780 ;; nil)))) | |
5781 | |
5782 ;;(or (assq 'cms ange-ftp-dired-move-to-filename-alist) | |
5783 ;; (setq ange-ftp-dired-move-to-filename-alist | |
5784 ;; (cons '(cms . ange-ftp-dired-cms-move-to-filename) | |
5785 ;; ange-ftp-dired-move-to-filename-alist))) | |
5786 | |
5787 ;;(defun ange-ftp-dired-cms-move-to-end-of-filename (&optional no-error eol) | |
5788 ;; ;; Assumes point is at beginning of filename. | |
5789 ;; ;; So, it should be called only after (dired-move-to-filename t). | |
5790 ;; ;; case-fold-search must be nil, at least for VMS. | |
5791 ;; ;; On failure, signals an error or returns nil. | |
5792 ;; ;; This is the CMS version. | |
5793 ;; (let ((opoint (point)) | |
5794 ;; case-fold-search hidden) | |
5795 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) | |
5796 ;; (setq hidden (and selective-display | |
5797 ;; (save-excursion | |
5798 ;; (search-forward "\r" eol t)))) | |
5799 ;; (if hidden | |
5800 ;; (if no-error | |
5801 ;; nil | |
5802 ;; (error | |
5803 ;; (substitute-command-keys | |
5804 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) | |
5805 ;; (skip-chars-forward "-A-Z0-9$_" eol) | |
5806 ;; (skip-chars-forward " " eol) | |
5807 ;; (skip-chars-forward "-A-Z0-9$_" eol) | |
5808 ;; (if (eq opoint (point)) | |
5809 ;; (if no-error | |
5810 ;; nil | |
5811 ;; (error "No file on this line")) | |
5812 ;; (point))))) | |
5813 | |
5814 ;;(or (assq 'cms ange-ftp-dired-move-to-end-of-filename-alist) | |
5815 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist | |
5816 ;; (cons '(cms . ange-ftp-dired-cms-move-to-end-of-filename) | |
5817 ;; ange-ftp-dired-move-to-end-of-filename-alist))) | |
5818 | |
5819 (defun ange-ftp-cms-make-compressed-filename (name &optional reverse) | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5820 (if (string-match "-Z\\'" name) |
28210 | 5821 (list nil (substring name 0 -2)) |
5822 (list t (concat name "-Z")))) | |
5823 | |
5824 (or (assq 'cms ange-ftp-make-compressed-filename-alist) | |
5825 (setq ange-ftp-make-compressed-filename-alist | |
5826 (cons '(cms . ange-ftp-cms-make-compressed-filename) | |
5827 ange-ftp-make-compressed-filename-alist))) | |
5828 | |
5829 ;;(defun ange-ftp-dired-cms-get-filename (&optional localp no-error-if-not-filep) | |
5830 ;; (let ((name (ange-ftp-real-dired-get-filename localp no-error-if-not-filep))) | |
5831 ;; (and name | |
5832 ;; (if (string-match "^\\([^ ]+\\) +\\([^ ]+\\)$" name) | |
5833 ;; (concat (substring name 0 (match-end 1)) | |
5834 ;; "." | |
5835 ;; (substring name (match-beginning 2) (match-end 2))) | |
5836 ;; name)))) | |
5837 | |
5838 ;;(or (assq 'cms ange-ftp-dired-get-filename-alist) | |
5839 ;; (setq ange-ftp-dired-get-filename-alist | |
5840 ;; (cons '(cms . ange-ftp-dired-cms-get-filename) | |
5841 ;; ange-ftp-dired-get-filename-alist))) | |
5842 | |
5843 ;;;; ------------------------------------------------------------ | |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5844 ;;;; BS2000 support |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5845 ;;;; ------------------------------------------------------------ |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5846 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5847 ;; There seems to be an error with regexps. '-' has to be the first |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5848 ;; character inside of the square brackets. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5849 (defconst ange-ftp-bs2000-short-filename-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5850 "[-A-Z0-9$#@.]*[A-Z][-A-Z0-9$#@.]*" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5851 "Regular expression to match for a valid short BS2000 file name.") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5852 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5853 (defconst ange-ftp-bs2000-fix-name-regexp-reverse |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5854 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5855 "^\\(" ange-ftp-bs2000-filename-pubset-regexp "\\)?" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5856 "\\(" ange-ftp-bs2000-filename-username-regexp "\\)?" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5857 "\\(" ange-ftp-bs2000-short-filename-regexp "\\)?") |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
5858 "Regular expression used in `ange-ftp-fix-name-for-bs2000'.") |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5859 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5860 (defconst ange-ftp-bs2000-fix-name-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5861 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5862 "/?\\(" ange-ftp-bs2000-filename-pubset-regexp "/\\)?" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5863 "\\(\\$[A-Z0-9]*/\\)?" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5864 "\\(" ange-ftp-bs2000-short-filename-regexp "\\)?") |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
5865 "Regular expression used in `ange-ftp-fix-name-for-bs2000'.") |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5866 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5867 (defcustom ange-ftp-bs2000-special-prefix |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5868 "X" |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
5869 "Prefix used for filenames starting with '#' or '@'." |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5870 :group 'ange-ftp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5871 :type 'string) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5872 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5873 ;; Convert NAME from UNIX-ish to BS2000. If REVERSE given then convert from |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5874 ;; BS2000 to UNIX-ish. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5875 (defun ange-ftp-fix-name-for-bs2000 (name &optional reverse) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5876 (save-match-data |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5877 (if reverse |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5878 (if (string-match |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5879 ange-ftp-bs2000-fix-name-regexp-reverse |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5880 name) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5881 (let ((pubset (if (match-beginning 1) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5882 (substring name 0 (match-end 1)))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5883 (userid (if (match-beginning 2) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5884 (substring name |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5885 (match-beginning 2) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5886 (1- (match-end 2))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5887 (filename (if (match-beginning 3) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5888 (substring name (match-beginning 3))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5889 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5890 "/" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5891 ;; we have to insert "_/" here to prevent expand-file-name to |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5892 ;; interpret BS2000 pubsets as the special escape prefix: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5893 (and pubset (concat "_/" pubset "/")) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5894 (and userid (concat userid "/")) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5895 filename)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5896 (error "name %s didn't match" name)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5897 ;; and here we (maybe) have to remove the inserted "_/" 'cause |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5898 ;; of our prevention of the special escape prefix above: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5899 (if (string-match (concat "^/_/") name) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5900 (setq name (substring name 2))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5901 (if (string-match |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5902 ange-ftp-bs2000-fix-name-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5903 name) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5904 (let ((pubset (if (match-beginning 1) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5905 (substring name |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5906 (match-beginning 1) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5907 (1- (match-end 1))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5908 (userid (if (match-beginning 2) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5909 (substring name |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5910 (match-beginning 2) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5911 (1- (match-end 2))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5912 (filename (if (match-beginning 3) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5913 (substring name (match-beginning 3))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5914 (if (and (boundp 'filename) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5915 (stringp filename) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5916 (string-match "[#@].+" filename)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5917 (setq filename (concat ange-ftp-bs2000-special-prefix |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5918 (substring filename 1)))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5919 (upcase |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5920 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5921 pubset |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5922 (and userid (concat userid ".")) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5923 ;; change every '/' in filename to a '.', normally not neccessary |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5924 (and filename |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5925 (subst-char-in-string ?/ ?. filename))))) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5926 ;; Let's hope that BS2000 recognize this anyway: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5927 name)))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5928 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5929 (or (assq 'bs2000 ange-ftp-fix-name-func-alist) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5930 (setq ange-ftp-fix-name-func-alist |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5931 (cons '(bs2000 . ange-ftp-fix-name-for-bs2000) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5932 ange-ftp-fix-name-func-alist))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5933 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5934 ;; Convert name from UNIX-ish to BS2000 ready for a DIRectory listing. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5935 ;; Remember that there are no directories in BS2000. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5936 (defun ange-ftp-fix-dir-name-for-bs2000 (dir-name) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5937 (if (string-equal dir-name "/") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5938 "*" ;; Don't use an empty string here! |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5939 (ange-ftp-fix-name-for-bs2000 dir-name))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5940 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5941 (or (assq 'bs2000 ange-ftp-fix-dir-name-func-alist) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5942 (setq ange-ftp-fix-dir-name-func-alist |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5943 (cons '(bs2000 . ange-ftp-fix-dir-name-for-bs2000) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5944 ange-ftp-fix-dir-name-func-alist))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5945 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5946 (or (memq 'bs2000 ange-ftp-dumb-host-types) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5947 (setq ange-ftp-dumb-host-types |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5948 (cons 'bs2000 ange-ftp-dumb-host-types))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5949 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5950 (defvar ange-ftp-bs2000-host-regexp nil) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5951 (defvar ange-ftp-bs2000-posix-host-regexp nil) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5952 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5953 ;; Return non-nil if HOST is running BS2000. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5954 (defun ange-ftp-bs2000-host (host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5955 (and ange-ftp-bs2000-host-regexp |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
5956 (string-match-p ange-ftp-bs2000-host-regexp host))) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5957 ;; Return non-nil if HOST is running BS2000 with POSIX subsystem. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5958 (defun ange-ftp-bs2000-posix-host (host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5959 (and ange-ftp-bs2000-posix-host-regexp |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
5960 (string-match-p ange-ftp-bs2000-posix-host-regexp host))) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5961 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5962 (defun ange-ftp-add-bs2000-host (host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5963 "Mark HOST as the name of a machine running BS2000." |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5964 (interactive |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5965 (list (read-string "Host: " |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5966 (let ((name (or (buffer-file-name) default-directory))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5967 (and name (car (ange-ftp-ftp-name name))))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5968 (if (not (ange-ftp-bs2000-host host)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5969 (setq ange-ftp-bs2000-host-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5970 (concat "^" (regexp-quote host) "$" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5971 (and ange-ftp-bs2000-host-regexp "\\|") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5972 ange-ftp-bs2000-host-regexp) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5973 ange-ftp-host-cache nil))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5974 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5975 (defun ange-ftp-add-bs2000-posix-host (host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5976 "Mark HOST as the name of a machine running BS2000 with POSIX subsystem." |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5977 (interactive |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5978 (list (read-string "Host: " |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5979 (let ((name (or (buffer-file-name) default-directory))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5980 (and name (car (ange-ftp-ftp-name name))))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5981 (if (not (ange-ftp-bs2000-posix-host host)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5982 (setq ange-ftp-bs2000-posix-host-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5983 (concat "^" (regexp-quote host) "$" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5984 (and ange-ftp-bs2000-posix-host-regexp "\\|") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5985 ange-ftp-bs2000-posix-host-regexp) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5986 ange-ftp-host-cache nil)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5987 ;; Install CD hook to cd to posix on connecting: |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5988 (add-hook 'ange-ftp-process-startup-hook 'ange-ftp-bs2000-cd-to-posix) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5989 host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5990 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5991 (defconst ange-ftp-bs2000-filename-regexp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5992 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5993 "\\(" ange-ftp-bs2000-filename-prefix-regexp "\\)?" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5994 "\\(" ange-ftp-bs2000-short-filename-regexp "\\)") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5995 "Regular expression to match for a valid BS2000 file name.") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5996 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5997 (defcustom ange-ftp-bs2000-additional-pubsets |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5998 nil |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5999 "*List of additional pubsets available to all users." |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6000 :group 'ange-ftp |
44953
edd77d3b9898
(ange-ftp-passive-host-alist)
Richard M. Stallman <rms@gnu.org>
parents:
43187
diff
changeset
|
6001 :type '(repeat string)) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6002 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6003 ;; These parsing functions are as general as possible because the syntax |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6004 ;; of ftp listings from BS2000 hosts is a bit erratic. What saves us is that |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6005 ;; the BS2000 filename syntax is so rigid. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6006 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6007 ;; Extract the next filename from a BS2000 dired-like listing. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6008 (defun ange-ftp-parse-bs2000-filename () |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6009 (if (re-search-forward ange-ftp-bs2000-filename-regexp nil t) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
6010 (match-string 2))) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6011 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6012 ;; Parse the current buffer which is assumed to be in (some) BS2000 FTP dir |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6013 ;; format, and return a hashtable as the result. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6014 (defun ange-ftp-parse-bs2000-listing () |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
6015 (let ((tbl (make-hash-table :test 'equal)) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6016 pubset |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6017 file) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6018 ;; get current pubset |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6019 (goto-char (point-min)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6020 (if (re-search-forward ange-ftp-bs2000-filename-pubset-regexp nil t) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
6021 (setq pubset (match-string 0))) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6022 ;; add files to hashtable |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6023 (goto-char (point-min)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6024 (save-match-data |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6025 (while (setq file (ange-ftp-parse-bs2000-filename)) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
6026 (puthash file nil tbl))) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6027 ;; add . and .. |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
6028 (puthash "." t tbl) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
6029 (puthash ".." t tbl) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6030 ;; add all additional pubsets, if not listing one of them |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6031 (if (not (member pubset ange-ftp-bs2000-additional-pubsets)) |
84913
db1179979d6b
(ange-ftp-call-chmod, ange-ftp-parse-bs2000-listing):
Juanma Barranquero <lekktu@gmail.com>
parents:
83791
diff
changeset
|
6032 (mapc (lambda (pubset) (puthash pubset t tbl)) |
db1179979d6b
(ange-ftp-call-chmod, ange-ftp-parse-bs2000-listing):
Juanma Barranquero <lekktu@gmail.com>
parents:
83791
diff
changeset
|
6033 ange-ftp-bs2000-additional-pubsets)) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6034 tbl)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6035 |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
6036 (add-to-list 'ange-ftp-parse-list-func-alist |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
6037 '(bs2000 . ange-ftp-parse-bs2000-listing)) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6038 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6039 (defun ange-ftp-bs2000-cd-to-posix () |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6040 "cd to POSIX subsystem if the current host matches |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
6041 `ange-ftp-bs2000-posix-host-regexp'. All BS2000 hosts with POSIX subsystem |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
6042 MUST BE EXPLICITLY SET with `ange-ftp-add-bs2000-posix-host' for they cannot |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6043 be recognized automatically (they are all valid BS2000 hosts too)." |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
6044 (if (and ange-ftp-this-host (ange-ftp-bs2000-posix-host ange-ftp-this-host)) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6045 (progn |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6046 ;; change to POSIX: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6047 ; (ange-ftp-raw-send-cmd proc "cd %POSIX") |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
6048 (ange-ftp-cd ange-ftp-this-host ange-ftp-this-user "%POSIX") |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6049 ;; put new home directory in the expand-dir hashtable. |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
6050 ;; `ange-ftp-this-host' and `ange-ftp-this-user' are bound in |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
6051 ;; ange-ftp-get-process. |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
6052 (puthash (concat ange-ftp-this-host "/" ange-ftp-this-user "/~") |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
6053 (car (ange-ftp-get-pwd ange-ftp-this-host ange-ftp-this-user)) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
6054 ange-ftp-expand-dir-hashtable)))) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6055 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6056 ;; Not available yet: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6057 ;; ange-ftp-bs2000-delete-file-entry |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6058 ;; ange-ftp-bs2000-add-file-entry |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6059 ;; ange-ftp-bs2000-file-name-as-directory |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6060 ;; ange-ftp-bs2000-make-compressed-filename |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6061 ;; ange-ftp-bs2000-file-name-sans-versions |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6062 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6063 ;;;; ------------------------------------------------------------ |
28210 | 6064 ;;;; Finally provide package. |
6065 ;;;; ------------------------------------------------------------ | |
6066 | |
6067 (provide 'ange-ftp) | |
6068 | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
6069 ;; arch-tag: 2987ef88-cb56-4ec1-87a9-79132572e316 |
28210 | 6070 ;;; ange-ftp.el ends here |