Mercurial > emacs
annotate lisp/net/ange-ftp.el @ 111047:1e7d8f405703
Merge changes from emacs-23 branch.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Tue, 19 Oct 2010 13:44:07 +0200 |
parents | 6a4fac654761 |
children | 249a1455856a |
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, |
106815 | 4 ;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 |
104552
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 | |
671 ;;;; ------------------------------------------------------------ | |
672 ;;;; User customization variables. | |
673 ;;;; ------------------------------------------------------------ | |
674 | |
675 (defgroup ange-ftp nil | |
30459 | 676 "Accessing remote files and directories using FTP |
28210 | 677 made as simple and transparent as possible." |
678 :group 'files | |
107379
3c0cd76e49ff
Fix last change to use existing comm Custom group instead of `net'.
Chong Yidong <cyd@stupidchicken.com>
parents:
107378
diff
changeset
|
679 :group 'comm |
28210 | 680 :prefix "ange-ftp-") |
681 | |
682 (defcustom ange-ftp-name-format | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
683 '("\\`/\\(\\([^/:]*\\)@\\)?\\([^@/:]*[^@/:.]\\):\\(.*\\)" . (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
|
684 "Format of a fully expanded remote file name. |
28210 | 685 |
686 This is a list of the form \(REGEXP HOST USER NAME\), | |
687 where REGEXP is a regular expression matching | |
688 the full remote name, and HOST, USER, and NAME are the numbers of | |
689 parenthesized expressions in REGEXP for the components (in that order)." | |
690 :group 'ange-ftp | |
53388
29c86aab2fa2
(ange-ftp-name-format): Allow USER to contain
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53351
diff
changeset
|
691 :type '(list (regexp :tag "Name regexp") |
28210 | 692 (integer :tag "Host group") |
693 (integer :tag "User group") | |
694 (integer :tag "Name group"))) | |
695 | |
696 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of | |
697 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs. | |
698 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out. | |
699 | |
700 (defvar ange-ftp-multi-msgs | |
102443
07f9480f83e6
(ange-ftp-multi-msgs): Add 150-.
Andreas Schwab <schwab@linux-m68k.org>
parents:
102225
diff
changeset
|
701 "^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
|
702 "*Regular expression matching the start of a multiline FTP reply.") |
28210 | 703 |
704 (defvar ange-ftp-good-msgs | |
705 "^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
|
706 "*Regular expression matching FTP \"success\" messages.") |
28210 | 707 |
708 ;; CMS and the odd VMS machine say 200 Port rather than 200 PORT. | |
709 ;; Also CMS machines use a multiline 550- reply to say that you | |
710 ;; don't have write permission. ange-ftp gets into multi-line skip | |
711 ;; mode and hangs. Have it ignore 550- instead. It will then barf | |
712 ;; when it gets the 550 line, as it should. | |
713 | |
28892
19ae39682b38
(ange-ftp-skip-msgs): Include 500 code.for
Gerd Moellmann <gerd@gnu.org>
parents:
28210
diff
changeset
|
714 ;; 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
|
715 ;; 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
|
716 ;; 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
|
717 ;; 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
|
718 ;; which we ignore. |
28210 | 719 (defcustom ange-ftp-skip-msgs |
720 (concat "^200 \\(PORT\\|Port\\) \\|^331 \\|^150 \\|^350 \\|^[0-9]+ bytes \\|" | |
721 "^Connected \\|^$\\|^Remote system\\|^Using\\|^ \\|Password:\\|" | |
722 "^Data connection \\|" | |
723 "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye\\|" | |
107072
abe576120f76
* net/ange-ftp.el (ange-ftp-skip-msgs): Ignore all ""^500 .*AUTH"
Michael Albinus <michael.albinus@gmx.de>
parents:
107040
diff
changeset
|
724 "^500 .*AUTH\\|^KERBEROS\\|" |
110458
6a4fac654761
* net/ange-ftp.el (ange-ftp-skip-msgs): Add "^504 ..." message.
Michael Albinus <michael.albinus@gmx.de>
parents:
108806
diff
changeset
|
725 "^504 Unknown security mechanism\\|" |
47068
9026b0749c9e
(ange-ftp-skip-msgs): Skip the 530 response
Richard M. Stallman <rms@gnu.org>
parents:
46892
diff
changeset
|
726 "^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
|
727 "^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
|
728 "^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
|
729 "Regular expression matching FTP messages that can be ignored." |
28210 | 730 :group 'ange-ftp |
731 :type 'regexp) | |
732 | |
733 (defcustom ange-ftp-fatal-msgs | |
734 (concat "^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|" | |
735 "^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
|
736 "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
|
737 |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
738 These mean that the FTP process should be (or already has been) killed." |
28210 | 739 :group 'ange-ftp |
740 :type 'regexp) | |
741 | |
64667
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
742 (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
|
743 ;; 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
|
744 ;; |
64667
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
745 ;; 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
|
746 ;; 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
|
747 ;; 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
|
748 ;; 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
|
749 ;; 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
|
750 "^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
|
751 "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
|
752 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
|
753 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
|
754 :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
|
755 :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
|
756 |
28210 | 757 (defcustom ange-ftp-gateway-fatal-msgs |
758 "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
|
759 "Regular expression matching login failure messages from rlogin/telnet." |
28210 | 760 :group 'ange-ftp |
761 :type 'regexp) | |
762 | |
763 (defcustom ange-ftp-xfer-size-msgs | |
764 "^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
|
765 "Regular expression used to determine the number of bytes in a FTP transfer." |
28210 | 766 :group 'ange-ftp |
767 :type 'regexp) | |
768 | |
30459 | 769 (defcustom ange-ftp-tmp-name-template |
28210 | 770 (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
|
771 "Template used to create temporary files." |
28210 | 772 :group 'ange-ftp |
773 :type 'directory) | |
774 | |
775 (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
|
776 "Template used to create temporary files when FTP-ing through a gateway. |
28210 | 777 |
778 Files starting with this prefix need to be accessible from BOTH the local | |
779 machine and the gateway machine, and need to have the SAME name on both | |
780 machines, that is, /tmp is probably NOT what you want, since that is rarely | |
781 cross-mounted." | |
782 :group 'ange-ftp | |
783 :type 'directory) | |
784 | |
785 (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
|
786 "File in .netrc format to search for passwords." |
28210 | 787 :group 'ange-ftp |
788 :type 'file) | |
789 | |
790 (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
|
791 "If non-nil avoid checking permissions on the .netrc file." |
28210 | 792 :group 'ange-ftp |
793 :type 'boolean) | |
794 | |
795 (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
|
796 "User name to use when none is specified in a file name. |
28210 | 797 |
798 If non-nil but not a string, you are prompted for the name. | |
799 If nil, the value of `ange-ftp-netrc-default-user' is used. | |
800 If that is nil too, then your login name is used. | |
801 | |
802 Once a connection to a given host has been initiated, the user name | |
803 and password information for that host are cached and re-used by | |
804 ange-ftp. Use \\[ange-ftp-set-user] to change the cached values, | |
805 since setting `ange-ftp-default-user' directly does not affect | |
806 the cached information." | |
807 :group 'ange-ftp | |
808 :type '(choice (const :tag "Default" nil) | |
809 string | |
810 (other :tag "Prompt" t))) | |
811 | |
812 (defcustom ange-ftp-netrc-default-user nil | |
813 "Alternate default user name to use when none is specified. | |
814 | |
815 This variable is set from the `default' command in your `.netrc' file, | |
816 if there is one." | |
817 :group 'ange-ftp | |
818 :type '(choice (const :tag "Default" nil) | |
819 string)) | |
820 | |
821 (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
|
822 "Password to use when the user name equals `ange-ftp-default-user'." |
28210 | 823 :group 'ange-ftp |
824 :type '(choice (const :tag "Default" nil) | |
825 string)) | |
826 | |
827 (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
|
828 "Account to use when the user name equals `ange-ftp-default-user'." |
28210 | 829 :group 'ange-ftp |
830 :type '(choice (const :tag "Default" nil) | |
831 string)) | |
832 | |
833 (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
|
834 "Password to use when the user name equals `ange-ftp-netrc-default-user'." |
28210 | 835 :group 'ange-ftp |
836 :type '(choice (const :tag "Default" nil) | |
837 string)) | |
838 | |
839 (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
|
840 "Account to use when the user name equals `ange-ftp-netrc-default-user'." |
28210 | 841 :group 'ange-ftp |
842 :type '(choice (const :tag "Default" nil) | |
843 string)) | |
844 | |
845 (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
|
846 "If t, use value of `user-mail-address' as password for anonymous FTP. |
28210 | 847 |
848 If a string, then use that string as the password. | |
849 If nil, prompt the user for a password." | |
850 :group 'ange-ftp | |
851 :type '(choice (const :tag "Prompt" nil) | |
852 string | |
853 (other :tag "User address" t))) | |
854 | |
855 (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
|
856 "If non-nil, regexp matching hosts on which `dir' command lists directory." |
28210 | 857 :group 'ange-ftp |
858 :type '(choice (const :tag "Default" nil) | |
859 string)) | |
860 | |
861 (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
|
862 (concat "TAGS\\'\\|\\.\\(?:" |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
863 (eval-when-compile |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
864 (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
|
865 "ps" "elc" "gif" "gz" "taz" "tgz"))) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
866 "\\|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
|
867 "If a file matches this regexp then it is transferred in binary mode." |
28210 | 868 :group 'ange-ftp |
869 :type 'regexp) | |
870 | |
871 (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
|
872 "Name of host to use as gateway machine when local FTP isn't possible." |
28210 | 873 :group 'ange-ftp |
874 :type '(choice (const :tag "Default" nil) | |
875 string)) | |
876 | |
877 (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
|
878 "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
|
879 |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
880 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
|
881 instead, and/or reached via `ange-ftp-gateway-ftp-program-name'." |
28210 | 882 :group 'ange-ftp |
883 :type 'regexp) | |
884 | |
885 (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
|
886 "If non-nil then the gateway program should give a shell prompt. |
28210 | 887 |
888 Both telnet and rlogin do something like this." | |
889 :group 'ange-ftp | |
890 :type 'boolean) | |
891 | |
892 (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
|
893 "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
|
894 |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
895 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
|
896 See also the gateway variable above." |
28210 | 897 :group 'ange-ftp |
898 :type '(choice (const "rsh") | |
899 (const "telnet") | |
900 (const "rlogin") | |
901 string)) | |
902 | |
903 (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
|
904 "Regexp matching prompt after complete login sequence on gateway machine. |
28210 | 905 |
906 A match for this means the shell is now awaiting input. Make this regexp as | |
907 strict as possible; it shouldn't match *anything* at all except the user's | |
908 initial prompt. The above string will fail under most SUN-3's since it | |
909 matches the login banner." | |
910 :group 'ange-ftp | |
911 :type 'regexp) | |
912 | |
913 (defvar ange-ftp-gateway-setup-term-command | |
914 (if (eq system-type 'hpux) | |
915 "stty -onlcr -echo\n" | |
916 "stty -echo nl\n") | |
917 "*Set up terminal after logging in to the gateway machine. | |
918 This command should stop the terminal from echoing each command, and | |
919 arrange to strip out trailing ^M characters.") | |
920 | |
921 (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
|
922 "Non-nil says the FTP gateway (proxy) or gateway FTP program is smart. |
28210 | 923 |
924 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
|
925 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
|
926 See also `ange-ftp-smart-gateway-port'." |
28210 | 927 :group 'ange-ftp |
928 :type 'boolean) | |
929 | |
930 (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
|
931 "Port on gateway machine to use when smart gateway is in operation." |
28210 | 932 :group 'ange-ftp |
933 :type 'string) | |
934 | |
935 (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
|
936 "If non-nil, send the HASH command to the FTP client." |
28210 | 937 :group 'ange-ftp |
938 :type 'boolean) | |
939 | |
940 (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
|
941 "Default size, in bytes, between hash-marks when transferring a binary file. |
28210 | 942 If nil, this variable will be locally overridden if the FTP client outputs a |
943 suitable response to the HASH command. If non-nil, this value takes | |
944 precedence over the local value." | |
945 :group 'ange-ftp | |
946 :type '(choice (const :tag "Overridden" nil) | |
947 integer)) | |
948 | |
949 (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
|
950 "Default size, in bytes, between hash-marks when transferring an ASCII file. |
28210 | 951 This variable is buffer-local and will be locally overridden if the FTP client |
952 outputs a suitable response to the HASH command." | |
953 :group 'ange-ftp | |
954 :type 'integer) | |
955 | |
956 (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
|
957 "If non-nil then be chatty about interaction with the FTP process." |
28210 | 958 :group 'ange-ftp |
959 :type 'boolean) | |
960 | |
961 (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
|
962 "Name of FTP program to run." |
28210 | 963 :group 'ange-ftp |
964 :type 'string) | |
965 | |
966 (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
|
967 "Name of FTP program to run when accessing non-local hosts. |
28210 | 968 |
969 Some AT&T folks claim to use something called `pftp' here." | |
970 :group 'ange-ftp | |
971 :type 'string) | |
972 | |
973 (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
|
974 "A list of arguments passed to the FTP program when started." |
28210 | 975 :group 'ange-ftp |
976 :type '(repeat string)) | |
977 | |
978 (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
|
979 "If non-nil, this is a string naming the nslookup program." |
28210 | 980 :group 'ange-ftp |
981 :type '(choice (const :tag "None" nil) | |
982 string)) | |
983 | |
984 (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
|
985 "Non-nil means make backup files for \"magic\" remote files." |
28210 | 986 :group 'ange-ftp |
987 :type 'boolean) | |
988 | |
989 (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
|
990 "Number of seconds to wait before retry if file or listing doesn't arrive. |
28210 | 991 This might need to be increased for very slow connections." |
992 :group 'ange-ftp | |
993 :type 'integer) | |
994 | |
995 (defcustom ange-ftp-auto-save 0 | |
996 "If 1, allow ange-ftp files to be auto-saved. | |
997 If 0, inhibit auto-saving of ange-ftp files. | |
998 Don't use any other value." | |
999 :group 'ange-ftp | |
1000 :type '(choice (const :tag "Suppress" 0) | |
1001 (const :tag "Allow" 1))) | |
1002 | |
1003 (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
|
1004 "If t, try to use passive mode in FTP, if the client program supports it." |
28210 | 1005 :group 'ange-ftp |
1006 :type 'boolean | |
45260 | 1007 :version "21.1") |
28210 | 1008 |
42393
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
1009 (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
|
1010 "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
|
1011 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
|
1012 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
|
1013 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
|
1014 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
|
1015 :group 'ange-ftp |
44953
edd77d3b9898
(ange-ftp-passive-host-alist)
Richard M. Stallman <rms@gnu.org>
parents:
43187
diff
changeset
|
1016 :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
|
1017 (const :tag "Off" "off") |
edd77d3b9898
(ange-ftp-passive-host-alist)
Richard M. Stallman <rms@gnu.org>
parents:
43187
diff
changeset
|
1018 (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
|
1019 :version "22.1") |
28210 | 1020 |
1021 ;;;; ------------------------------------------------------------ | |
1022 ;;;; Hash table support. | |
1023 ;;;; ------------------------------------------------------------ | |
1024 | |
1025 (require 'backquote) | |
1026 | |
1027 (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
|
1028 "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
|
1029 (and tbl (not (eq (gethash key tbl 'unknown) 'unknown)))) |
28210 | 1030 |
1031 (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
|
1032 "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
|
1033 ;; (let ((keys nil)) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1034 ;; (maphash (lambda (k v) (push k keys)) tbl) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1035 ;; (sort keys 'string-lessp)) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1036 (sort (all-completions "" tbl) 'string-lessp)) |
28210 | 1037 |
1038 ;;;; ------------------------------------------------------------ | |
1039 ;;;; Internal variables. | |
1040 ;;;; ------------------------------------------------------------ | |
1041 | |
1042 (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
|
1043 "Buffer name to hold directory listing data received from FTP process.") |
28210 | 1044 |
1045 (defvar ange-ftp-netrc-modtime nil | |
1046 "Last modified time of the netrc file from file-attributes.") | |
1047 | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1048 (defvar ange-ftp-user-hashtable (make-hash-table :test 'equal) |
28210 | 1049 "Hash table holding associations between HOST, USER pairs.") |
1050 | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1051 (defvar ange-ftp-passwd-hashtable (make-hash-table :test 'equal) |
28210 | 1052 "Mapping between a HOST, USER pair and a PASSWORD for them. |
1053 All HOST values should be in lower case.") | |
1054 | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1055 (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
|
1056 "Mapping between a HOST, USER pair and an ACCOUNT password for them.") |
28210 | 1057 |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1058 (defvar ange-ftp-files-hashtable (make-hash-table :test 'equal :size 97) |
28210 | 1059 "Hash table for storing directories and their respective files.") |
1060 | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1061 (defvar ange-ftp-inodes-hashtable (make-hash-table :test 'equal :size 97) |
28210 | 1062 "Hash table for storing file names and their \"inode numbers\".") |
1063 | |
1064 (defvar ange-ftp-next-inode-number 1 | |
1065 "Next \"inode number\" value. We give each file name a unique number.") | |
1066 | |
1067 (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
|
1068 "Last set of args used by `ange-ftp-ls'.") |
28210 | 1069 |
1070 (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
|
1071 "Last file passed to `ange-ftp-ls'.") |
28210 | 1072 |
1073 (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
|
1074 "Last result returned from `ange-ftp-ls'.") |
28210 | 1075 |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1076 (defconst ange-ftp-expand-dir-hashtable (make-hash-table :test 'equal)) |
28210 | 1077 |
1078 (defconst ange-ftp-expand-dir-regexp "^5.0 \\([^: ]+\\):") | |
1079 | |
1080 ;; These are local variables in each FTP process buffer. | |
1081 (defvar ange-ftp-hash-mark-unit nil) | |
1082 (defvar ange-ftp-hash-mark-count nil) | |
1083 (defvar ange-ftp-xfer-size nil) | |
1084 (defvar ange-ftp-process-string nil) | |
1085 (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
|
1086 (defvar ange-ftp-pending-error-line nil) |
28210 | 1087 (defvar ange-ftp-process-busy nil) |
1088 (defvar ange-ftp-process-result nil) | |
1089 (defvar ange-ftp-process-multi-skip nil) | |
1090 (defvar ange-ftp-process-msg nil) | |
1091 (defvar ange-ftp-process-continue nil) | |
1092 (defvar ange-ftp-last-percent nil) | |
1093 | |
1094 ;; These variables are bound by one function and examined by another. | |
1095 ;; Leave them void globally for error checking. | |
1096 (defvar ange-ftp-this-file) | |
1097 (defvar ange-ftp-this-dir) | |
1098 (defvar ange-ftp-this-user) | |
1099 (defvar ange-ftp-this-host) | |
1100 (defvar ange-ftp-this-msg) | |
1101 (defvar ange-ftp-completion-ignored-pattern) | |
1102 (defvar ange-ftp-trample-marker) | |
1103 | |
1104 ;; New error symbols. | |
1105 (put 'ftp-error 'error-conditions '(ftp-error file-error error)) | |
1106 ;; (put 'ftp-error 'error-message "FTP error") | |
1107 | |
1108 ;;; ------------------------------------------------------------ | |
1109 ;;; Enhanced message support. | |
1110 ;;; ------------------------------------------------------------ | |
1111 | |
1112 (defun ange-ftp-message (fmt &rest args) | |
1113 "Display message in echo area, but indicate if truncated. | |
1114 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
|
1115 (let ((msg (apply 'format fmt args)) |
28210 | 1116 (max (window-width (minibuffer-window)))) |
1117 (if noninteractive | |
1118 msg | |
1119 (if (>= (length msg) max) | |
1120 ;; Take just the last MAX - 3 chars of the string. | |
1121 (setq msg (concat "> " (substring msg (- 3 max))))) | |
1122 (message "%s" msg)))) | |
1123 | |
1124 (defun ange-ftp-abbreviate-filename (file &optional new) | |
30459 | 1125 "Abbreviate the file name FILE relative to the `default-directory'. |
28210 | 1126 If the optional parameter NEW is given and the non-directory parts match, |
1127 only return the directory part of FILE." | |
1128 (save-match-data | |
1129 (if (and default-directory | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
1130 (string-match (concat "\\`" |
28210 | 1131 (regexp-quote default-directory) |
1132 ".") file)) | |
1133 (setq file (substring file (1- (match-end 0))))) | |
1134 (if (and new | |
1135 (string-equal (file-name-nondirectory file) | |
1136 (file-name-nondirectory new))) | |
1137 (setq file (file-name-directory file))) | |
1138 (or file "./"))) | |
1139 | |
1140 ;;;; ------------------------------------------------------------ | |
1141 ;;;; User / Host mapping support. | |
1142 ;;;; ------------------------------------------------------------ | |
1143 | |
1144 (defun ange-ftp-set-user (host user) | |
1145 "For a given HOST, set or change the default USER." | |
1146 (interactive "sHost: \nsUser: ") | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1147 (puthash host user ange-ftp-user-hashtable)) |
28210 | 1148 |
1149 (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
|
1150 "Given a HOST, return the default user." |
28210 | 1151 (ange-ftp-parse-netrc) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1152 (let ((user (gethash host ange-ftp-user-hashtable))) |
28210 | 1153 (or user |
1154 (prog1 | |
1155 (setq user | |
1156 (cond ((stringp ange-ftp-default-user) | |
1157 ;; We have a default name. Use it. | |
1158 ange-ftp-default-user) | |
1159 (ange-ftp-default-user | |
1160 ;; Ask the user. | |
1161 (let ((enable-recursive-minibuffers t)) | |
1162 (read-string (format "User for %s: " host) | |
1163 (user-login-name)))) | |
1164 (ange-ftp-netrc-default-user) | |
1165 ;; Default to the user's login name. | |
1166 (t | |
1167 (user-login-name)))) | |
1168 (ange-ftp-set-user host user))))) | |
1169 | |
1170 ;;;; ------------------------------------------------------------ | |
1171 ;;;; Password support. | |
1172 ;;;; ------------------------------------------------------------ | |
1173 | |
1174 (defmacro ange-ftp-generate-passwd-key (host user) | |
105382
7cb911a9baab
* net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
Michael Albinus <michael.albinus@gmx.de>
parents:
105372
diff
changeset
|
1175 `(and (stringp ,host) (stringp ,user) (concat (downcase ,host) "/" ,user))) |
28210 | 1176 |
1177 (defmacro ange-ftp-lookup-passwd (host user) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1178 `(gethash (ange-ftp-generate-passwd-key ,host ,user) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1179 ange-ftp-passwd-hashtable)) |
28210 | 1180 |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1181 (defun ange-ftp-set-passwd (host user password) |
28210 | 1182 "For a given HOST and USER, set or change the associated PASSWORD." |
1183 (interactive (list (read-string "Host: ") | |
1184 (read-string "User: ") | |
1185 (read-passwd "Password: "))) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1186 (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
|
1187 password ange-ftp-passwd-hashtable)) |
28210 | 1188 |
1189 (defun ange-ftp-get-host-with-passwd (user) | |
1190 "Given a USER, return a host we know the password for." | |
1191 (ange-ftp-parse-netrc) | |
1192 (catch 'found-one | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1193 (maphash |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1194 (lambda (host val) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1195 (if (ange-ftp-lookup-passwd host user) (throw 'found-one host))) |
28210 | 1196 ange-ftp-user-hashtable) |
1197 (save-match-data | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1198 (maphash |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1199 (lambda (key value) |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
1200 (if (string-match "\\`[^/]*\\(/\\).*\\'" key) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1201 (let ((host (substring key 0 (match-beginning 1)))) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1202 (if (and (string-equal user (substring key (match-end 1))) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1203 value) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1204 (throw 'found-one host))))) |
28210 | 1205 ange-ftp-passwd-hashtable)) |
1206 nil)) | |
1207 | |
1208 (defun ange-ftp-get-passwd (host user) | |
1209 "Return the password for specified HOST and USER, asking user if necessary." | |
1210 (ange-ftp-parse-netrc) | |
1211 | |
1212 ;; look up password in the hash table first; user might have overridden the | |
1213 ;; defaults. | |
1214 (cond ((ange-ftp-lookup-passwd host user)) | |
30459 | 1215 |
28210 | 1216 ;; See if default user and password set. |
1217 ((and (stringp ange-ftp-default-user) | |
1218 ange-ftp-default-password | |
1219 (string-equal user ange-ftp-default-user)) | |
1220 ange-ftp-default-password) | |
30459 | 1221 |
28210 | 1222 ;; See if default user and password set from .netrc file. |
1223 ((and (stringp ange-ftp-netrc-default-user) | |
1224 ange-ftp-netrc-default-password | |
1225 (string-equal user ange-ftp-netrc-default-user)) | |
1226 ange-ftp-netrc-default-password) | |
30459 | 1227 |
28210 | 1228 ;; anonymous ftp password is handled specially since there is an |
1229 ;; unwritten rule about how that is used on the Internet. | |
1230 ((and (or (string-equal user "anonymous") | |
1231 (string-equal user "ftp")) | |
1232 ange-ftp-generate-anonymous-password) | |
1233 (if (stringp ange-ftp-generate-anonymous-password) | |
1234 ange-ftp-generate-anonymous-password | |
1235 user-mail-address)) | |
30459 | 1236 |
28210 | 1237 ;; see if same user has logged in to other hosts; if so then prompt |
1238 ;; with the password that was used there. | |
1239 (t | |
1240 (let* ((other (ange-ftp-get-host-with-passwd user)) | |
1241 (passwd (if other | |
30459 | 1242 |
28210 | 1243 ;; found another machine with the same user. |
1244 ;; Try that account. | |
1245 (read-passwd | |
1246 (format "passwd for %s@%s (default same as %s@%s): " | |
1247 user host user other) | |
1248 nil | |
1249 (ange-ftp-lookup-passwd other user)) | |
30459 | 1250 |
28210 | 1251 ;; I give up. Ask the user for the password. |
1252 (read-passwd | |
1253 (format "Password for %s@%s: " user host))))) | |
1254 (ange-ftp-set-passwd host user passwd) | |
1255 passwd)))) | |
1256 | |
1257 ;;;; ------------------------------------------------------------ | |
1258 ;;;; Account support | |
1259 ;;;; ------------------------------------------------------------ | |
1260 | |
1261 ;; Account passwords must be either specified in the .netrc file, or set | |
1262 ;; manually by calling ange-ftp-set-account. For the moment, ange-ftp doesn't | |
1263 ;; check to see whether the FTP process is actually prompting for an account | |
1264 ;; password. | |
30459 | 1265 |
28210 | 1266 (defun ange-ftp-set-account (host user account) |
1267 "For a given HOST and USER, set or change the associated ACCOUNT password." | |
1268 (interactive (list (read-string "Host: ") | |
1269 (read-string "User: ") | |
1270 (read-passwd "Account password: "))) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1271 (puthash (ange-ftp-generate-passwd-key host user) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1272 account ange-ftp-account-hashtable)) |
28210 | 1273 |
1274 (defun ange-ftp-get-account (host user) | |
1275 "Given a HOST and USER, return the FTP account." | |
1276 (ange-ftp-parse-netrc) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1277 (or (gethash (ange-ftp-generate-passwd-key host user) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1278 ange-ftp-account-hashtable) |
28210 | 1279 (and (stringp ange-ftp-default-user) |
1280 (string-equal user ange-ftp-default-user) | |
1281 ange-ftp-default-account) | |
1282 (and (stringp ange-ftp-netrc-default-user) | |
1283 (string-equal user ange-ftp-netrc-default-user) | |
1284 ange-ftp-netrc-default-account))) | |
1285 | |
1286 ;;;; ------------------------------------------------------------ | |
1287 ;;;; ~/.netrc support | |
1288 ;;;; ------------------------------------------------------------ | |
1289 | |
1290 (defun ange-ftp-chase-symlinks (file) | |
1291 "Return the filename that FILE references, following all symbolic links." | |
1292 (let (temp) | |
1293 (while (setq temp (ange-ftp-real-file-symlink-p file)) | |
1294 (setq file | |
1295 (if (file-name-absolute-p temp) | |
1296 temp | |
65762
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
1297 ;; 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
|
1298 ;; It would fail when `a/b/..' != `a', tho. --Stef |
28210 | 1299 (concat (file-name-directory file) temp))))) |
1300 file) | |
1301 | |
1302 ;; Move along current line looking for the value of the TOKEN. | |
1303 ;; Valid separators between TOKEN and its value are commas and | |
1304 ;; whitespace. Second arg LIMIT is a limit for the search. | |
1305 | |
1306 (defun ange-ftp-parse-netrc-token (token limit) | |
1307 (if (search-forward token limit t) | |
1308 (let (beg) | |
1309 (skip-chars-forward ", \t\r\n" limit) | |
1310 (if (eq (following-char) ?\") ;quoted token value | |
1311 (progn (forward-char 1) | |
1312 (setq beg (point)) | |
1313 (skip-chars-forward "^\"" limit) | |
1314 (forward-char 1) | |
1315 (buffer-substring beg (1- (point)))) | |
1316 (setq beg (point)) | |
1317 (skip-chars-forward "^, \t\r\n" limit) | |
1318 (buffer-substring beg (point)))))) | |
1319 | |
1320 ;; Extract the values for the tokens `machine', `login', | |
1321 ;; `password' and `account' in the current buffer. If successful, | |
1322 ;; record the information found. | |
1323 | |
1324 (defun ange-ftp-parse-netrc-group () | |
1325 (let ((start (point)) | |
1326 (end (save-excursion | |
1327 (if (looking-at "machine\\>") | |
1328 ;; Skip `machine' and the machine name that follows. | |
1329 (progn | |
1330 (skip-chars-forward "^ \t\r\n") | |
1331 (skip-chars-forward " \t\r\n") | |
1332 (skip-chars-forward "^ \t\r\n")) | |
1333 ;; Skip `default'. | |
1334 (skip-chars-forward "^ \t\r\n")) | |
1335 ;; Find start of the next `machine' or `default' | |
1336 ;; or the end of the buffer. | |
1337 (if (re-search-forward "machine\\>\\|default\\>" nil t) | |
1338 (match-beginning 0) | |
1339 (point-max)))) | |
1340 machine login password account) | |
1341 (setq machine (ange-ftp-parse-netrc-token "machine" end) | |
1342 login (ange-ftp-parse-netrc-token "login" end) | |
1343 password (ange-ftp-parse-netrc-token "password" end) | |
1344 account (ange-ftp-parse-netrc-token "account" end)) | |
1345 (if (and machine login) | |
1346 ;; found a `machine` token. | |
1347 (progn | |
1348 (ange-ftp-set-user machine login) | |
1349 (ange-ftp-set-passwd machine login password) | |
1350 (and account | |
1351 (ange-ftp-set-account machine login account))) | |
1352 (goto-char start) | |
1353 (if (search-forward "default" end t) | |
1354 ;; found a `default' token | |
1355 (progn | |
1356 (setq login (ange-ftp-parse-netrc-token "login" end) | |
1357 password (ange-ftp-parse-netrc-token "password" end) | |
1358 account (ange-ftp-parse-netrc-token "account" end)) | |
1359 (and login | |
1360 (setq ange-ftp-netrc-default-user login)) | |
1361 (and password | |
1362 (setq ange-ftp-netrc-default-password password)) | |
1363 (and account | |
1364 (setq ange-ftp-netrc-default-account account))))) | |
1365 (goto-char end))) | |
1366 | |
1367 ;; Read in ~/.netrc, if one exists. If ~/.netrc file exists and has | |
1368 ;; the correct permissions then extract the \`machine\', \`login\', | |
1369 ;; \`password\' and \`account\' information from within. | |
1370 | |
1371 (defun ange-ftp-parse-netrc () | |
1372 ;; We set this before actually doing it to avoid the possibility | |
1373 ;; of an infinite loop if ange-ftp-netrc-filename is an FTP file. | |
1374 (interactive) | |
1375 (let (file attr) | |
1376 (let ((default-directory "/")) | |
1377 (setq file (ange-ftp-chase-symlinks | |
1378 (ange-ftp-real-expand-file-name ange-ftp-netrc-filename))) | |
1379 (setq attr (ange-ftp-real-file-attributes file))) | |
1380 (if (and attr ; file exists. | |
1381 (not (equal (nth 5 attr) ange-ftp-netrc-modtime))) ; file changed | |
1382 (save-match-data | |
1383 (if (or ange-ftp-disable-netrc-security-check | |
1384 (and (eq (nth 2 attr) (user-uid)) ; Same uids. | |
1385 (string-match ".r..------" (nth 8 attr)))) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
1386 (with-current-buffer |
28210 | 1387 ;; we are cheating a bit here. I'm trying to do the equivalent |
1388 ;; of find-file on the .netrc file, but then nuke it afterwards. | |
1389 ;; with the bit of logic below we should be able to have | |
1390 ;; encrypted .netrc files. | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
1391 (generate-new-buffer "*ftp-.netrc*") |
28210 | 1392 (ange-ftp-real-insert-file-contents file) |
1393 (setq buffer-file-name file) | |
1394 (setq default-directory (file-name-directory file)) | |
1395 (normal-mode t) | |
46178
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
1396 (run-hooks 'find-file-hook) |
28210 | 1397 (setq buffer-file-name nil) |
1398 (goto-char (point-min)) | |
1399 (skip-chars-forward " \t\r\n") | |
1400 (while (not (eobp)) | |
1401 (ange-ftp-parse-netrc-group)) | |
1402 (kill-buffer (current-buffer))) | |
1403 (ange-ftp-message "%s either not owned by you or badly protected." | |
1404 ange-ftp-netrc-filename) | |
1405 (sit-for 1)) | |
1406 (setq ange-ftp-netrc-modtime (nth 5 attr)))))) | |
1407 | |
1408 ;; Return a list of prefixes of the form 'user@host:' to be used when | |
1409 ;; completion is done in the root directory. | |
1410 | |
1411 (defun ange-ftp-generate-root-prefixes () | |
1412 (ange-ftp-parse-netrc) | |
1413 (save-match-data | |
1414 (let (res) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1415 (maphash |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1416 (lambda (key value) |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
1417 (if (string-match "\\`[^/]*\\(/\\).*\\'" key) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1418 (let ((host (substring key 0 (match-beginning 1))) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1419 (user (substring key (match-end 1)))) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1420 (push (concat user "@" host ":") res)))) |
28210 | 1421 ange-ftp-passwd-hashtable) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1422 (maphash |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1423 (lambda (host user) (push (concat host ":") res)) |
28210 | 1424 ange-ftp-user-hashtable) |
1425 (or res (list nil))))) | |
1426 | |
1427 ;;;; ------------------------------------------------------------ | |
1428 ;;;; Remote file name syntax support. | |
1429 ;;;; ------------------------------------------------------------ | |
1430 | |
1431 (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
|
1432 "Extract the Nth FTP file name component from NS." |
30459 | 1433 `(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
|
1434 (match-string elt ,name))) |
28210 | 1435 |
1436 (defvar ange-ftp-ftp-name-arg "") | |
1437 (defvar ange-ftp-ftp-name-res nil) | |
1438 | |
1439 ;; Parse NAME according to `ange-ftp-name-format' (which see). | |
1440 ;; Returns a list (HOST USER NAME), or nil if NAME does not match the format. | |
1441 (defun ange-ftp-ftp-name (name) | |
1442 (if (string-equal name ange-ftp-ftp-name-arg) | |
1443 ange-ftp-ftp-name-res | |
1444 (setq ange-ftp-ftp-name-arg name | |
1445 ange-ftp-ftp-name-res | |
1446 (save-match-data | |
1447 (if (posix-string-match (car ange-ftp-name-format) name) | |
1448 (let* ((ns (cdr ange-ftp-name-format)) | |
1449 (host (ange-ftp-ftp-name-component 0 ns name)) | |
1450 (user (ange-ftp-ftp-name-component 1 ns name)) | |
1451 (name (ange-ftp-ftp-name-component 2 ns name))) | |
1452 (if (zerop (length user)) | |
1453 (setq user (ange-ftp-get-user host))) | |
1454 (list host user name)) | |
1455 nil))))) | |
1456 | |
1457 ;; Take a FULLNAME that matches according to ange-ftp-name-format and | |
1458 ;; replace the name component with NAME. | |
1459 (defun ange-ftp-replace-name-component (fullname name) | |
1460 (save-match-data | |
1461 (if (posix-string-match (car ange-ftp-name-format) fullname) | |
1462 (let* ((ns (cdr ange-ftp-name-format)) | |
1463 (elt (nth 2 ns))) | |
1464 (concat (substring fullname 0 (match-beginning elt)) | |
1465 name | |
1466 (substring fullname (match-end elt))))))) | |
1467 | |
1468 ;;;; ------------------------------------------------------------ | |
1469 ;;;; Miscellaneous utils. | |
1470 ;;;; ------------------------------------------------------------ | |
1471 | |
1472 ;; (setq ange-ftp-tmp-keymap (make-sparse-keymap)) | |
1473 ;; (define-key ange-ftp-tmp-keymap "\C-m" 'exit-minibuffer) | |
1474 | |
1475 (defun ange-ftp-repaint-minibuffer () | |
1476 "Clear any existing minibuffer message; let the minibuffer contents show." | |
1477 (message nil)) | |
1478 | |
1479 ;; Return the name of the buffer that collects output from the ftp process | |
1480 ;; connected to the given HOST and USER pair. | |
1481 (defun ange-ftp-ftp-process-buffer (host user) | |
1482 (concat "*ftp " user "@" host "*")) | |
1483 | |
1484 ;; Display the last chunk of output from the ftp process for the given HOST | |
1485 ;; USER pair, and signal an error including MSG in the text. | |
1486 (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
|
1487 (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
|
1488 (let ((cur (selected-window)) |
abb0fb200345
(ange-ftp-error): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51799
diff
changeset
|
1489 (pop-up-windows t)) |
abb0fb200345
(ange-ftp-error): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51799
diff
changeset
|
1490 (pop-to-buffer |
abb0fb200345
(ange-ftp-error): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51799
diff
changeset
|
1491 (get-buffer-create |
abb0fb200345
(ange-ftp-error): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51799
diff
changeset
|
1492 (ange-ftp-ftp-process-buffer host user))) |
abb0fb200345
(ange-ftp-error): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51799
diff
changeset
|
1493 (goto-char (point-max)) |
abb0fb200345
(ange-ftp-error): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51799
diff
changeset
|
1494 (select-window cur)) |
abb0fb200345
(ange-ftp-error): Add save-excursion.
Richard M. Stallman <rms@gnu.org>
parents:
51799
diff
changeset
|
1495 (signal 'ftp-error (list (format "FTP Error: %s" msg))))) |
28210 | 1496 |
1497 (defun ange-ftp-set-buffer-mode () | |
1498 "Set correct modes for the current buffer if visiting a remote file." | |
1499 (if (and (stringp buffer-file-name) | |
1500 (ange-ftp-ftp-name buffer-file-name)) | |
1501 (auto-save-mode ange-ftp-auto-save))) | |
1502 | |
1503 (defun ange-ftp-kill-ftp-process (&optional buffer) | |
1504 "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
|
1505 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
|
1506 then kill the related FTP process." |
28210 | 1507 (interactive "bKill FTP process associated with buffer: ") |
1508 (if (null buffer) | |
1509 (setq buffer (current-buffer)) | |
1510 (setq buffer (get-buffer buffer))) | |
1511 (let ((file (or (buffer-file-name buffer) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
1512 (with-current-buffer buffer default-directory)))) |
28210 | 1513 (if file |
1514 (let ((parsed (ange-ftp-ftp-name (expand-file-name file)))) | |
1515 (if parsed | |
1516 (let ((host (nth 0 parsed)) | |
1517 (user (nth 1 parsed))) | |
1518 (kill-buffer (get-buffer (ange-ftp-ftp-process-buffer host user))))))))) | |
1519 | |
1520 (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
|
1521 "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
|
1522 ;; 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
|
1523 ;; 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
|
1524 ;; 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
|
1525 ;; 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
|
1526 (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
|
1527 (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
|
1528 "")) |
28210 | 1529 |
1530 (defun ange-ftp-barf-if-not-directory (directory) | |
1531 (or (file-directory-p directory) | |
1532 (signal 'file-error | |
1533 (list "Opening directory" | |
1534 (if (file-exists-p directory) | |
1535 "not a directory" | |
1536 "no such file or directory") | |
1537 directory)))) | |
1538 | |
1539 ;;;; ------------------------------------------------------------ | |
1540 ;;;; FTP process filter support. | |
1541 ;;;; ------------------------------------------------------------ | |
1542 | |
1543 (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
|
1544 "Look at the given LINE from the FTP process PROC. |
28210 | 1545 Try to categorize it into one of four categories: |
1546 good, skip, fatal, or unknown." | |
1547 (cond ((string-match ange-ftp-xfer-size-msgs line) | |
1548 (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
|
1549 (/ (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
|
1550 1024))) |
28210 | 1551 ((string-match ange-ftp-skip-msgs line) |
1552 t) | |
1553 ((string-match ange-ftp-good-msgs line) | |
1554 (setq ange-ftp-process-busy nil | |
1555 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
|
1556 ange-ftp-pending-error-line nil |
28210 | 1557 ange-ftp-process-result-line line)) |
1558 ;; Check this before checking for errors. | |
1559 ;; Otherwise the last line of these three seems to be an error: | |
1560 ;; 230-see a significant impact from the move. For those of you who can't | |
1561 ;; 230-use DNS to resolve hostnames and get an error message like | |
1562 ;; 230-"ftp.stsci.edu: unknown host", the new IP address will be... | |
1563 ((string-match ange-ftp-multi-msgs line) | |
1564 (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
|
1565 ((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
|
1566 ;; 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
|
1567 ;; 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
|
1568 ;; 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
|
1569 (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
|
1570 t) |
28210 | 1571 ((string-match ange-ftp-fatal-msgs line) |
1572 (delete-process proc) | |
1573 (setq ange-ftp-process-busy nil | |
1574 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
|
1575 (ange-ftp-process-multi-skip |
28210 | 1576 t) |
1577 (t | |
1578 (setq ange-ftp-process-busy nil | |
1579 ange-ftp-process-result-line line)))) | |
1580 | |
1581 (defun ange-ftp-set-xfer-size (host user bytes) | |
1582 "Set the size of the next FTP transfer in bytes." | |
1583 (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
|
1584 (when proc |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1585 (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
|
1586 (when buf |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1587 (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
|
1588 (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
|
1589 ;; 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
|
1590 (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
|
1591 (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
|
1592 (/ bytes 1024))))))))) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1593 |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1594 (defun ange-ftp-process-handle-hash (string) |
28210 | 1595 "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
|
1596 (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
|
1597 (substring string (match-end 0))) |
28210 | 1598 ange-ftp-hash-mark-count (+ (- (match-end 0) |
1599 (match-beginning 0)) | |
1600 ange-ftp-hash-mark-count)) | |
1601 (and ange-ftp-hash-mark-unit | |
1602 ange-ftp-process-msg | |
1603 ange-ftp-process-verbose | |
1604 (not (eq (selected-window) (minibuffer-window))) | |
1605 (not (boundp 'search-message)) ;screws up isearch otherwise | |
1606 (not cursor-in-echo-area) ;screws up y-or-n-p otherwise | |
1607 (let ((kbytes (ash (* ange-ftp-hash-mark-unit | |
1608 ange-ftp-hash-mark-count) | |
1609 -6))) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1610 (if (zerop ange-ftp-xfer-size) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1611 (ange-ftp-message "%s...%dk" ange-ftp-process-msg kbytes) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1612 (let ((percent (/ (* 100 kbytes) ange-ftp-xfer-size))) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1613 ;; cut out the redisplay of identical %-age messages. |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1614 (unless (eq percent ange-ftp-last-percent) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1615 (setq ange-ftp-last-percent percent) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1616 (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
|
1617 string) |
28210 | 1618 |
1619 ;; Call the function specified by CONT. CONT can be either a function | |
1620 ;; or a list of a function and some args. The first two parameters | |
1621 ;; passed to the function will be RESULT and LINE. The remaining args | |
1622 ;; will be taken from CONT if a list was passed. | |
1623 | |
1624 (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
|
1625 (when cont |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1626 (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
|
1627 (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
|
1628 (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
|
1629 (funcall cont result line)))) |
28210 | 1630 |
1631 ;; Build up a complete line of output from the ftp PROCESS and pass it | |
1632 ;; on to ange-ftp-process-handle-line to deal with. | |
1633 | |
1634 (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
|
1635 ;; Eliminate nulls. |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1636 (while (string-match "\000+" str) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1637 (setq str (replace-match "" nil nil str))) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1638 |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1639 ;; 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
|
1640 (when (buffer-live-p (process-buffer proc)) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1641 (with-current-buffer (process-buffer proc) |
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 ;; handle hash mark printing |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1644 (and ange-ftp-process-busy |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1645 (string-match "^#+$" str) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1646 (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
|
1647 (comint-output-filter proc str) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1648 ;; 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
|
1649 (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
|
1650 (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
|
1651 (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
|
1652 (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
|
1653 str)) |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1654 |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1655 ;; 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
|
1656 ;; 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
|
1657 (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
|
1658 (process-send-string proc "\n"))) |
65516
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1659 (while (and ange-ftp-process-busy |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1660 (string-match "\n" ange-ftp-process-string)) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1661 (let ((line (substring ange-ftp-process-string |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1662 0 |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1663 (match-beginning 0))) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1664 (seen-prompt nil)) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1665 (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
|
1666 (match-end 0))) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1667 (while (string-match "\\`ftp> *" line) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1668 (setq seen-prompt t) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1669 (setq line (substring line (match-end 0)))) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1670 (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
|
1671 (ange-ftp-process-handle-line line proc) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1672 ;; 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
|
1673 ;; 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
|
1674 ;; 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
|
1675 (delete-process proc) |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1676 (setq ange-ftp-process-busy nil |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1677 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
|
1678 |
5fd07f61ee51
(ange-ftp-process-filter): Revert to ^#+$.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64906
diff
changeset
|
1679 ;; 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
|
1680 ;; actions. |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1681 (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
|
1682 ;; 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
|
1683 (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
|
1684 |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1685 ;; 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
|
1686 (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
|
1687 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
|
1688 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
|
1689 (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
|
1690 (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
|
1691 (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
|
1692 |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1693 ;; 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
|
1694 ;; 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
|
1695 (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
|
1696 (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
|
1697 (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
|
1698 (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
|
1699 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
|
1700 ange-ftp-process-result-line))))))) |
28210 | 1701 |
1702 (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
|
1703 "When FTP process changes state, nuke all file-entries in cache." |
28210 | 1704 (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
|
1705 (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
|
1706 (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
|
1707 (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
|
1708 (ange-ftp-wipe-file-entries host user)))) |
28210 | 1709 (setq ange-ftp-ls-cache-file nil)) |
1710 | |
1711 ;;;; ------------------------------------------------------------ | |
1712 ;;;; Gateway support. | |
1713 ;;;; ------------------------------------------------------------ | |
1714 | |
1715 (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
|
1716 "Return whether to access this HOST via a normal (non-smart) gateway." |
28210 | 1717 ;; yes, I know that I could simplify the following expression, but it is |
1718 ;; clearer (to me at least) this way. | |
1719 (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
|
1720 (not (string-match-p ange-ftp-local-host-regexp host)))) |
28210 | 1721 |
1722 (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
|
1723 "Returns whether to access this HOST via a smart gateway." |
28210 | 1724 (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
|
1725 (not (string-match-p ange-ftp-local-host-regexp host)))) |
28210 | 1726 |
1727 | |
1728 ;;; ------------------------------------------------------------ | |
1729 ;;; Temporary file location and deletion... | |
1730 ;;; ------------------------------------------------------------ | |
1731 | |
1732 (defun ange-ftp-make-tmp-name (host) | |
1733 "This routine will return the name of a new file." | |
1734 (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
|
1735 ange-ftp-gateway-tmp-name-template |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
1736 ange-ftp-tmp-name-template))) |
28210 | 1737 |
108244
2ee48fcc701c
Add FORCE argument to `delete-file'.
Michael Albinus <michael.albinus@gmx.de>
parents:
108077
diff
changeset
|
1738 (defun ange-ftp-del-tmp-name (filename) |
2ee48fcc701c
Add FORCE argument to `delete-file'.
Michael Albinus <michael.albinus@gmx.de>
parents:
108077
diff
changeset
|
1739 "Force to delete temporary file." |
108806
511da81b16c5
Change delete-by-moving-to-trash so Lisp calls explicitly request trashing.
Chong Yidong <cyd@stupidchicken.com>
parents:
108244
diff
changeset
|
1740 (delete-file filename)) |
108244
2ee48fcc701c
Add FORCE argument to `delete-file'.
Michael Albinus <michael.albinus@gmx.de>
parents:
108077
diff
changeset
|
1741 |
28210 | 1742 |
1743 ;;;; ------------------------------------------------------------ | |
1744 ;;;; Interactive gateway program support. | |
1745 ;;;; ------------------------------------------------------------ | |
1746 | |
1747 (defvar ange-ftp-gwp-running t) | |
1748 (defvar ange-ftp-gwp-status nil) | |
1749 | |
1750 (defun ange-ftp-gwp-sentinel (proc str) | |
1751 (setq ange-ftp-gwp-running nil)) | |
1752 | |
1753 (defun ange-ftp-gwp-filter (proc str) | |
1754 (comint-output-filter proc str) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
1755 (with-current-buffer (process-buffer proc) |
28210 | 1756 ;; Replace STR by the result of the comint processing. |
1757 (setq str (buffer-substring comint-last-output-start (process-mark proc)))) | |
1758 (cond ((string-match "login: *$" str) | |
62460
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1759 (process-send-string proc |
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1760 (concat |
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1761 (let ((ange-ftp-default-user t)) |
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1762 (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
|
1763 "\n"))) |
28210 | 1764 ((string-match "Password: *$" str) |
62460
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1765 (process-send-string proc |
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1766 (concat |
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1767 (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
|
1768 (ange-ftp-get-user |
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1769 ange-ftp-gateway-host)) |
5bdce92e5771
Replace `send-string' by `process-send-string'.
Juanma Barranquero <lekktu@gmail.com>
parents:
62437
diff
changeset
|
1770 "\n"))) |
28210 | 1771 ((string-match ange-ftp-gateway-fatal-msgs str) |
1772 (delete-process proc) | |
1773 (setq ange-ftp-gwp-running nil)) | |
1774 ((string-match ange-ftp-gateway-prompt-pattern str) | |
1775 (setq ange-ftp-gwp-running nil | |
1776 ange-ftp-gwp-status t)))) | |
1777 | |
1778 (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
|
1779 "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
|
1780 (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
|
1781 ;; 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
|
1782 ;; 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
|
1783 (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
|
1784 (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
|
1785 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
|
1786 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
|
1787 (ftp (mapconcat 'identity args " "))) |
56765
3c6aa215e03f
(ange-ftp-gwp-start, ange-ftp-nslookup-host)
Richard M. Stallman <rms@gnu.org>
parents:
56742
diff
changeset
|
1788 (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
|
1789 (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
|
1790 (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
|
1791 (with-current-buffer (process-buffer proc) |
28210 | 1792 (goto-char (point-max)) |
1793 (set-marker (process-mark proc) (point))) | |
1794 (setq ange-ftp-gwp-running t | |
1795 ange-ftp-gwp-status nil) | |
1796 (ange-ftp-message "Connecting to gateway %s..." ange-ftp-gateway-host) | |
1797 (while ange-ftp-gwp-running ;perform login sequence | |
1798 (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
|
1799 (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
|
1800 (ange-ftp-error host user "unable to login to gateway")) |
28210 | 1801 (ange-ftp-message "Connecting to gateway %s...done" ange-ftp-gateway-host) |
1802 (setq ange-ftp-gwp-running t | |
1803 ange-ftp-gwp-status nil) | |
1804 (process-send-string proc ange-ftp-gateway-setup-term-command) | |
1805 (while ange-ftp-gwp-running ;zap ^M's and double echoing. | |
1806 (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
|
1807 (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
|
1808 (ange-ftp-error host user "unable to set terminal modes on gateway")) |
28210 | 1809 (setq ange-ftp-gwp-running t |
1810 ange-ftp-gwp-status nil) | |
1811 (process-send-string proc (concat "exec " ftp "\n")) ;spawn ftp process | |
1812 proc)) | |
1813 | |
1814 ;;;; ------------------------------------------------------------ | |
1815 ;;;; Support for sending commands to the ftp process. | |
1816 ;;;; ------------------------------------------------------------ | |
1817 | |
1818 (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
|
1819 "Low-level routine to send the given FTP CMD to the FTP process PROC. |
28210 | 1820 MSG is an optional message to output before and after the command. |
30459 | 1821 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
|
1822 and some arguments. The function will be called when the FTP command |
30459 | 1823 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
|
1824 If CONT is nil then this routine will return (RESULT . LINE) where RESULT |
28210 | 1825 is whether the command was successful, and LINE is the line from the FTP |
1826 process that caused the command to complete. | |
1827 If NOWAIT is given then the routine will return immediately the command has | |
1828 been queued with no result. CONT will still be called, however." | |
1829 (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
|
1830 (with-current-buffer (process-buffer proc) |
28210 | 1831 (ange-ftp-wait-not-busy proc) |
1832 (setq ange-ftp-process-string "" | |
1833 ange-ftp-process-result-line "" | |
1834 ange-ftp-process-busy t | |
1835 ange-ftp-process-result nil | |
1836 ange-ftp-process-multi-skip nil | |
1837 ange-ftp-process-msg msg | |
1838 ange-ftp-process-continue cont | |
1839 ange-ftp-hash-mark-count 0 | |
1840 ange-ftp-last-percent -1 | |
1841 cmd (concat cmd "\n")) | |
1842 (and msg ange-ftp-process-verbose (ange-ftp-message "%s..." msg)) | |
1843 (goto-char (point-max)) | |
1844 (move-marker comint-last-input-start (point)) | |
1845 ;; don't insert the password into the buffer on the USER command. | |
1846 (save-match-data | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
1847 (if (string-match "\\`user \"[^\"]*\"" cmd) |
28210 | 1848 (insert (substring cmd 0 (match-end 0)) " Turtle Power!\n") |
1849 (insert cmd))) | |
1850 (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
|
1851 (process-send-string proc cmd) |
28210 | 1852 (set-marker (process-mark proc) (point)) |
1853 (if nowait | |
1854 nil | |
1855 (ange-ftp-wait-not-busy proc) | |
1856 (if cont | |
1857 nil ;cont has already been called | |
1858 (cons ange-ftp-process-result ange-ftp-process-result-line)))))) | |
1859 | |
1860 ;; Wait for the ange-ftp process PROC not to be busy. | |
1861 (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
|
1862 (with-current-buffer (process-buffer proc) |
28210 | 1863 (condition-case nil |
1864 ;; This is a kludge to let user quit in case ftp gets hung. | |
1865 ;; It matters because this function can be called from the filter. | |
1866 ;; It is bad to allow quitting in a filter, but getting hung | |
1867 ;; is worse. By binding quit-flag to nil, we might avoid | |
1868 ;; most of the probability of getting screwed because the user | |
1869 ;; wants to quit some command. | |
1870 (let ((quit-flag nil) | |
1871 (inhibit-quit nil)) | |
1872 (while ange-ftp-process-busy | |
1873 (accept-process-output proc))) | |
1874 (quit | |
1875 ;; If the user does quit out of this, | |
1876 ;; kill the process. That stops any transfer in progress. | |
1877 ;; The next operation will open a new ftp connection. | |
1878 (delete-process proc) | |
1879 (signal 'quit nil))))) | |
1880 | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1881 (defun ange-ftp-nslookup-host (hostname) |
28210 | 1882 "Attempt to resolve the given HOSTNAME using nslookup if possible." |
1883 (interactive "sHost: ") | |
1884 (if ange-ftp-nslookup-program | |
1885 (let ((default-directory | |
1886 (if (file-accessible-directory-p default-directory) | |
1887 default-directory | |
1888 exec-directory)) | |
1889 ;; It would be nice to make process-connection-type nil, | |
1890 ;; but that doesn't work: ftp never responds. | |
1891 ;; Can anyone find a fix for that? | |
1892 (proc (let ((process-connection-type t)) | |
1893 (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
|
1894 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
|
1895 (res hostname)) |
56765
3c6aa215e03f
(ange-ftp-gwp-start, ange-ftp-nslookup-host)
Richard M. Stallman <rms@gnu.org>
parents:
56742
diff
changeset
|
1896 (set-process-query-on-exit-flag proc nil) |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
1897 (with-current-buffer (process-buffer proc) |
28210 | 1898 (while (memq (process-status proc) '(run open)) |
1899 (accept-process-output proc)) | |
1900 (goto-char (point-min)) | |
1901 (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
|
1902 (setq res (match-string 1))) |
28210 | 1903 (kill-buffer (current-buffer))) |
1904 res) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
1905 hostname)) |
28210 | 1906 |
1907 (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
|
1908 "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
|
1909 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
|
1910 on the gateway machine to do the FTP instead." |
28210 | 1911 (let* ((use-gateway (ange-ftp-use-gateway-p host)) |
1912 (use-smart-ftp (and (not ange-ftp-gateway-host) | |
1913 (ange-ftp-use-smart-gateway-p host))) | |
1914 (ftp-prog (if (or use-gateway | |
30459 | 1915 use-smart-ftp) |
28210 | 1916 ange-ftp-gateway-ftp-program-name |
1917 ange-ftp-ftp-program-name)) | |
1918 (args (append (list ftp-prog) ange-ftp-ftp-program-args)) | |
1919 ;; Without the following binding, ange-ftp-start-process | |
1920 ;; recurses on file-accessible-directory-p, since it needs to | |
1921 ;; restart its process in order to determine anything about | |
1922 ;; default-directory. | |
1923 (file-name-handler-alist) | |
1924 (default-directory | |
1925 (if (file-accessible-directory-p default-directory) | |
1926 default-directory | |
1927 exec-directory)) | |
1928 proc) | |
1929 ;; It would be nice to make process-connection-type nil, | |
1930 ;; but that doesn't work: ftp never responds. | |
1931 ;; Can anyone find a fix for that? | |
1932 (let ((process-connection-type t) | |
53415
d2a77d389b0e
(ange-ftp-start-process): Copy the environment.
Richard M. Stallman <rms@gnu.org>
parents:
53388
diff
changeset
|
1933 ;; 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
|
1934 (process-environment (copy-tree process-environment)) |
28210 | 1935 (buffer (get-buffer-create name))) |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
1936 (with-current-buffer buffer |
28210 | 1937 (internal-ange-ftp-mode)) |
1938 ;; This tells GNU ftp not to output any fancy escape sequences. | |
1939 (setenv "TERM" "dumb") | |
1940 (if use-gateway | |
1941 (if ange-ftp-gateway-program-interactive | |
1942 (setq proc (ange-ftp-gwp-start host user name args)) | |
1943 (setq proc (apply 'start-process name name | |
1944 (append (list ange-ftp-gateway-program | |
1945 ange-ftp-gateway-host) | |
1946 args)))) | |
1947 (setq proc (apply 'start-process name name args)))) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
1948 (with-current-buffer (process-buffer proc) |
28210 | 1949 (goto-char (point-max)) |
1950 (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
|
1951 (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
|
1952 (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
|
1953 (set-process-filter proc 'ange-ftp-process-filter) |
28210 | 1954 ;; On Windows, the standard ftp client buffers its output (because |
1955 ;; stdout is a pipe handle) so the startup message may never appear: | |
1956 ;; `accept-process-output' at this point would hang indefinitely. | |
1957 ;; However, sending an innocuous command ("help foo") forces some | |
1958 ;; output that will be ignored, which is just as good. Once we | |
1959 ;; start sending normal commands, the output no longer appears to be | |
1960 ;; buffered, and everything works correctly. My guess is that the | |
1961 ;; output of interest is being sent to stderr which is not buffered. | |
1962 (when (eq system-type 'windows-nt) | |
1963 ;; force ftp output to be treated as DOS text, otherwise the | |
1964 ;; output of "help foo" confuses the EOL detection logic. | |
1965 (set-process-coding-system proc 'raw-text-dos) | |
1966 (process-send-string proc "help foo\n")) | |
1967 (accept-process-output proc) ;wait for ftp startup message | |
1968 proc)) | |
1969 | |
104733
9902de48eab4
(internal-ange-ftp-mode): Use define-derived-mode.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
104552
diff
changeset
|
1970 (define-derived-mode internal-ange-ftp-mode comint-mode "Internal Ange-ftp" |
28210 | 1971 "Major mode for interacting with the FTP process. |
1972 | |
1973 \\{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
|
1974 (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
|
1975 (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
|
1976 (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
|
1977 (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
|
1978 (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
|
1979 (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
|
1980 (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
|
1981 (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
|
1982 (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
|
1983 (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
|
1984 (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
|
1985 (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
|
1986 (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
|
1987 (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
|
1988 (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
|
1989 (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
|
1990 (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
|
1991 (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
|
1992 (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
|
1993 ;; 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
|
1994 ;; 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
|
1995 (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
|
1996 (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
|
1997 (setq paragraph-start comint-prompt-regexp)) |
28210 | 1998 |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
1999 (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
|
2000 "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
|
2001 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
|
2002 :group 'ange-ftp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2003 :version "21.3" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2004 :type 'boolean) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2005 |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2006 (defun ange-ftp-smart-login (host user password account proc) |
28210 | 2007 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. |
2008 PROC is the FTP-client's process. This routine uses the smart-gateway | |
30459 | 2009 host specified in `ange-ftp-gateway-host'." |
28210 | 2010 (let ((result (ange-ftp-raw-send-cmd |
2011 proc | |
2012 (format "open %s %s" | |
2013 (ange-ftp-nslookup-host ange-ftp-gateway-host) | |
2014 ange-ftp-smart-gateway-port) | |
2015 (format "Opening FTP connection to %s via %s" | |
2016 host | |
2017 ange-ftp-gateway-host)))) | |
2018 (or (car result) | |
30459 | 2019 (ange-ftp-error host user |
28210 | 2020 (concat "OPEN request failed: " |
2021 (cdr result)))) | |
2022 (setq result (ange-ftp-raw-send-cmd | |
2023 proc (format "user \"%s\"@%s %s %s" | |
2024 user | |
2025 (ange-ftp-nslookup-host host) | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2026 password |
28210 | 2027 account) |
2028 (format "Logging in as user %s@%s" | |
2029 user host))) | |
2030 (or (car result) | |
2031 (progn | |
2032 (ange-ftp-set-passwd host user nil) ; reset password | |
2033 (ange-ftp-set-account host user nil) ; reset account | |
2034 (ange-ftp-error host user | |
2035 (concat "USER request failed: " | |
2036 (cdr result))))))) | |
2037 | |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2038 (defun ange-ftp-normal-login (host user password account proc) |
28210 | 2039 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. |
2040 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
|
2041 suffix of the form #PORT to specify a non-default port." |
28210 | 2042 (save-match-data |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2043 (string-match "\\`\\([^#]+\\)\\(#\\([0-9]+\\)\\)?\\'" host) |
28210 | 2044 (let* ((nshost (ange-ftp-nslookup-host (match-string 1 host))) |
2045 (port (match-string 3 host)) | |
2046 (result (ange-ftp-raw-send-cmd | |
2047 proc | |
2048 (if port | |
2049 (format "open %s %s" nshost port) | |
2050 (format "open %s" nshost)) | |
2051 (format "Opening FTP connection to %s" host)))) | |
2052 (or (car result) | |
2053 (ange-ftp-error host user | |
2054 (concat "OPEN request failed: " | |
2055 (cdr result)))) | |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2056 (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
|
2057 (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
|
2058 proc |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2059 (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
|
2060 ange-ftp-gateway-host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2061 (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
|
2062 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
|
2063 (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
|
2064 (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
|
2065 (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
|
2066 (skip ange-ftp-skip-msgs)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2067 (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
|
2068 "\\|^331 \\|^332 ")) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2069 (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
|
2070 (setq ange-ftp-skip-msgs |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2071 (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
|
2072 (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
|
2073 (setq ange-ftp-skip-msgs |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2074 (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
|
2075 (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
|
2076 proc |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2077 (format "quote \"USER %s\"" user) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2078 (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
|
2079 (and (car result) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2080 (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
|
2081 proc |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
2082 (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
|
2083 (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
|
2084 (and (car result) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2085 (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
|
2086 proc |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2087 (format "quote \"ACCT %s\"" account) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2088 (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
|
2089 )) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2090 (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
|
2091 ange-ftp-skip-msgs skip))) |
28210 | 2092 (or (car result) |
2093 (progn | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
2094 (ange-ftp-set-passwd host user nil) ;reset password. |
28210 | 2095 (ange-ftp-set-account host user nil) ;reset account. |
2096 (ange-ftp-error host user | |
2097 (concat "USER request failed: " | |
2098 (cdr result)))))))) | |
2099 | |
2100 ;; ange@hplb.hpl.hp.com says this should not be changed. | |
2101 (defvar ange-ftp-hash-mark-msgs | |
2102 "[hH]ash mark [^0-9]*\\([0-9]+\\)" | |
2103 "*Regexp matching the FTP client's output upon doing a HASH command.") | |
2104 | |
2105 (defun ange-ftp-guess-hash-mark-size (proc) | |
2106 (if ange-ftp-send-hash | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
2107 (with-current-buffer (process-buffer proc) |
28210 | 2108 (let* ((status (ange-ftp-raw-send-cmd proc "hash")) |
2109 (line (cdr status))) | |
2110 (save-match-data | |
2111 (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
|
2112 (let ((size (string-to-number (match-string 1 line)))) |
28210 | 2113 (setq ange-ftp-ascii-hash-mark-size size |
2114 ange-ftp-hash-mark-unit (ash size -4)) | |
2115 | |
2116 ;; if a default value for this is set, use that value. | |
2117 (or ange-ftp-binary-hash-mark-size | |
2118 (setq ange-ftp-binary-hash-mark-size size))))))))) | |
2119 | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2120 (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
|
2121 |
28210 | 2122 (defun ange-ftp-get-process (host user) |
2123 "Return an FTP subprocess connected to HOST and logged in as USER. | |
2124 Create a new process if needed." | |
2125 (let* ((name (ange-ftp-ftp-process-buffer host user)) | |
2126 (proc (get-process name))) | |
2127 (if (and proc (memq (process-status proc) '(run open))) | |
2128 proc | |
2129 ;; Must delete dead process so that new process can reuse the name. | |
2130 (if proc (delete-process proc)) | |
2131 (let ((pass (ange-ftp-quote-string | |
2132 (ange-ftp-get-passwd host user))) | |
2133 (account (ange-ftp-quote-string | |
2134 (ange-ftp-get-account host user)))) | |
2135 ;; grab a suitable process. | |
2136 (setq proc (ange-ftp-start-process host user name)) | |
30459 | 2137 |
28210 | 2138 ;; login to FTP server. |
2139 (if (and (ange-ftp-use-smart-gateway-p host) | |
2140 ange-ftp-gateway-host) | |
2141 (ange-ftp-smart-login host user pass account proc) | |
2142 (ange-ftp-normal-login host user pass account proc)) | |
30459 | 2143 |
28210 | 2144 ;; Tell client to send back hash-marks as progress. It isn't usually |
2145 ;; fatal if this command fails. | |
2146 (ange-ftp-guess-hash-mark-size proc) | |
2147 | |
2148 ;; Guess at the host type. | |
2149 (ange-ftp-guess-host-type host user) | |
2150 | |
42393
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2151 ;; 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
|
2152 (let* ((case-fold-search t) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2153 (passive |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2154 (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
|
2155 'string-match) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2156 (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
|
2157 (if passive |
42801
b719a1276b31
(ange-ftp-passive-mode): New arg PROC.
Richard M. Stallman <rms@gnu.org>
parents:
42740
diff
changeset
|
2158 (ange-ftp-passive-mode proc passive))) |
28210 | 2159 |
2160 ;; Run any user-specified hooks. Note that proc, host and user are | |
2161 ;; 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
|
2162 (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
|
2163 (ange-ftp-this-host host)) |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
2164 (run-hooks 'ange-ftp-process-startup-hook))) |
28210 | 2165 proc))) |
2166 | |
42801
b719a1276b31
(ange-ftp-passive-mode): New arg PROC.
Richard M. Stallman <rms@gnu.org>
parents:
42740
diff
changeset
|
2167 (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
|
2168 (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
|
2169 (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
|
2170 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
|
2171 "Trying passive mode..." nil))) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2172 (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
|
2173 (error "Trying passive mode...failed"))) |
a31dc22699ed
(ange-ftp-allow-child-lookup): Always return nil.
Richard M. Stallman <rms@gnu.org>
parents:
42251
diff
changeset
|
2174 |
28210 | 2175 ;; Variables for caching host and host-type |
2176 (defvar ange-ftp-host-cache nil) | |
2177 (defvar ange-ftp-host-type-cache nil) | |
2178 | |
2179 ;; If ange-ftp-host-type is called with the optional user | |
2180 ;; argument, it will attempt to guess the host type by connecting | |
2181 ;; as user, if necessary. For efficiency, I have tried to give this | |
2182 ;; optional second argument only when necessary. Have I missed any calls | |
2183 ;; to ange-ftp-host-type where it should have been supplied? | |
2184 | |
2185 (defun ange-ftp-host-type (host &optional user) | |
2186 "Return a symbol which represents the type of the HOST given. | |
2187 If the optional argument USER is given, attempts to guess the | |
2188 host-type by logging in as USER." | |
2189 (cond ((null host) 'unix) | |
2190 ;; Return `unix' if HOST is nil, since that's the most vanilla | |
2191 ;; possible return value. | |
2192 ((eq host ange-ftp-host-cache) | |
2193 ange-ftp-host-type-cache) | |
2194 ;; Trigger an ftp connection, in case we need to guess at the host type. | |
2195 ((and user (ange-ftp-get-process host user) (eq host ange-ftp-host-cache)) | |
2196 ange-ftp-host-type-cache) | |
2197 (t | |
2198 (setq ange-ftp-host-cache host | |
2199 ange-ftp-host-type-cache | |
2200 (cond ((ange-ftp-dumb-unix-host host) | |
2201 'dumb-unix) | |
2202 ;; ((and (fboundp 'ange-ftp-vos-host) | |
2203 ;; (ange-ftp-vos-host host)) | |
2204 ;; 'vos) | |
2205 ((and (fboundp 'ange-ftp-vms-host) | |
2206 (ange-ftp-vms-host host)) | |
2207 'vms) | |
2208 ((and (fboundp 'ange-ftp-mts-host) | |
2209 (ange-ftp-mts-host host)) | |
2210 'mts) | |
2211 ((and (fboundp 'ange-ftp-cms-host) | |
2212 (ange-ftp-cms-host host)) | |
2213 'cms) | |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2214 ((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
|
2215 (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
|
2216 '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
|
2217 ((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
|
2218 (ange-ftp-bs2000-host host)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2219 'bs2000) |
28210 | 2220 (t |
2221 'unix)))))) | |
2222 | |
2223 ;; It would be nice to abstract the functions ange-ftp-TYPE-host and | |
2224 ;; ange-ftp-add-TYPE-host. The trick is to abstract these functions | |
2225 ;; without sacrificing speed. Also, having separate variables | |
2226 ;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to | |
2227 ;; set an alist to indicate that a host is of a given type. Even with | |
2228 ;; automatic host type recognition, setting a regexp is still a good idea | |
2229 ;; (for efficiency) if you log into a particular non-UNIX host frequently. | |
2230 | |
2231 (defvar ange-ftp-fix-name-func-alist nil | |
2232 "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
|
2233 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
|
2234 change a UNIX file name into a name more suitable for a host of type TYPE.") |
28210 | 2235 |
2236 (defvar ange-ftp-fix-dir-name-func-alist nil | |
2237 "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
|
2238 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
|
2239 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
|
2240 of type TYPE.") |
28210 | 2241 |
2242 ;; *** Perhaps the sense of this variable should be inverted, since there | |
2243 ;; *** is only 1 host type that can take ls-style listing options. | |
2244 (defvar ange-ftp-dumb-host-types '(dumb-unix) | |
2245 "List of host types that can't take UNIX ls-style listing options.") | |
2246 | |
2247 (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
|
2248 "Find an FTP process connected to HOST logged in as USER and send it CMD. |
28210 | 2249 MSG is an optional status message to be output before and after issuing the |
2250 command. | |
30459 | 2251 See the documentation for `ange-ftp-raw-send-cmd' for a description of CONT |
28210 | 2252 and NOWAIT." |
2253 ;; Handle conversion to remote file name syntax and remote ls option | |
2254 ;; capability. | |
2255 (let ((cmd0 (car cmd)) | |
2256 (cmd1 (nth 1 cmd)) | |
2257 (ange-ftp-this-user user) | |
2258 (ange-ftp-this-host host) | |
2259 (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
|
2260 cmd2 cmd3 host-type fix-name-func result) |
28210 | 2261 |
2262 (cond | |
30459 | 2263 |
28210 | 2264 ;; pwd case (We don't care what host-type.) |
2265 ((null cmd1)) | |
30459 | 2266 |
28210 | 2267 ;; cmd == 'dir "remote-name" "local-name" "ls-switches" |
2268 ((progn | |
2269 (setq cmd2 (nth 2 cmd) | |
2270 host-type (ange-ftp-host-type host user)) | |
2271 ;; This will trigger an FTP login, if one doesn't exist | |
2272 (eq cmd0 'dir)) | |
2273 (setq cmd1 (funcall | |
2274 (or (cdr (assq host-type ange-ftp-fix-dir-name-func-alist)) | |
2275 'identity) | |
2276 cmd1) | |
2277 cmd3 (nth 3 cmd)) | |
42740
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
2278 ;; 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
|
2279 ;; resolve symlinks to directories on SysV machines. (Sebastian will |
28210 | 2280 ;; be happy.) |
2281 (and (eq host-type 'unix) | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2282 (string-match "/\\'" cmd1) |
28210 | 2283 (not (string-match "R" cmd3)) |
2284 (setq cmd1 (concat cmd1 "."))) | |
2285 | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
2286 ;; Using "ls -flags foo" has several problems: |
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
2287 ;; - 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
|
2288 ;; 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
|
2289 ;; - 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
|
2290 ;; - 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
|
2291 ;; `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
|
2292 ;; 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
|
2293 |
28210 | 2294 ;; If the dir name contains a space, some ftp servers will |
2295 ;; refuse to list it. We instead change directory to the | |
2296 ;; directory in question and ls ".". | |
2297 (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
|
2298 ;; 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
|
2299 ;; 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
|
2300 (setq result (ange-ftp-cd host user (nth 1 cmd) 'noerror)) |
28210 | 2301 (setq cmd1 ".")) |
2302 | |
2303 ;; 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
|
2304 (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
|
2305 (setq cmd0 'ls) |
85b978f04df7
(ange-ftp-generate-root-prefixes)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45260
diff
changeset
|
2306 ;; 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
|
2307 ;; 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
|
2308 ;; 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
|
2309 ;; 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
|
2310 ;; 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
|
2311 ;; 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
|
2312 ;; 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
|
2313 ;; 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
|
2314 ;; `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
|
2315 ;; (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
|
2316 ;; 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
|
2317 ;; `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
|
2318 ;; 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
|
2319 ;; corresponding to the requested file. |
45432
85b978f04df7
(ange-ftp-generate-root-prefixes)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45260
diff
changeset
|
2320 (unless (equal cmd1 ".") |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
2321 (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
|
2322 (setq cmd1 cmd3))) |
30459 | 2323 |
28210 | 2324 ;; First argument is the remote name |
2325 ((progn | |
2326 (setq fix-name-func (or (cdr (assq host-type | |
2327 ange-ftp-fix-name-func-alist)) | |
2328 'identity)) | |
2329 (memq cmd0 '(get delete mkdir rmdir cd))) | |
2330 (setq cmd1 (funcall fix-name-func cmd1))) | |
2331 | |
2332 ;; 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
|
2333 ((or (memq cmd0 '(append put chmod)) |
105636
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
2334 (and (eq cmd0 'quote) (member cmd1 '("mdtm" "size")))) |
28210 | 2335 (setq cmd2 (funcall fix-name-func cmd2))) |
2336 ;; Both arguments are remote names | |
2337 ((eq cmd0 'rename) | |
2338 (setq cmd1 (funcall fix-name-func cmd1) | |
2339 cmd2 (funcall fix-name-func cmd2)))) | |
30459 | 2340 |
2341 ;; Turn the command into one long string | |
28210 | 2342 (setq cmd0 (symbol-name cmd0)) |
2343 (setq cmd (concat cmd0 | |
2344 (and cmd1 (concat " " cmd1)) | |
2345 (and cmd2 (concat " " cmd2)))) | |
2346 | |
2347 ;; 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
|
2348 (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
|
2349 ;; `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
|
2350 result |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2351 (let (afsc-result |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2352 afsc-line) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2353 (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
|
2354 (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
|
2355 cmd |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2356 msg |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2357 (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
|
2358 (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
|
2359 afsc-line line)) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2360 (if result (ange-ftp-call-cont cont result line) |
30459 | 2361 (ange-ftp-raw-send-cmd |
2362 (ange-ftp-get-process host user) | |
2363 cmd | |
2364 msg | |
2365 (list (lambda (result line cont) | |
2366 (or cont (setq afsc-result result | |
2367 afsc-line line)) | |
2368 (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
|
2369 cont) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2370 nowait))) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2371 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
|
2372 nowait) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2373 |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2374 (if nowait |
28210 | 2375 nil |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2376 (if cont |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2377 nil |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2378 (cons afsc-result afsc-line))))))) |
28210 | 2379 |
2380 ;; It might be nice to message users about the host type identified, | |
2381 ;; but there is so much other messaging going on, it would not be | |
2382 ;; seen. No point in slowing things down just so users can read | |
2383 ;; a host type message. | |
2384 | |
2385 (defconst ange-ftp-cms-name-template | |
2386 (concat | |
2387 "^[-A-Z0-9$*][-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?" | |
2388 "[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?\\.[0-9][0-9][0-9A-Z]$")) | |
2389 (defconst ange-ftp-vms-name-template | |
2390 "^[-A-Z0-9_$]+:\\[[-A-Z0-9_$]+\\(\\.[-A-Z0-9_$]+\\)*\\]$") | |
2391 (defconst ange-ftp-mts-name-template | |
2392 "^[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
|
2393 (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
|
2394 ":[A-Z0-9]+:" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2395 "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
|
2396 (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
|
2397 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2398 "\\$[A-Z0-9]*\\.") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2399 "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
|
2400 (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
|
2401 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2402 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
|
2403 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
|
2404 "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
|
2405 (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
|
2406 (concat "^" ange-ftp-bs2000-filename-prefix-regexp "$")) |
28210 | 2407 |
2408 (defun ange-ftp-guess-host-type (host user) | |
42706 | 2409 "Guess the host type of HOST. |
28210 | 2410 Works by doing a pwd and examining the directory syntax." |
2411 (let ((host-type (ange-ftp-host-type host)) | |
2412 (key (concat host "/" user "/~"))) | |
2413 (if (eq host-type 'unix) | |
2414 ;; Note that ange-ftp-host-type returns unix as the default value. | |
2415 (save-match-data | |
2416 (let* ((result (ange-ftp-get-pwd host user)) | |
2417 (dir (car result)) | |
2418 fix-name-func) | |
2419 (cond ((null dir) | |
2420 (message "Warning! Unable to get home directory") | |
2421 (sit-for 1) | |
2422 (if (string-match | |
2423 "^450 No current working directory defined$" | |
2424 (cdr result)) | |
30459 | 2425 |
28210 | 2426 ;; We'll assume that if pwd bombs with this |
2427 ;; error message, then it's CMS. | |
2428 (progn | |
2429 (ange-ftp-add-cms-host host) | |
2430 (setq ange-ftp-host-cache host | |
2431 ange-ftp-host-type-cache 'cms)))) | |
2432 | |
2433 ;; try for VMS | |
2434 ((string-match ange-ftp-vms-name-template dir) | |
2435 (ange-ftp-add-vms-host host) | |
2436 ;; The add-host functions clear the host type cache. | |
2437 ;; Therefore, need to set the cache afterwards. | |
2438 (setq ange-ftp-host-cache host | |
2439 ange-ftp-host-type-cache 'vms)) | |
2440 | |
2441 ;; try for MTS | |
2442 ((string-match ange-ftp-mts-name-template dir) | |
2443 (ange-ftp-add-mts-host host) | |
2444 (setq ange-ftp-host-cache host | |
2445 ange-ftp-host-type-cache 'mts)) | |
30459 | 2446 |
28210 | 2447 ;; try for CMS |
2448 ((string-match ange-ftp-cms-name-template dir) | |
2449 (ange-ftp-add-cms-host host) | |
2450 (setq ange-ftp-host-cache host | |
2451 ange-ftp-host-type-cache 'cms)) | |
2452 | |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2453 ;; try for BS2000-POSIX |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2454 ((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
|
2455 (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
|
2456 (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
|
2457 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
|
2458 ;; try for BS2000 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
2459 ((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
|
2460 (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
|
2461 (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
|
2462 (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
|
2463 ange-ftp-host-type-cache 'bs2000)) |
28210 | 2464 ;; assume UN*X |
2465 (t | |
2466 (setq ange-ftp-host-cache host | |
2467 ange-ftp-host-type-cache 'unix))) | |
2468 | |
2469 ;; Now that we have done a pwd, might as well put it in | |
2470 ;; the expand-dir hashtable. | |
2471 (let ((ange-ftp-this-user user) | |
2472 (ange-ftp-this-host host)) | |
2473 (setq fix-name-func (cdr (assq ange-ftp-host-type-cache | |
2474 ange-ftp-fix-name-func-alist))) | |
2475 (if fix-name-func | |
2476 (setq dir (funcall fix-name-func dir 'reverse)))) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2477 (puthash key dir ange-ftp-expand-dir-hashtable)))) |
28210 | 2478 |
2479 ;; In the special case of CMS make sure that know the | |
2480 ;; expansion of the home minidisk now, because we will | |
2481 ;; be doing a lot of cd's. | |
2482 (if (and (eq host-type 'cms) | |
2483 (not (ange-ftp-hash-entry-exists-p | |
2484 key ange-ftp-expand-dir-hashtable))) | |
2485 (let ((dir (car (ange-ftp-get-pwd host user)))) | |
2486 (if dir | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2487 (puthash key (concat "/" dir) ange-ftp-expand-dir-hashtable) |
28210 | 2488 (message "Warning! Unable to get home directory") |
2489 (sit-for 1)))))) | |
2490 | |
2491 | |
2492 ;;;; ------------------------------------------------------------ | |
2493 ;;;; Remote file and directory listing support. | |
2494 ;;;; ------------------------------------------------------------ | |
2495 | |
2496 ;; Returns whether HOST's FTP server doesn't like \'ls\' or \'dir\' commands | |
2497 ;; to take switch arguments. | |
2498 (defun ange-ftp-dumb-unix-host (host) | |
2499 (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
|
2500 (string-match-p ange-ftp-dumb-unix-host-regexp host))) |
28210 | 2501 |
2502 (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
|
2503 "Interactively add a given HOST to `ange-ftp-dumb-unix-host-regexp'." |
28210 | 2504 (interactive |
2505 (list (read-string "Host: " | |
2506 (let ((name (or (buffer-file-name) default-directory))) | |
2507 (and name (car (ange-ftp-ftp-name name))))))) | |
2508 (if (not (ange-ftp-dumb-unix-host host)) | |
2509 (setq ange-ftp-dumb-unix-host-regexp | |
2510 (concat "^" (regexp-quote host) "$" | |
2511 (and ange-ftp-dumb-unix-host-regexp "\\|") | |
2512 ange-ftp-dumb-unix-host-regexp) | |
2513 ange-ftp-host-cache nil))) | |
2514 | |
2515 (defvar ange-ftp-parse-list-func-alist nil | |
2516 "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
|
2517 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
|
2518 can parse the output from a DIR listing for a host of type TYPE.") |
28210 | 2519 |
2520 ;; With no-error nil, this function returns: | |
2521 ;; an error if file is not an ange-ftp-name | |
30459 | 2522 ;; (This should never happen.) |
28210 | 2523 ;; an error if either the listing is unreadable or there is an ftp error. |
2524 ;; the listing (a string), if everything works. | |
30459 | 2525 ;; |
28210 | 2526 ;; With no-error t, it returns: |
2527 ;; an error if not an ange-ftp-name | |
2528 ;; error if listing is unreadable (most likely caused by a slow connection) | |
2529 ;; nil if ftp error (this is because although asking to list a nonexistent | |
2530 ;; directory on a remote unix machine usually (except | |
2531 ;; maybe for dumb hosts) returns an ls error, but no | |
2532 ;; ftp error, if the same is done on a VMS machine, | |
2533 ;; an ftp error is returned. Need to trap the error | |
2534 ;; so we can go on and try to list the parent.) | |
2535 ;; the listing, if everything works. | |
2536 | |
2537 ;; If WILDCARD is non-nil, then this implements the guts of insert-directory | |
2538 ;; in the wildcard case. Then we make a relative directory listing | |
2539 ;; of FILE within the directory specified by `default-directory'. | |
2540 | |
2541 (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
|
2542 "Normal hook run before parsing the text of an FTP directory listing.") |
28210 | 2543 |
37813
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
2544 (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
|
2545 "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
|
2546 |
28210 | 2547 (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
|
2548 "Return the output of a `DIR' or `ls' command done over FTP. |
28210 | 2549 FILE is the full name of the remote file, LSARGS is any args to pass to the |
2550 `ls' command, and PARSE specifies that the output should be parsed and stored | |
2551 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
|
2552 (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
|
2553 (setq lsargs (replace-match "" nil t lsargs))) |
28210 | 2554 ;; If parse is t, we assume that file is a directory. i.e. we only parse |
2555 ;; full directory listings. | |
2556 (let* ((ange-ftp-this-file (ange-ftp-expand-file-name file)) | |
2557 (parsed (ange-ftp-ftp-name ange-ftp-this-file))) | |
2558 (if parsed | |
2559 (let* ((host (nth 0 parsed)) | |
2560 (user (nth 1 parsed)) | |
2561 (name (ange-ftp-quote-string (nth 2 parsed))) | |
2562 (key (directory-file-name ange-ftp-this-file)) | |
2563 (host-type (ange-ftp-host-type host user)) | |
2564 (dumb (memq host-type ange-ftp-dumb-host-types)) | |
2565 result | |
2566 temp | |
2567 lscmd parse-func) | |
2568 (if (string-equal name "") | |
2569 (setq name | |
2570 (ange-ftp-real-file-name-as-directory | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
2571 (ange-ftp-expand-dir host user "~")))) |
28210 | 2572 (if (and ange-ftp-ls-cache-file |
2573 (string-equal key ange-ftp-ls-cache-file) | |
2574 ;; Don't care about lsargs for dumb hosts. | |
2575 (or dumb (string-equal lsargs ange-ftp-ls-cache-lsargs))) | |
2576 ange-ftp-ls-cache-res | |
2577 (setq temp (ange-ftp-make-tmp-name host)) | |
2578 (if wildcard | |
2579 (progn | |
2580 (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
|
2581 (setq lscmd (list 'ls file temp lsargs))) |
28210 | 2582 (setq lscmd (list 'dir name temp lsargs))) |
2583 (unwind-protect | |
2584 (if (car (setq result (ange-ftp-send-cmd | |
2585 host | |
2586 user | |
2587 lscmd | |
2588 (format "Listing %s" | |
2589 (ange-ftp-abbreviate-filename | |
2590 ange-ftp-this-file))))) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
2591 (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
|
2592 ange-ftp-data-buffer-name) |
28210 | 2593 (erase-buffer) |
2594 (if (ange-ftp-real-file-readable-p temp) | |
2595 (ange-ftp-real-insert-file-contents temp) | |
2596 (sleep-for ange-ftp-retry-time) | |
2597 ;wait for file to possibly appear | |
2598 (if (ange-ftp-real-file-readable-p temp) | |
2599 ;; Try again. | |
2600 (ange-ftp-real-insert-file-contents temp) | |
2601 (ange-ftp-error host user | |
2602 (format | |
2603 "list data file %s not readable" | |
2604 temp)))) | |
30518
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30481
diff
changeset
|
2605 ;; 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
|
2606 (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
|
2607 (replace-match "")) |
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30481
diff
changeset
|
2608 (goto-char 1) |
28210 | 2609 (run-hooks 'ange-ftp-before-parse-ls-hook) |
2610 (if parse | |
2611 (ange-ftp-set-files | |
2612 ange-ftp-this-file | |
2613 (if (setq | |
2614 parse-func | |
2615 (cdr (assq host-type | |
2616 ange-ftp-parse-list-func-alist))) | |
2617 (funcall parse-func) | |
2618 (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
|
2619 ;; 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
|
2620 ;; 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
|
2621 ;; 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
|
2622 ;; 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
|
2623 (run-hooks 'ange-ftp-after-parse-ls-hook) |
28210 | 2624 (setq ange-ftp-ls-cache-file key |
2625 ange-ftp-ls-cache-lsargs lsargs | |
2626 ; For dumb hosts-types this is | |
2627 ; meaningless but harmless. | |
2628 ange-ftp-ls-cache-res (buffer-string)) | |
2629 ;; (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
|
2630 (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
|
2631 ;; 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
|
2632 ;; 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
|
2633 ;; `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
|
2634 ;; 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
|
2635 nil |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2636 ange-ftp-ls-cache-res)) |
28210 | 2637 (if no-error |
2638 nil | |
2639 (ange-ftp-error host user | |
2640 (concat "DIR failed: " (cdr result))))) | |
2641 (ange-ftp-del-tmp-name temp)))) | |
2642 (error "Should never happen. Please report. Bug ref. no.: 1")))) | |
2643 | |
2644 ;;;; ------------------------------------------------------------ | |
2645 ;;;; Directory information caching support. | |
2646 ;;;; ------------------------------------------------------------ | |
2647 | |
2648 (defvar ange-ftp-add-file-entry-alist nil | |
2649 "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
|
2650 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
|
2651 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
|
2652 The main reason for this alist is to deal with file versions in VMS.") |
28210 | 2653 |
2654 (defvar ange-ftp-delete-file-entry-alist nil | |
2655 "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
|
2656 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
|
2657 to be used to delete a file entry for the OS TYPE. |
28210 | 2658 The main reason for this alist is to deal with file versions in VMS.") |
2659 | |
2660 (defun ange-ftp-add-file-entry (name &optional dir-p) | |
2661 "Add a file entry for file NAME, if its directory info exists." | |
2662 (funcall (or (cdr (assq (ange-ftp-host-type | |
2663 (car (ange-ftp-ftp-name name))) | |
2664 ange-ftp-add-file-entry-alist)) | |
2665 'ange-ftp-internal-add-file-entry) | |
2666 name dir-p) | |
2667 (setq ange-ftp-ls-cache-file nil)) | |
2668 | |
2669 (defun ange-ftp-delete-file-entry (name &optional dir-p) | |
2670 "Delete the file entry for file NAME, if its directory info exists." | |
2671 (funcall (or (cdr (assq (ange-ftp-host-type | |
2672 (car (ange-ftp-ftp-name name))) | |
2673 ange-ftp-delete-file-entry-alist)) | |
2674 'ange-ftp-internal-delete-file-entry) | |
2675 name dir-p) | |
2676 (setq ange-ftp-ls-cache-file nil)) | |
2677 | |
2678 (defmacro ange-ftp-parse-filename () | |
2679 ;;Extract the filename from the current line of a dired-like listing. | |
106309
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
2680 `(save-match-data |
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
2681 (let ((eol (progn (end-of-line) (point)))) |
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
2682 (beginning-of-line) |
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
2683 (if (re-search-forward directory-listing-before-filename-regexp eol t) |
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
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." |
105636
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
2974 ;; FIXME: We should keep track of the current mode, so as to avoid |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
2975 ;; unnecessary roundtrips. |
28210 | 2976 (let ((result (ange-ftp-send-cmd host user '(type "binary")))) |
2977 (if (not (car result)) | |
2978 (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
|
2979 (with-current-buffer (process-buffer (ange-ftp-get-process host user)) |
28210 | 2980 (and ange-ftp-binary-hash-mark-size |
2981 (setq ange-ftp-hash-mark-unit | |
2982 (ash ange-ftp-binary-hash-mark-size -4))))))) | |
2983 | |
2984 (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
|
2985 "Tell the FTP process for the given HOST & USER to switch to ASCII mode." |
105636
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
2986 ;; FIXME: We should keep track of the current mode, so as to avoid |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
2987 ;; unnecessary roundtrips. |
28210 | 2988 (let ((result (ange-ftp-send-cmd host user '(type "ascii")))) |
2989 (if (not (car result)) | |
2990 (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
|
2991 (with-current-buffer (process-buffer (ange-ftp-get-process host user)) |
28210 | 2992 (and ange-ftp-ascii-hash-mark-size |
2993 (setq ange-ftp-hash-mark-unit | |
2994 (ash ange-ftp-ascii-hash-mark-size -4))))))) | |
2995 | |
39888
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2996 (defun ange-ftp-cd (host user dir &optional noerror) |
28210 | 2997 (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
|
2998 (if noerror result |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
2999 (or (car result) |
b429be6f52ac
(ange-ftp-raw-send-cmd, ange-ftp-wait-not-busy):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
39839
diff
changeset
|
3000 (ange-ftp-error host user (concat "CD failed: " (cdr result))))))) |
28210 | 3001 |
3002 (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
|
3003 "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
|
3004 Returns (DIR . LINE) where DIR is either the directory or nil if not found, |
28210 | 3005 and LINE is the relevant success or fail line from the FTP-client." |
3006 (let* ((result (ange-ftp-send-cmd host user '(pwd) "Getting PWD")) | |
3007 (line (cdr result)) | |
3008 dir) | |
3009 (if (car result) | |
3010 (save-match-data | |
3011 (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
|
3012 (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
|
3013 (setq dir (match-string 1 line))))) |
28210 | 3014 (cons dir line))) |
3015 | |
3016 ;;; ------------------------------------------------------------ | |
3017 ;;; expand-file-name and friends...which currently don't work | |
3018 ;;; ------------------------------------------------------------ | |
3019 | |
3020 (defun ange-ftp-expand-dir (host user dir) | |
3021 "Return the result of doing a PWD in the current FTP session. | |
3022 Use the connection to machine HOST | |
3023 logged in as user USER and cd'd to directory DIR." | |
3024 (let* ((host-type (ange-ftp-host-type host user)) | |
3025 ;; It is more efficient to call ange-ftp-host-type | |
3026 ;; before binding res, because ange-ftp-host-type sometimes | |
3027 ;; adds to the info in the expand-dir-hashtable. | |
3028 (fix-name-func | |
3029 (cdr (assq host-type ange-ftp-fix-name-func-alist))) | |
3030 (key (concat host "/" user "/" dir)) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3031 (res (gethash key ange-ftp-expand-dir-hashtable))) |
28210 | 3032 (or res |
3033 (progn | |
3034 (or | |
3035 (string-equal user "anonymous") | |
3036 (string-equal user "ftp") | |
3037 (not (eq host-type 'unix)) | |
3038 (let* ((ange-ftp-good-msgs (concat ange-ftp-expand-dir-regexp | |
3039 "\\|" | |
3040 ange-ftp-good-msgs)) | |
3041 (result (ange-ftp-send-cmd host user | |
3042 (list 'get dir null-device) | |
3043 (format "expanding %s" dir))) | |
3044 (line (cdr result))) | |
3045 (setq res | |
3046 (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
|
3047 (match-string 1 line))))) |
28210 | 3048 (or res |
3049 (if (string-equal dir "~") | |
3050 (setq res (car (ange-ftp-get-pwd host user))) | |
3051 (let ((home (ange-ftp-expand-dir host user "~"))) | |
3052 (unwind-protect | |
3053 (and (ange-ftp-cd host user dir) | |
3054 (setq res (car (ange-ftp-get-pwd host user)))) | |
3055 (ange-ftp-cd host user home))))) | |
3056 (if res | |
3057 (let ((ange-ftp-this-user user) | |
3058 (ange-ftp-this-host host)) | |
3059 (if fix-name-func | |
3060 (setq res (funcall fix-name-func res 'reverse))) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3061 (puthash key res ange-ftp-expand-dir-hashtable))) |
28210 | 3062 res)))) |
3063 | |
3064 (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
|
3065 "Take a string N and short-circuit //, /. and /.." |
28210 | 3066 (if (string-match "[^:]+//" n) ;don't upset Apollo users |
3067 (setq n (substring n (1- (match-end 0))))) | |
3068 (let ((parsed (ange-ftp-ftp-name n))) | |
3069 (if parsed | |
3070 (let ((host (car parsed)) | |
3071 (user (nth 1 parsed)) | |
3072 (name (nth 2 parsed))) | |
30459 | 3073 |
28210 | 3074 ;; See if remote name is absolute. If so then just expand it and |
3075 ;; 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
|
3076 (cond ((string-match "\\`/" name) |
28210 | 3077 name) |
30459 | 3078 |
28210 | 3079 ;; Name starts with ~ or ~user. Resolve that part of the name |
3080 ;; 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
|
3081 ((string-match "\\`~[^/]*" name) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
3082 (let* ((tilda (match-string 0 name)) |
28210 | 3083 (rest (substring name (match-end 0))) |
3084 (dir (ange-ftp-expand-dir host user tilda))) | |
3085 (if dir | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3086 ;; 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
|
3087 ;; 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
|
3088 ;; 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
|
3089 ;; 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
|
3090 ;; seems to do the trick. |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3091 (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
|
3092 ((string-equal dir "/") rest) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3093 (t (concat dir rest)))) |
30459 | 3094 (error "User \"%s\" is not known" |
28210 | 3095 (substring tilda 1))))) |
30459 | 3096 |
28210 | 3097 ;; relative name. Tack on homedir and re-expand. |
3098 (t | |
3099 (let ((dir (ange-ftp-expand-dir host user "~"))) | |
3100 (if dir | |
3101 (setq name (concat | |
3102 (ange-ftp-real-file-name-as-directory dir) | |
3103 name)) | |
3104 (error "Unable to obtain CWD"))))) | |
30459 | 3105 |
28210 | 3106 ;; 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
|
3107 (unless (string-match "\\`//" name) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3108 (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
|
3109 (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
|
3110 ;; 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
|
3111 (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
|
3112 (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
|
3113 (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
|
3114 ;; Strip off possible drive specifier. |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3115 (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
|
3116 (setq name (substring name 2)))) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3117 (if (string-match "\\`//" name) |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
3118 (setq name (substring name 1)))) |
30459 | 3119 |
28210 | 3120 ;; Now substitute the expanded name back into the overall filename. |
3121 (ange-ftp-replace-name-component n name)) | |
30459 | 3122 |
28210 | 3123 ;; non-ange-ftp name. Just expand normally. |
3124 (if (eq (string-to-char n) ?/) | |
3125 (ange-ftp-real-expand-file-name n) | |
3126 (ange-ftp-real-expand-file-name | |
3127 (ange-ftp-real-file-name-nondirectory n) | |
3128 (ange-ftp-real-file-name-directory n)))))) | |
3129 | |
3130 (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
|
3131 "Documented as `expand-file-name'." |
28210 | 3132 (save-match-data |
3133 (setq default (or default default-directory)) | |
3134 (cond ((eq (string-to-char name) ?~) | |
3135 (ange-ftp-real-expand-file-name name)) | |
3136 ((eq (string-to-char name) ?/) | |
3137 (ange-ftp-canonize-filename name)) | |
3138 ((and (eq system-type 'windows-nt) | |
3139 (eq (string-to-char name) ?\\)) | |
3140 (ange-ftp-canonize-filename name)) | |
3141 ((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
|
3142 (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
|
3143 (string-match "\\`[a-zA-Z]:" default))) |
28210 | 3144 (ange-ftp-real-expand-file-name name default)) |
3145 ((zerop (length name)) | |
3146 (ange-ftp-canonize-filename default)) | |
3147 ((ange-ftp-canonize-filename | |
3148 (concat (file-name-as-directory default) name)))))) | |
3149 | |
3150 ;;; These are problems--they are currently not enabled. | |
3151 | |
3152 (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
|
3153 "Association list of (TYPE . FUNC) pairs. |
28210 | 3154 FUNC converts a filename to a directory name for the operating |
3155 system TYPE.") | |
3156 | |
3157 (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
|
3158 "Documented as `file-name-as-directory'." |
28210 | 3159 (let ((parsed (ange-ftp-ftp-name name))) |
3160 (if parsed | |
3161 (if (string-equal (nth 2 parsed) "") | |
3162 name | |
3163 (funcall (or (cdr (assq | |
3164 (ange-ftp-host-type (car parsed)) | |
3165 ange-ftp-file-name-as-directory-alist)) | |
3166 'ange-ftp-real-file-name-as-directory) | |
3167 name)) | |
3168 (ange-ftp-real-file-name-as-directory name)))) | |
30459 | 3169 |
28210 | 3170 (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
|
3171 "Documented as `file-name-directory'." |
28210 | 3172 (let ((parsed (ange-ftp-ftp-name name))) |
3173 (if parsed | |
3174 (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
|
3175 (if (string-match-p "\\`~[^/]*\\'" filename) |
28210 | 3176 name |
3177 (ange-ftp-replace-name-component | |
3178 name | |
3179 (ange-ftp-real-file-name-directory filename)))) | |
3180 (ange-ftp-real-file-name-directory name)))) | |
3181 | |
3182 (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
|
3183 "Documented as `file-name-nondirectory'." |
28210 | 3184 (let ((parsed (ange-ftp-ftp-name name))) |
3185 (if parsed | |
3186 (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
|
3187 (if (string-match-p "\\`~[^/]*\\'" filename) |
28210 | 3188 "" |
3189 (ange-ftp-real-file-name-nondirectory filename))) | |
3190 (ange-ftp-real-file-name-nondirectory name)))) | |
3191 | |
3192 (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
|
3193 "Documented as `directory-file-name'." |
28210 | 3194 (let ((parsed (ange-ftp-ftp-name dir))) |
3195 (if parsed | |
3196 (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
|
3197 dir |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
3198 (ange-ftp-real-directory-file-name (nth 2 parsed))) |
28210 | 3199 (ange-ftp-real-directory-file-name dir)))) |
3200 | |
3201 | |
3202 ;;; Hooks that handle Emacs primitives. | |
3203 | |
3204 ;; Returns non-nil if should transfer FILE in binary mode. | |
3205 (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
|
3206 (string-match-p ange-ftp-binary-file-name-regexp file)) |
28210 | 3207 |
3208 (defun ange-ftp-write-region (start end filename &optional append visit) | |
3209 (setq filename (expand-file-name filename)) | |
3210 (let ((parsed (ange-ftp-ftp-name filename))) | |
3211 (if parsed | |
3212 (let* ((host (nth 0 parsed)) | |
3213 (user (nth 1 parsed)) | |
3214 (name (ange-ftp-quote-string (nth 2 parsed))) | |
3215 (temp (ange-ftp-make-tmp-name host)) | |
3216 ;; What we REALLY need here is a way to determine if the mode | |
3217 ;; of the transfer is irrelevant, i.e. we can use binary mode | |
3218 ;; regardless. Maybe a system-type to host-type lookup? | |
3219 (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
|
3220 (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
|
3221 '(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
|
3222 (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
|
3223 '(unix dumb-unix))))) |
28210 | 3224 (cmd (if append 'append 'put)) |
3225 (abbr (ange-ftp-abbreviate-filename filename)) | |
3226 ;; we need to reset `last-coding-system-used' to its | |
3227 ;; value immediately after calling the real write-region, | |
3228 ;; so that `basic-save-buffer' doesn't see whatever value | |
3229 ;; might be used when communicating with the ftp process. | |
3230 (coding-system-used last-coding-system-used)) | |
3231 (unwind-protect | |
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 (let ((filename (buffer-file-name)) |
28210 | 3234 (mod-p (buffer-modified-p))) |
3235 (unwind-protect | |
37774
a3b587b05ab3
(ange-ftp-write-region): Make sure to record the
Gerd Moellmann <gerd@gnu.org>
parents:
33539
diff
changeset
|
3236 (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
|
3237 (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
|
3238 (or visit 'quiet)) |
37774
a3b587b05ab3
(ange-ftp-write-region): Make sure to record the
Gerd Moellmann <gerd@gnu.org>
parents:
33539
diff
changeset
|
3239 (setq coding-system-used last-coding-system-used)) |
28210 | 3240 ;; cleanup forms |
37774
a3b587b05ab3
(ange-ftp-write-region): Make sure to record the
Gerd Moellmann <gerd@gnu.org>
parents:
33539
diff
changeset
|
3241 (setq coding-system-used last-coding-system-used) |
28210 | 3242 (setq buffer-file-name filename) |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
3243 (restore-buffer-modified-p mod-p))) |
28210 | 3244 (if binary |
3245 (ange-ftp-set-binary-mode host user)) | |
3246 | |
3247 ;; tell the process filter what size the transfer will be. | |
3248 (let ((attr (file-attributes temp))) | |
3249 (if attr | |
3250 (ange-ftp-set-xfer-size host user (nth 7 attr)))) | |
3251 | |
3252 ;; put or append the file. | |
3253 (let ((result (ange-ftp-send-cmd host user | |
3254 (list cmd temp name) | |
3255 (format "Writing %s" abbr)))) | |
3256 (or (car result) | |
3257 (signal 'ftp-error | |
3258 (list | |
3259 "Opening output file" | |
3260 (format "FTP Error: \"%s\"" (cdr result)) | |
3261 filename))))) | |
3262 (ange-ftp-del-tmp-name temp) | |
30459 | 3263 (if binary |
28210 | 3264 (ange-ftp-set-ascii-mode host user))) |
3265 (if (eq visit t) | |
3266 (progn | |
30459 | 3267 (set-visited-file-modtime (ange-ftp-file-modtime filename)) |
28210 | 3268 (ange-ftp-set-buffer-mode) |
3269 (setq buffer-file-name filename) | |
3270 (set-buffer-modified-p nil))) | |
3271 ;; ensure `last-coding-system-used' has an appropriate value | |
3272 (setq last-coding-system-used coding-system-used) | |
3273 (ange-ftp-message "Wrote %s" abbr) | |
3274 (ange-ftp-add-file-entry filename)) | |
3275 (ange-ftp-real-write-region start end filename append visit)))) | |
3276 | |
3277 (defun ange-ftp-insert-file-contents (filename &optional visit beg end replace) | |
3278 (barf-if-buffer-read-only) | |
3279 (setq filename (expand-file-name filename)) | |
3280 (let ((parsed (ange-ftp-ftp-name filename))) | |
3281 (if parsed | |
3282 (progn | |
3283 (if visit | |
3284 (setq buffer-file-name filename)) | |
3285 (if (or (file-exists-p filename) | |
3286 (progn | |
3287 (setq ange-ftp-ls-cache-file nil) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3288 (remhash (file-name-directory filename) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3289 ange-ftp-files-hashtable) |
28210 | 3290 (file-exists-p filename))) |
3291 (let* ((host (nth 0 parsed)) | |
3292 (user (nth 1 parsed)) | |
3293 (name (ange-ftp-quote-string (nth 2 parsed))) | |
3294 (temp (ange-ftp-make-tmp-name host)) | |
3295 (binary (or (ange-ftp-binary-file filename) | |
3296 (memq (ange-ftp-host-type host user) | |
3297 '(unix dumb-unix)))) | |
3298 (abbr (ange-ftp-abbreviate-filename filename)) | |
3299 (coding-system-used last-coding-system-used) | |
3300 size) | |
3301 (unwind-protect | |
3302 (progn | |
3303 (if binary | |
3304 (ange-ftp-set-binary-mode host user)) | |
3305 (let ((result (ange-ftp-send-cmd host user | |
3306 (list 'get name temp) | |
3307 (format "Retrieving %s" abbr)))) | |
3308 (or (car result) | |
3309 (signal 'ftp-error | |
3310 (list | |
3311 "Opening input file" | |
3312 (format "FTP Error: \"%s\"" (cdr result)) | |
3313 filename)))) | |
3314 (if (or (ange-ftp-real-file-readable-p temp) | |
3315 (sleep-for ange-ftp-retry-time) | |
3316 ;; Wait for file to hopefully appear. | |
3317 (ange-ftp-real-file-readable-p temp)) | |
3318 (setq | |
3319 size | |
3320 (nth 1 (ange-ftp-real-insert-file-contents | |
3321 temp visit beg end replace)) | |
3322 coding-system-used last-coding-system-used | |
3323 ;; override autodetection of buffer file type | |
3324 ;; to ensure buffer is saved in DOS format | |
3325 buffer-file-type binary) | |
3326 (signal 'ftp-error | |
3327 (list | |
3328 "Opening input file:" | |
3329 (format | |
3330 "FTP Error: %s not arrived or readable" | |
3331 filename))))) | |
3332 (if binary | |
3333 ;; We must keep `last-coding-system-used' | |
3334 ;; unchanged. | |
3335 (let (last-coding-system-used) | |
3336 (ange-ftp-set-ascii-mode host user))) | |
3337 (ange-ftp-del-tmp-name temp)) | |
3338 (if visit | |
3339 (progn | |
30459 | 3340 (set-visited-file-modtime |
3341 (ange-ftp-file-modtime filename)) | |
28210 | 3342 (setq buffer-file-name filename))) |
3343 (setq last-coding-system-used coding-system-used) | |
3344 (list filename size)) | |
3345 (signal 'file-error | |
30459 | 3346 (list |
28210 | 3347 "Opening input file" |
3348 filename)))) | |
3349 (ange-ftp-real-insert-file-contents filename visit beg end replace)))) | |
30459 | 3350 |
28210 | 3351 (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
|
3352 (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
|
3353 (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
|
3354 (expand-file-name file dir)))) |
2bf79af13e21
From Michael Albinus <Michael.Albinus@alcatel.de>.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49805
diff
changeset
|
3355 (if (file-symlink-p res) |
2bf79af13e21
From Michael Albinus <Michael.Albinus@alcatel.de>.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49805
diff
changeset
|
3356 (ange-ftp-expand-symlink |
2bf79af13e21
From Michael Albinus <Michael.Albinus@alcatel.de>.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49805
diff
changeset
|
3357 (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
|
3358 (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
|
3359 res))) |
28210 | 3360 |
3361 (defun ange-ftp-file-symlink-p (file) | |
3362 ;; call ange-ftp-expand-file-name rather than the normal | |
3363 ;; expand-file-name to stop loops when using a package that | |
3364 ;; redefines both file-symlink-p and expand-file-name. | |
3365 (setq file (ange-ftp-expand-file-name file)) | |
3366 (if (ange-ftp-ftp-name file) | |
51799
2a6ed9e210b2
(ange-ftp-file-symlink-p):
Richard M. Stallman <rms@gnu.org>
parents:
50578
diff
changeset
|
3367 (condition-case nil |
56742
19c16bca1b49
(ange-ftp-hash-entry-exists-p)
David Kastrup <dak@gnu.org>
parents:
56259
diff
changeset
|
3368 (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
|
3369 (and ent |
19c16bca1b49
(ange-ftp-hash-entry-exists-p)
David Kastrup <dak@gnu.org>
parents:
56259
diff
changeset
|
3370 (stringp (setq ent |
19c16bca1b49
(ange-ftp-hash-entry-exists-p)
David Kastrup <dak@gnu.org>
parents:
56259
diff
changeset
|
3371 (gethash (ange-ftp-get-file-part file) ent))) |
19c16bca1b49
(ange-ftp-hash-entry-exists-p)
David Kastrup <dak@gnu.org>
parents:
56259
diff
changeset
|
3372 ent)) |
51799
2a6ed9e210b2
(ange-ftp-file-symlink-p):
Richard M. Stallman <rms@gnu.org>
parents:
50578
diff
changeset
|
3373 ;; 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
|
3374 ;; this file is not a symlink. |
2a6ed9e210b2
(ange-ftp-file-symlink-p):
Richard M. Stallman <rms@gnu.org>
parents:
50578
diff
changeset
|
3375 ;; 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
|
3376 ;; whose parent is not readable. |
2a6ed9e210b2
(ange-ftp-file-symlink-p):
Richard M. Stallman <rms@gnu.org>
parents:
50578
diff
changeset
|
3377 (file-error nil)) |
28210 | 3378 (ange-ftp-real-file-symlink-p file))) |
3379 | |
3380 (defun ange-ftp-file-exists-p (name) | |
3381 (setq name (expand-file-name name)) | |
3382 (if (ange-ftp-ftp-name name) | |
3383 (if (ange-ftp-file-entry-p name) | |
3384 (let ((file-ent (ange-ftp-get-file-entry name))) | |
3385 (if (stringp file-ent) | |
3386 (file-exists-p | |
3387 (ange-ftp-expand-symlink file-ent | |
3388 (file-name-directory | |
3389 (directory-file-name name)))) | |
3390 t))) | |
3391 (ange-ftp-real-file-exists-p name))) | |
3392 | |
3393 (defun ange-ftp-file-directory-p (name) | |
3394 (setq name (expand-file-name name)) | |
3395 (if (ange-ftp-ftp-name name) | |
3396 ;; We do a file-name-as-directory on name here because some | |
3397 ;; machines (VMS) use a .DIR to indicate the filename associated | |
3398 ;; with a directory. This needs to be canonicalized. | |
3399 (let ((file-ent (ange-ftp-get-file-entry | |
3400 (ange-ftp-file-name-as-directory name)))) | |
3401 (if (stringp file-ent) | |
65762
77dd61f8bf51
(ange-ftp-gwp-start): Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65516
diff
changeset
|
3402 ;; 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
|
3403 ;; 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
|
3404 (ange-ftp-file-directory-p |
28210 | 3405 (ange-ftp-expand-symlink file-ent |
3406 (file-name-directory | |
3407 (directory-file-name name)))) | |
3408 file-ent)) | |
3409 (ange-ftp-real-file-directory-p name))) | |
3410 | |
3411 (defun ange-ftp-directory-files (directory &optional full match | |
3412 &rest v19-args) | |
3413 (setq directory (expand-file-name directory)) | |
3414 (if (ange-ftp-ftp-name directory) | |
3415 (progn | |
3416 (ange-ftp-barf-if-not-directory directory) | |
3417 (let ((tail (ange-ftp-hash-table-keys | |
3418 (ange-ftp-get-files directory))) | |
3419 files f) | |
3420 (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
|
3421 (while tail |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3422 (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
|
3423 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
|
3424 (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
|
3425 (setq files |
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
3426 (cons (if full (concat directory f) f) files)))) |
28210 | 3427 (nreverse files))) |
3428 (apply 'ange-ftp-real-directory-files directory full match v19-args))) | |
3429 | |
106309
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
3430 (defun ange-ftp-directory-files-and-attributes |
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
3431 (directory &optional full match nosort id-format) |
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
3432 (setq directory (expand-file-name directory)) |
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
3433 (if (ange-ftp-ftp-name directory) |
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
3434 (mapcar |
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
3435 (lambda (file) |
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
3436 (cons file (file-attributes (expand-file-name file directory)))) |
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
3437 (ange-ftp-directory-files directory full match nosort)) |
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
3438 (ange-ftp-real-directory-files-and-attributes |
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
3439 directory full match nosort id-format))) |
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
3440 |
53351
d3b9902eacfe
(ange-ftp-file-attributes): Add new optional parameter ID-FORMAT.
Sam Steingold <sds@gnu.org>
parents:
52401
diff
changeset
|
3441 (defun ange-ftp-file-attributes (file &optional id-format) |
28210 | 3442 (setq file (expand-file-name file)) |
3443 (let ((parsed (ange-ftp-ftp-name file))) | |
3444 (if parsed | |
3445 (let ((part (ange-ftp-get-file-part file)) | |
3446 (files (ange-ftp-get-files (file-name-directory file)))) | |
3447 (if (ange-ftp-hash-entry-exists-p part files) | |
3448 (let ((host (nth 0 parsed)) | |
3449 (user (nth 1 parsed)) | |
3450 (name (nth 2 parsed)) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3451 (dirp (gethash part files)) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3452 (inode (gethash file ange-ftp-inodes-hashtable))) |
28210 | 3453 (unless inode |
3454 (setq inode ange-ftp-next-inode-number | |
3455 ange-ftp-next-inode-number (1+ inode)) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3456 (puthash file inode ange-ftp-inodes-hashtable)) |
28210 | 3457 (list (if (and (stringp dirp) (file-name-absolute-p dirp)) |
3458 (ange-ftp-expand-symlink dirp | |
3459 (file-name-directory file)) | |
3460 dirp) ;0 file type | |
3461 -1 ;1 link count | |
3462 -1 ;2 uid | |
3463 -1 ;3 gid | |
3464 '(0 0) ;4 atime | |
30459 | 3465 (ange-ftp-file-modtime file) ;5 mtime |
28210 | 3466 '(0 0) ;6 ctime |
105636
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3467 (ange-ftp-file-size file) ;7 size |
28210 | 3468 (concat (if (stringp dirp) "l" (if dirp "d" "-")) |
3469 "?????????") ;8 mode | |
3470 nil ;9 gid weird | |
3471 inode ;10 "inode number". | |
3472 -1 ;11 device number [v19 only] | |
3473 )))) | |
53500
530a52a3971b
(ange-ftp-file-attributes):
Richard M. Stallman <rms@gnu.org>
parents:
53415
diff
changeset
|
3474 (if id-format |
530a52a3971b
(ange-ftp-file-attributes):
Richard M. Stallman <rms@gnu.org>
parents:
53415
diff
changeset
|
3475 (ange-ftp-real-file-attributes file id-format) |
530a52a3971b
(ange-ftp-file-attributes):
Richard M. Stallman <rms@gnu.org>
parents:
53415
diff
changeset
|
3476 (ange-ftp-real-file-attributes file))))) |
28210 | 3477 |
30481 | 3478 (defun ange-ftp-file-newer-than-file-p (f1 f2) |
3479 (let ((f1-parsed (ange-ftp-ftp-name f1)) | |
3480 (f2-parsed (ange-ftp-ftp-name f2))) | |
3481 (if (or f1-parsed f2-parsed) | |
3482 (let ((f1-mt (nth 5 (file-attributes f1))) | |
3483 (f2-mt (nth 5 (file-attributes f2)))) | |
3484 (cond ((null f1-mt) nil) | |
3485 ((null f2-mt) t) | |
3486 (t (> (float-time f1-mt) (float-time f2-mt))))) | |
3487 (ange-ftp-real-file-newer-than-file-p f1 f2)))) | |
3488 | |
28210 | 3489 (defun ange-ftp-file-writable-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 (or (file-exists-p file) ;guess here for speed | |
3494 (file-directory-p (file-name-directory file))) | |
3495 (ange-ftp-real-file-writable-p file)))) | |
28210 | 3496 |
3497 (defun ange-ftp-file-readable-p (file) | |
33533 | 3498 (let ((ange-ftp-process-verbose nil)) |
3499 (setq file (expand-file-name file)) | |
3500 (if (ange-ftp-ftp-name file) | |
3501 (file-exists-p file) | |
3502 (ange-ftp-real-file-readable-p file)))) | |
28210 | 3503 |
3504 (defun ange-ftp-file-executable-p (file) | |
33533 | 3505 (let ((ange-ftp-process-verbose nil)) |
3506 (setq file (expand-file-name file)) | |
3507 (if (ange-ftp-ftp-name file) | |
3508 (file-exists-p file) | |
3509 (ange-ftp-real-file-executable-p file)))) | |
28210 | 3510 |
108806
511da81b16c5
Change delete-by-moving-to-trash so Lisp calls explicitly request trashing.
Chong Yidong <cyd@stupidchicken.com>
parents:
108244
diff
changeset
|
3511 (defun ange-ftp-delete-file (file &optional trash) |
511da81b16c5
Change delete-by-moving-to-trash so Lisp calls explicitly request trashing.
Chong Yidong <cyd@stupidchicken.com>
parents:
108244
diff
changeset
|
3512 (interactive (list (read-file-name "Delete file: " nil default-directory) |
511da81b16c5
Change delete-by-moving-to-trash so Lisp calls explicitly request trashing.
Chong Yidong <cyd@stupidchicken.com>
parents:
108244
diff
changeset
|
3513 (null current-prefix-arg))) |
28210 | 3514 (setq file (expand-file-name file)) |
3515 (let ((parsed (ange-ftp-ftp-name file))) | |
3516 (if parsed | |
3517 (let* ((host (nth 0 parsed)) | |
3518 (user (nth 1 parsed)) | |
3519 (name (ange-ftp-quote-string (nth 2 parsed))) | |
3520 (abbr (ange-ftp-abbreviate-filename file)) | |
3521 (result (ange-ftp-send-cmd host user | |
3522 (list 'delete name) | |
3523 (format "Deleting %s" abbr)))) | |
3524 (or (car result) | |
3525 (signal 'ftp-error | |
3526 (list | |
3527 "Removing old name" | |
3528 (format "FTP Error: \"%s\"" (cdr result)) | |
3529 file))) | |
3530 (ange-ftp-delete-file-entry file)) | |
108806
511da81b16c5
Change delete-by-moving-to-trash so Lisp calls explicitly request trashing.
Chong Yidong <cyd@stupidchicken.com>
parents:
108244
diff
changeset
|
3531 (ange-ftp-real-delete-file file trash)))) |
28210 | 3532 |
30459 | 3533 (defun ange-ftp-file-modtime (file) |
38312
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3534 "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
|
3535 Value is (0 0) if the modification time cannot be determined." |
30459 | 3536 (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
|
3537 ;; 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
|
3538 ;; 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
|
3539 ;; that. |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3540 (ange-ftp-skip-msgs (concat ange-ftp-skip-msgs "\\|^226")) |
30459 | 3541 (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
|
3542 (list 'quote "mdtm" (cadr (cdr parsed))))) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3543 (line (cdr res)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3544 (modtime '(0 0))) |
38328
3c2404604bae
(ange-ftp-file-modtime): Check a 213 response
Gerd Moellmann <gerd@gnu.org>
parents:
38312
diff
changeset
|
3545 ;; 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
|
3546 ;; 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
|
3547 ;; 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
|
3548 ;; 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
|
3549 ;; 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
|
3550 (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
|
3551 (setq modtime |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3552 (encode-time |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3553 (string-to-number (substring line 16 18)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3554 (string-to-number (substring line 14 16)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3555 (string-to-number (substring line 12 14)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3556 (string-to-number (substring line 10 12)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3557 (string-to-number (substring line 8 10)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3558 (string-to-number (substring line 4 8)) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3559 0))) |
b6dd8b1368af
(ange-ftp-file-modtime): Ignore 226 responses
Gerd Moellmann <gerd@gnu.org>
parents:
37813
diff
changeset
|
3560 modtime)) |
30459 | 3561 |
28210 | 3562 (defun ange-ftp-verify-visited-file-modtime (buf) |
3563 (let ((name (buffer-file-name buf))) | |
3564 (if (and (stringp name) (ange-ftp-ftp-name name)) | |
30459 | 3565 (let ((file-mdtm (ange-ftp-file-modtime name)) |
3566 (buf-mdtm (with-current-buffer buf (visited-file-modtime)))) | |
3567 (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
|
3568 (<= (float-time file-mdtm) (float-time buf-mdtm)))) |
28210 | 3569 (ange-ftp-real-verify-visited-file-modtime buf)))) |
105636
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3570 |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3571 (defun ange-ftp-file-size (file &optional ascii-mode) |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3572 "Return the size of remote file FILE. Return -1 if can't get it. |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3573 If ascii-mode is non-nil, return the size with the extra octets that |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3574 need to be inserted, one at the end of each line, to provide correct |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3575 end-of-line semantics for a transfer using TYPE=A. The default is nil, |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3576 so return the size on the remote host exactly. See RFC 3659." |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3577 (let* ((parsed (ange-ftp-ftp-name file)) |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3578 (host (nth 0 parsed)) |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3579 (user (nth 1 parsed)) |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3580 (name (ange-ftp-quote-string (nth 2 parsed))) |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3581 ;; At least one FTP server (wu-ftpd) can return a "226 |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3582 ;; Transfer complete" before the "213 SIZE". Let's skip |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3583 ;; that. |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3584 (ange-ftp-skip-msgs (concat ange-ftp-skip-msgs "\\|^226")) |
105658
1165f7844d0a
(ange-ftp-file-size): Use unwind-protect.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105636
diff
changeset
|
3585 (res (unwind-protect |
1165f7844d0a
(ange-ftp-file-size): Use unwind-protect.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105636
diff
changeset
|
3586 (progn |
1165f7844d0a
(ange-ftp-file-size): Use unwind-protect.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105636
diff
changeset
|
3587 (unless ascii-mode |
1165f7844d0a
(ange-ftp-file-size): Use unwind-protect.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105636
diff
changeset
|
3588 (ange-ftp-set-binary-mode host user)) |
1165f7844d0a
(ange-ftp-file-size): Use unwind-protect.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105636
diff
changeset
|
3589 (ange-ftp-send-cmd host user (list 'quote "size" name))) |
105636
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3590 (unless ascii-mode |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3591 (ange-ftp-set-ascii-mode host user)))) |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3592 (line (cdr res))) |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3593 (if (string-match "^213 \\([0-9]+\\)$" line) |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3594 (string-to-number (match-string 1 line)) |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3595 -1))) |
889d12d7c95b
(ange-ftp-send-cmd): Handle `size' like `mdtm'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105382
diff
changeset
|
3596 |
28210 | 3597 |
3598 ;;;; ------------------------------------------------------------ | |
3599 ;;;; File copying support... totally re-written 6/24/92. | |
3600 ;;;; ------------------------------------------------------------ | |
3601 | |
3602 (defun ange-ftp-barf-or-query-if-file-exists (absname querystring interactive) | |
3603 (if (file-exists-p absname) | |
3604 (if (not interactive) | |
3605 (signal 'file-already-exists (list absname)) | |
3606 (if (not (yes-or-no-p (format "File %s already exists; %s anyway? " | |
3607 absname querystring))) | |
3608 (signal 'file-already-exists (list absname)))))) | |
3609 | |
3610 ;; async local copy commented out for now since I don't seem to get | |
3611 ;; the process sentinel called for some processes. | |
3612 ;; | |
3613 ;; (defun ange-ftp-copy-file-locally (filename newname ok-if-already-exists | |
3614 ;; keep-date cont) | |
3615 ;; "Kludge to copy a local file and call a continuation when the copy | |
3616 ;; finishes." | |
3617 ;; ;; check to see if we can overwrite | |
3618 ;; (if (or (not ok-if-already-exists) | |
3619 ;; (numberp ok-if-already-exists)) | |
30459 | 3620 ;; (ange-ftp-barf-or-query-if-file-exists newname "copy to it" |
28210 | 3621 ;; (numberp ok-if-already-exists))) |
3622 ;; (let ((proc (start-process " *copy*" | |
3623 ;; (generate-new-buffer "*copy*") | |
3624 ;; "cp" | |
3625 ;; filename | |
3626 ;; newname)) | |
3627 ;; res) | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
3628 ;; (set-process-sentinel proc 'ange-ftp-copy-file-locally-sentinel) |
28210 | 3629 ;; (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
|
3630 ;; (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
|
3631 ;; (set (make-local-variable 'copy-cont) cont)))) |
30459 | 3632 ;; |
28210 | 3633 ;; (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
|
3634 ;; (with-current-buffer (process-buffer proc) |
28210 | 3635 ;; (let ((cont copy-cont) |
3636 ;; (result (buffer-string))) | |
3637 ;; (unwind-protect | |
3638 ;; (if (and (string-equal status "finished\n") | |
3639 ;; (zerop (length result))) | |
3640 ;; (ange-ftp-call-cont cont t nil) | |
3641 ;; (ange-ftp-call-cont cont | |
3642 ;; nil | |
3643 ;; (if (zerop (length result)) | |
3644 ;; (substring status 0 -1) | |
3645 ;; (substring result 0 -1)))) | |
3646 ;; (kill-buffer (current-buffer)))))) | |
3647 | |
3648 ;; this is the extended version of ange-ftp-copy-file-internal that works | |
3649 ;; asynchronously if asked nicely. | |
3650 (defun ange-ftp-copy-file-internal (filename newname ok-if-already-exists | |
3651 keep-date &optional msg cont nowait) | |
3652 (setq filename (expand-file-name filename) | |
3653 newname (expand-file-name newname)) | |
3654 | |
3655 ;; canonicalize newname if a directory. | |
3656 (if (file-directory-p newname) | |
3657 (setq newname (expand-file-name (file-name-nondirectory filename) newname))) | |
3658 | |
3659 (let ((f-parsed (ange-ftp-ftp-name filename)) | |
3660 (t-parsed (ange-ftp-ftp-name newname))) | |
3661 | |
3662 ;; local file to local file copy? | |
3663 (if (and (not f-parsed) (not t-parsed)) | |
3664 (progn | |
3665 (ange-ftp-real-copy-file filename newname ok-if-already-exists | |
3666 keep-date) | |
3667 (if cont | |
3668 (ange-ftp-call-cont cont t "Copied locally"))) | |
3669 ;; one or both files are remote. | |
3670 (let* ((f-host (and f-parsed (nth 0 f-parsed))) | |
3671 (f-user (and f-parsed (nth 1 f-parsed))) | |
3672 (f-name (and f-parsed (ange-ftp-quote-string (nth 2 f-parsed)))) | |
3673 (f-abbr (ange-ftp-abbreviate-filename filename)) | |
3674 (t-host (and t-parsed (nth 0 t-parsed))) | |
3675 (t-user (and t-parsed (nth 1 t-parsed))) | |
3676 (t-name (and t-parsed (ange-ftp-quote-string (nth 2 t-parsed)))) | |
3677 (t-abbr (ange-ftp-abbreviate-filename newname filename)) | |
3678 (binary (or (ange-ftp-binary-file filename) | |
3679 (ange-ftp-binary-file newname) | |
3680 (and (memq (ange-ftp-host-type f-host f-user) | |
3681 '(unix dumb-unix)) | |
3682 (memq (ange-ftp-host-type t-host t-user) | |
3683 '(unix dumb-unix))))) | |
3684 temp1 | |
3685 temp2) | |
3686 | |
3687 ;; check to see if we can overwrite | |
3688 (if (or (not ok-if-already-exists) | |
3689 (numberp ok-if-already-exists)) | |
30459 | 3690 (ange-ftp-barf-or-query-if-file-exists newname "copy to it" |
28210 | 3691 (numberp ok-if-already-exists))) |
3692 | |
3693 ;; do the copying. | |
3694 (if f-parsed | |
30459 | 3695 |
28210 | 3696 ;; filename was remote. |
3697 (progn | |
3698 (if (or (ange-ftp-use-gateway-p f-host) | |
3699 t-parsed) | |
3700 ;; have to use intermediate file if we are getting via | |
3701 ;; gateway machine or we are doing a remote to remote copy. | |
3702 (setq temp1 (ange-ftp-make-tmp-name f-host))) | |
30459 | 3703 |
28210 | 3704 (if binary |
3705 (ange-ftp-set-binary-mode f-host f-user)) | |
3706 | |
3707 (ange-ftp-send-cmd | |
3708 f-host | |
3709 f-user | |
3710 (list 'get f-name (or temp1 (ange-ftp-quote-string newname))) | |
3711 (or msg | |
3712 (if (and temp1 t-parsed) | |
3713 (format "Getting %s" f-abbr) | |
3714 (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
|
3715 (list 'ange-ftp-cf1 |
28210 | 3716 filename newname binary msg |
3717 f-parsed f-host f-user f-name f-abbr | |
3718 t-parsed t-host t-user t-name t-abbr | |
3719 temp1 temp2 cont nowait) | |
3720 nowait)) | |
3721 | |
3722 ;; filename wasn't remote. newname must be remote. call the | |
3723 ;; function which does the remainder of the copying work. | |
3724 (ange-ftp-cf1 t nil | |
3725 filename newname binary msg | |
3726 f-parsed f-host f-user f-name f-abbr | |
3727 t-parsed t-host t-user t-name t-abbr | |
3728 nil nil cont nowait)))))) | |
3729 | |
3730 (defvar ange-ftp-waiting-flag nil) | |
3731 | |
3732 ;; next part of copying routine. | |
3733 (defun ange-ftp-cf1 (result line | |
3734 filename newname binary msg | |
3735 f-parsed f-host f-user f-name f-abbr | |
3736 t-parsed t-host t-user t-name t-abbr | |
3737 temp1 temp2 cont nowait) | |
3738 (if line | |
3739 ;; filename must have been remote, and we must have just done a GET. | |
3740 (unwind-protect | |
3741 (or result | |
3742 ;; GET failed for some reason. Clean up and get out. | |
3743 (progn | |
3744 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3745 (or cont | |
3746 (if ange-ftp-waiting-flag | |
3747 (throw 'ftp-error t) | |
3748 (signal 'ftp-error | |
3749 (list "Opening input file" | |
3750 (format "FTP Error: \"%s\"" line) | |
3751 filename)))))) | |
3752 ;; cleanup | |
3753 (if binary | |
3754 (ange-ftp-set-ascii-mode f-host f-user)))) | |
3755 | |
3756 (if result | |
3757 ;; We now have to copy either temp1 or filename to newname. | |
3758 (if t-parsed | |
30459 | 3759 |
28210 | 3760 ;; newname was remote. |
3761 (progn | |
3762 (if (ange-ftp-use-gateway-p t-host) | |
3763 (setq temp2 (ange-ftp-make-tmp-name t-host))) | |
30459 | 3764 |
28210 | 3765 ;; make sure data is moved into the right place for the |
3766 ;; outgoing transfer. gateway temporary files complicate | |
3767 ;; things nicely. | |
3768 (if temp1 | |
3769 (if temp2 | |
3770 (if (string-equal temp1 temp2) | |
3771 (setq temp1 nil) | |
3772 (ange-ftp-real-copy-file temp1 temp2 t)) | |
3773 (setq temp2 temp1 temp1 nil)) | |
3774 (if temp2 | |
3775 (ange-ftp-real-copy-file filename temp2 t))) | |
30459 | 3776 |
28210 | 3777 (if binary |
3778 (ange-ftp-set-binary-mode t-host t-user)) | |
3779 | |
3780 ;; tell the process filter what size the file is. | |
3781 (let ((attr (file-attributes (or temp2 filename)))) | |
3782 (if attr | |
3783 (ange-ftp-set-xfer-size t-host t-user (nth 7 attr)))) | |
3784 | |
3785 (ange-ftp-send-cmd | |
3786 t-host | |
3787 t-user | |
80116
91513d7aa412
* net/ange-ftp.el (ange-ftp-cf1): Quote FILENAME.
Michael Albinus <michael.albinus@gmx.de>
parents:
80044
diff
changeset
|
3788 (list 'put (or temp2 (ange-ftp-quote-string filename)) t-name) |
28210 | 3789 (or msg |
3790 (if (and temp2 f-parsed) | |
3791 (format "Putting %s" newname) | |
3792 (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
|
3793 (list 'ange-ftp-cf2 |
28210 | 3794 newname t-host t-user binary temp1 temp2 cont) |
3795 nowait)) | |
30459 | 3796 |
28210 | 3797 ;; newname wasn't remote. |
3798 (ange-ftp-cf2 t nil newname t-host t-user binary temp1 temp2 cont)) | |
3799 | |
3800 ;; first copy failed, tell caller | |
3801 (ange-ftp-call-cont cont result line))) | |
3802 | |
3803 ;; last part of copying routine. | |
3804 (defun ange-ftp-cf2 (result line newname t-host t-user binary temp1 temp2 cont) | |
3805 (unwind-protect | |
3806 (if line | |
3807 ;; result from doing a local to remote copy. | |
3808 (unwind-protect | |
3809 (progn | |
3810 (or result | |
3811 (or cont | |
3812 (if ange-ftp-waiting-flag | |
3813 (throw 'ftp-error t) | |
3814 (signal 'ftp-error | |
3815 (list "Opening output file" | |
3816 (format "FTP Error: \"%s\"" line) | |
3817 newname))))) | |
30459 | 3818 |
28210 | 3819 (ange-ftp-add-file-entry newname)) |
30459 | 3820 |
28210 | 3821 ;; cleanup. |
3822 (if binary | |
3823 (ange-ftp-set-ascii-mode t-host t-user))) | |
30459 | 3824 |
28210 | 3825 ;; newname was local. |
3826 (if temp1 | |
3827 (ange-ftp-real-copy-file temp1 newname t))) | |
30459 | 3828 |
28210 | 3829 ;; clean up |
3830 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
3831 (and temp2 (ange-ftp-del-tmp-name temp2)) | |
3832 (ange-ftp-call-cont cont result line))) | |
3833 | |
3834 (defun ange-ftp-copy-file (filename newname &optional ok-if-already-exists | |
108077
93125d6fab29
Implement SELINUX backends.
Michael Albinus <michael.albinus@gmx.de>
parents:
107379
diff
changeset
|
3835 keep-date preserve-uid-gid |
93125d6fab29
Implement SELINUX backends.
Michael Albinus <michael.albinus@gmx.de>
parents:
107379
diff
changeset
|
3836 preserve-selinux-context) |
28210 | 3837 (interactive "fCopy file: \nFCopy %s to file: \np") |
3838 (ange-ftp-copy-file-internal filename | |
3839 newname | |
3840 ok-if-already-exists | |
3841 keep-date | |
3842 nil | |
3843 nil | |
105372
bd2966850aac
Use `called-interactively-p' instead of `interactive-p'.
Juanma Barranquero <lekktu@gmail.com>
parents:
105350
diff
changeset
|
3844 (called-interactively-p 'interactive))) |
39839
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3845 |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3846 (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
|
3847 "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
|
3848 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
|
3849 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
|
3850 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
|
3851 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
|
3852 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
|
3853 (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
|
3854 E.g., |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3855 (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
|
3856 (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
|
3857 (if files |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3858 (let* ((ff (car files)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3859 (from-file (nth 0 ff)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3860 (to-file (nth 1 ff)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3861 (ok-if-exists (nth 2 ff)) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3862 (keep-date (nth 3 ff))) |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3863 (ange-ftp-copy-file-internal |
c5c5558d34cc
(ange-ftp-copy-files-async): New function for
Sam Steingold <sds@gnu.org>
parents:
39533
diff
changeset
|
3864 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
|
3865 (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
|
3866 (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
|
3867 t)) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3868 (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
|
3869 |
28210 | 3870 |
3871 ;;;; ------------------------------------------------------------ | |
3872 ;;;; File renaming support. | |
3873 ;;;; ------------------------------------------------------------ | |
3874 | |
3875 (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
|
3876 "Rename remote file FILENAME to remote file NEWNAME." |
28210 | 3877 (let ((f-host (nth 0 f-parsed)) |
3878 (f-user (nth 1 f-parsed)) | |
3879 (t-host (nth 0 t-parsed)) | |
3880 (t-user (nth 1 t-parsed))) | |
3881 (if (and (string-equal f-host t-host) | |
3882 (string-equal f-user t-user)) | |
3883 (let* ((f-name (ange-ftp-quote-string (nth 2 f-parsed))) | |
3884 (t-name (ange-ftp-quote-string (nth 2 t-parsed))) | |
3885 (cmd (list 'rename f-name t-name)) | |
3886 (fabbr (ange-ftp-abbreviate-filename filename)) | |
3887 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3888 (result (ange-ftp-send-cmd f-host f-user cmd | |
3889 (format "Renaming %s to %s" | |
3890 fabbr | |
3891 nabbr)))) | |
3892 (or (car result) | |
3893 (signal 'ftp-error | |
3894 (list | |
3895 "Renaming" | |
3896 (format "FTP Error: \"%s\"" (cdr result)) | |
3897 filename | |
3898 newname))) | |
3899 (ange-ftp-add-file-entry newname) | |
3900 (ange-ftp-delete-file-entry filename)) | |
3901 (ange-ftp-copy-file-internal filename newname t nil) | |
108806
511da81b16c5
Change delete-by-moving-to-trash so Lisp calls explicitly request trashing.
Chong Yidong <cyd@stupidchicken.com>
parents:
108244
diff
changeset
|
3902 (delete-file filename)))) |
28210 | 3903 |
3904 (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
|
3905 "Rename local file FILENAME to remote file NEWNAME." |
28210 | 3906 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) |
3907 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3908 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3909 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3910 (let (ange-ftp-process-verbose) | |
108806
511da81b16c5
Change delete-by-moving-to-trash so Lisp calls explicitly request trashing.
Chong Yidong <cyd@stupidchicken.com>
parents:
108244
diff
changeset
|
3911 (delete-file filename)))) |
28210 | 3912 |
3913 (defun ange-ftp-rename-remote-to-local (filename newname) | |
3914 "Rename remote file FILENAME to local file NEWNAME." | |
3915 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) | |
3916 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
3917 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
3918 (ange-ftp-copy-file-internal filename newname t nil msg) | |
3919 (let (ange-ftp-process-verbose) | |
108806
511da81b16c5
Change delete-by-moving-to-trash so Lisp calls explicitly request trashing.
Chong Yidong <cyd@stupidchicken.com>
parents:
108244
diff
changeset
|
3920 (delete-file filename)))) |
28210 | 3921 |
3922 (defun ange-ftp-rename-file (filename newname &optional ok-if-already-exists) | |
3923 (interactive "fRename file: \nFRename %s to file: \np") | |
3924 (setq filename (expand-file-name filename)) | |
3925 (setq newname (expand-file-name newname)) | |
3926 (let* ((f-parsed (ange-ftp-ftp-name filename)) | |
3927 (t-parsed (ange-ftp-ftp-name newname))) | |
3928 (if (and (or f-parsed t-parsed) | |
3929 (or (not ok-if-already-exists) | |
3930 (numberp ok-if-already-exists))) | |
3931 (ange-ftp-barf-or-query-if-file-exists | |
3932 newname | |
3933 "rename to it" | |
3934 (numberp ok-if-already-exists))) | |
3935 (if f-parsed | |
3936 (if t-parsed | |
3937 (ange-ftp-rename-remote-to-remote filename newname f-parsed | |
3938 t-parsed) | |
3939 (ange-ftp-rename-remote-to-local filename newname)) | |
3940 (if t-parsed | |
3941 (ange-ftp-rename-local-to-remote filename newname) | |
3942 (ange-ftp-real-rename-file filename newname ok-if-already-exists))))) | |
3943 | |
3944 ;;;; ------------------------------------------------------------ | |
3945 ;;;; File name completion support. | |
3946 ;;;; ------------------------------------------------------------ | |
3947 | |
3948 ;; If the file entry is not a directory (nor a symlink pointing to a directory) | |
3949 ;; returns whether the file (or file pointed to by the symlink) is ignored | |
3950 ;; by completion-ignored-extensions. | |
3951 ;; Note that `ange-ftp-this-dir' and `ange-ftp-completion-ignored-pattern' | |
3952 ;; are used as free variables. | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3953 (defun ange-ftp-file-entry-not-ignored-p (symname val) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3954 (if (stringp val) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3955 (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
|
3956 (or (file-directory-p file) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3957 (and (file-exists-p file) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3958 (not (string-match ange-ftp-completion-ignored-pattern |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3959 symname))))) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3960 (or val ; is a directory name |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3961 (not (string-match ange-ftp-completion-ignored-pattern symname))))) |
28210 | 3962 |
42740
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
3963 (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
|
3964 ;; 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
|
3965 ;; (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
|
3966 (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
|
3967 (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
|
3968 (string-equal "/" dir))) |
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
3969 |
28210 | 3970 (defun ange-ftp-file-name-all-completions (file dir) |
3971 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
3972 (if (ange-ftp-ftp-name ange-ftp-this-dir) | |
3973 (progn | |
3974 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
3975 (setq ange-ftp-this-dir | |
3976 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) | |
3977 (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
|
3978 (completions (all-completions file tbl))) |
28210 | 3979 |
3980 ;; see whether each matching file is a directory or not... | |
3981 (mapcar | |
30459 | 3982 (lambda (file) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3983 (let ((ent (gethash file tbl))) |
30459 | 3984 (if (and ent |
3985 (or (not (stringp ent)) | |
3986 (file-directory-p | |
3987 (ange-ftp-expand-symlink ent | |
3988 ange-ftp-this-dir)))) | |
3989 (concat file "/") | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
3990 file))) |
28210 | 3991 completions))) |
3992 | |
42740
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
3993 (if (ange-ftp-root-dir-p ange-ftp-this-dir) |
28210 | 3994 (nconc (all-completions file (ange-ftp-generate-root-prefixes)) |
3995 (ange-ftp-real-file-name-all-completions file | |
3996 ange-ftp-this-dir)) | |
3997 (ange-ftp-real-file-name-all-completions file ange-ftp-this-dir))))) | |
3998 | |
74766
ca4412906dbd
* net/ange-ftp.el (ange-ftp-file-name-completion): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
68648
diff
changeset
|
3999 (defun ange-ftp-file-name-completion (file dir &optional predicate) |
28210 | 4000 (let ((ange-ftp-this-dir (expand-file-name dir))) |
4001 (if (ange-ftp-ftp-name ange-ftp-this-dir) | |
4002 (progn | |
4003 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
4004 (if (equal file "") | |
4005 "" | |
4006 (setq ange-ftp-this-dir | |
4007 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) ;real? | |
4008 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
4009 (ange-ftp-completion-ignored-pattern | |
30459 | 4010 (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
|
4011 (concat (regexp-quote s) "$") |
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
4012 "/")) ; / never in filename |
28210 | 4013 completion-ignored-extensions |
4014 "\\|"))) | |
4015 (save-match-data | |
4016 (or (ange-ftp-file-name-completion-1 | |
4017 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
|
4018 'ange-ftp-file-entry-not-ignored-p) |
28210 | 4019 (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
|
4020 file tbl ange-ftp-this-dir)))))) |
28210 | 4021 |
42740
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
4022 (if (ange-ftp-root-dir-p ange-ftp-this-dir) |
28210 | 4023 (try-completion |
4024 file | |
4025 (nconc (ange-ftp-generate-root-prefixes) | |
45432
85b978f04df7
(ange-ftp-generate-root-prefixes)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45260
diff
changeset
|
4026 (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
|
4027 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
|
4028 predicate) |
ca4412906dbd
* net/ange-ftp.el (ange-ftp-file-name-completion): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
68648
diff
changeset
|
4029 (if predicate |
ca4412906dbd
* net/ange-ftp.el (ange-ftp-file-name-completion): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
68648
diff
changeset
|
4030 (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
|
4031 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
|
4032 (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
|
4033 file ange-ftp-this-dir)))))) |
28210 | 4034 |
4035 | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
4036 (defun ange-ftp-file-name-completion-1 (file tbl dir &optional predicate) |
28210 | 4037 (let ((bestmatch (try-completion file tbl predicate))) |
4038 (if bestmatch | |
4039 (if (eq bestmatch t) | |
4040 (if (file-directory-p (expand-file-name file dir)) | |
4041 (concat file "/") | |
4042 t) | |
4043 (if (and (eq (try-completion bestmatch tbl predicate) t) | |
4044 (file-directory-p | |
4045 (expand-file-name bestmatch dir))) | |
4046 (concat bestmatch "/") | |
4047 bestmatch))))) | |
4048 | |
4049 ;; Put these lines uncommmented in your .emacs if you want C-r to refresh | |
4050 ;; ange-ftp's cache whilst doing filename completion. | |
4051 ;; | |
4052 ;;(define-key minibuffer-local-completion-map "\C-r" 'ange-ftp-re-read-dir) | |
4053 ;;(define-key minibuffer-local-must-match-map "\C-r" 'ange-ftp-re-read-dir) | |
4054 | |
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
|
4055 ;;;###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
|
4056 (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
|
4057 |
28210 | 4058 ;;;###autoload |
4059 (defun ange-ftp-reread-dir (&optional dir) | |
4060 "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
|
4061 The implementation of remote FTP file names caches directory contents |
28210 | 4062 for speed. Therefore, when new remote files are created, Emacs |
4063 may not know they exist. You can use this command to reread a specific | |
4064 directory, so that Emacs will know its current contents." | |
4065 (interactive) | |
4066 (if dir | |
4067 (setq dir (expand-file-name dir)) | |
4068 (setq dir (file-name-directory (expand-file-name (buffer-string))))) | |
4069 (if (ange-ftp-ftp-name dir) | |
4070 (progn | |
4071 (setq ange-ftp-ls-cache-file nil) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
4072 (remhash dir ange-ftp-files-hashtable) |
28210 | 4073 (ange-ftp-get-files dir t)))) |
4074 | |
4075 (defun ange-ftp-make-directory (dir &optional parents) | |
4076 (interactive (list (expand-file-name (read-file-name "Make directory: ")))) | |
4077 (if parents | |
4078 (let ((parent (file-name-directory (directory-file-name dir)))) | |
4079 (or (file-exists-p parent) | |
4080 (ange-ftp-make-directory parent parents)))) | |
4081 (if (file-exists-p dir) | |
4082 (error "Cannot make directory %s: file already exists" dir) | |
4083 (let ((parsed (ange-ftp-ftp-name dir))) | |
4084 (if parsed | |
4085 (let* ((host (nth 0 parsed)) | |
4086 (user (nth 1 parsed)) | |
4087 ;; Some ftp's on unix machines (at least on Suns) | |
4088 ;; insist that mkdir take a filename, and not a | |
4089 ;; directory-name name as an arg. Argh!! This is a bug. | |
4090 ;; Non-unix machines will probably always insist | |
4091 ;; that mkdir takes a directory-name as an arg | |
4092 ;; (as the ftp man page says it should). | |
4093 (name (ange-ftp-quote-string | |
4094 (if (eq (ange-ftp-host-type host) 'unix) | |
4095 (ange-ftp-real-directory-file-name (nth 2 parsed)) | |
4096 (ange-ftp-real-file-name-as-directory | |
4097 (nth 2 parsed))))) | |
4098 (abbr (ange-ftp-abbreviate-filename dir)) | |
4099 (result (ange-ftp-send-cmd host user | |
4100 (list 'mkdir name) | |
4101 (format "Making directory %s" | |
4102 abbr)))) | |
4103 (or (car result) | |
4104 (ange-ftp-error host user | |
4105 (format "Could not make directory %s: %s" | |
4106 dir | |
4107 (cdr result)))) | |
4108 (ange-ftp-add-file-entry dir t)) | |
4109 (ange-ftp-real-make-directory dir))))) | |
4110 | |
105350
05719e53cf8b
* net/ange-ftp.el (ange-ftp-delete-directory ): Add optional
Michael Albinus <michael.albinus@gmx.de>
parents:
104933
diff
changeset
|
4111 (defun ange-ftp-delete-directory (dir &optional recursive) |
28210 | 4112 (if (file-directory-p dir) |
4113 (let ((parsed (ange-ftp-ftp-name dir))) | |
105382
7cb911a9baab
* net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
Michael Albinus <michael.albinus@gmx.de>
parents:
105372
diff
changeset
|
4114 (if recursive |
7cb911a9baab
* net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
Michael Albinus <michael.albinus@gmx.de>
parents:
105372
diff
changeset
|
4115 (mapc |
7cb911a9baab
* net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
Michael Albinus <michael.albinus@gmx.de>
parents:
105372
diff
changeset
|
4116 (lambda (file) |
7cb911a9baab
* net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
Michael Albinus <michael.albinus@gmx.de>
parents:
105372
diff
changeset
|
4117 (if (file-directory-p file) |
7cb911a9baab
* net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
Michael Albinus <michael.albinus@gmx.de>
parents:
105372
diff
changeset
|
4118 (ange-ftp-delete-directory file recursive) |
7cb911a9baab
* net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
Michael Albinus <michael.albinus@gmx.de>
parents:
105372
diff
changeset
|
4119 (delete-file file))) |
7cb911a9baab
* net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
Michael Albinus <michael.albinus@gmx.de>
parents:
105372
diff
changeset
|
4120 ;; We do not want to delete "." and "..". |
7cb911a9baab
* net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
Michael Albinus <michael.albinus@gmx.de>
parents:
105372
diff
changeset
|
4121 (directory-files |
7cb911a9baab
* net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
Michael Albinus <michael.albinus@gmx.de>
parents:
105372
diff
changeset
|
4122 dir 'full "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*"))) |
28210 | 4123 (if parsed |
4124 (let* ((host (nth 0 parsed)) | |
4125 (user (nth 1 parsed)) | |
4126 ;; Some ftp's on unix machines (at least on Suns) | |
4127 ;; insist that rmdir take a filename, and not a | |
4128 ;; directory-name name as an arg. Argh!! This is a bug. | |
4129 ;; Non-unix machines will probably always insist | |
4130 ;; that rmdir takes a directory-name as an arg | |
4131 ;; (as the ftp man page says it should). | |
4132 (name (ange-ftp-quote-string | |
4133 (if (eq (ange-ftp-host-type host) 'unix) | |
4134 (ange-ftp-real-directory-file-name | |
4135 (nth 2 parsed)) | |
4136 (ange-ftp-real-file-name-as-directory | |
4137 (nth 2 parsed))))) | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
4138 (abbr (ange-ftp-abbreviate-filename dir)) |
105382
7cb911a9baab
* net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
Michael Albinus <michael.albinus@gmx.de>
parents:
105372
diff
changeset
|
4139 (result |
7cb911a9baab
* net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
Michael Albinus <michael.albinus@gmx.de>
parents:
105372
diff
changeset
|
4140 (progn |
7cb911a9baab
* net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
Michael Albinus <michael.albinus@gmx.de>
parents:
105372
diff
changeset
|
4141 ;; CWD must not in this directory. |
7cb911a9baab
* net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
Michael Albinus <michael.albinus@gmx.de>
parents:
105372
diff
changeset
|
4142 (ange-ftp-cd host user "/" 'noerror) |
7cb911a9baab
* net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
Michael Albinus <michael.albinus@gmx.de>
parents:
105372
diff
changeset
|
4143 (ange-ftp-send-cmd host user |
7cb911a9baab
* net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
Michael Albinus <michael.albinus@gmx.de>
parents:
105372
diff
changeset
|
4144 (list 'rmdir name) |
7cb911a9baab
* net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
Michael Albinus <michael.albinus@gmx.de>
parents:
105372
diff
changeset
|
4145 (format "Removing directory %s" |
7cb911a9baab
* net/ange-ftp.el (ange-ftp-generate-passwd-key): Check, whether
Michael Albinus <michael.albinus@gmx.de>
parents:
105372
diff
changeset
|
4146 abbr))))) |
28210 | 4147 (or (car result) |
4148 (ange-ftp-error host user | |
4149 (format "Could not remove directory %s: %s" | |
4150 dir | |
4151 (cdr result)))) | |
4152 (ange-ftp-delete-file-entry dir t)) | |
105350
05719e53cf8b
* net/ange-ftp.el (ange-ftp-delete-directory ): Add optional
Michael Albinus <michael.albinus@gmx.de>
parents:
104933
diff
changeset
|
4153 (ange-ftp-real-delete-directory dir recursive))) |
28210 | 4154 (error "Not a directory: %s" dir))) |
4155 | |
4156 ;; Make a local copy of FILE and return its name. | |
4157 | |
4158 (defun ange-ftp-file-local-copy (file) | |
4159 (let* ((fn1 (expand-file-name file)) | |
4160 (pa1 (ange-ftp-ftp-name fn1))) | |
4161 (if pa1 | |
4162 (let ((tmp1 (ange-ftp-make-tmp-name (car pa1)))) | |
4163 (ange-ftp-copy-file-internal fn1 tmp1 t nil | |
4164 (format "Getting %s" fn1)) | |
4165 tmp1)))) | |
4166 | |
81937
c2b7868011b1
* net/ange-ftp.el: (ange-ftp-file-remote-p): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
81758
diff
changeset
|
4167 (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
|
4168 (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
|
4169 (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
|
4170 (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
|
4171 (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
|
4172 (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
|
4173 (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
|
4174 (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
|
4175 (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
|
4176 (cond |
c2b7868011b1
* net/ange-ftp.el: (ange-ftp-file-remote-p): Handle optional
Michael Albinus <michael.albinus@gmx.de>
parents:
81758
diff
changeset
|
4177 ((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
|
4178 ((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
|
4179 ((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
|
4180 ((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
|
4181 (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
|
4182 |
28210 | 4183 (defun ange-ftp-load (file &optional noerror nomessage nosuffix) |
4184 (if (ange-ftp-ftp-name file) | |
4185 (let ((tryfiles (if nosuffix | |
4186 (list file) | |
4187 (list (concat file ".elc") (concat file ".el") file))) | |
4188 ;; make sure there are no references to temp files | |
4189 (load-force-doc-strings t) | |
4190 copy) | |
4191 (while (and tryfiles (not copy)) | |
4192 (catch 'ftp-error | |
4193 (let ((ange-ftp-waiting-flag t)) | |
4194 (condition-case error | |
4195 (setq copy (ange-ftp-file-local-copy (car tryfiles))) | |
4196 (ftp-error nil)))) | |
4197 (setq tryfiles (cdr tryfiles))) | |
4198 (if copy | |
4199 (unwind-protect | |
4200 (funcall 'load copy noerror nomessage nosuffix) | |
108806
511da81b16c5
Change delete-by-moving-to-trash so Lisp calls explicitly request trashing.
Chong Yidong <cyd@stupidchicken.com>
parents:
108244
diff
changeset
|
4201 (delete-file copy)) |
28210 | 4202 (or noerror |
4203 (signal 'file-error (list "Cannot open load file" file))) | |
4204 nil)) | |
4205 (ange-ftp-real-load file noerror nomessage nosuffix))) | |
4206 | |
4207 ;; Calculate default-unhandled-directory for a given ange-ftp buffer. | |
4208 (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
|
4209 nil) |
28210 | 4210 |
4211 | |
4212 ;; Need the following functions for making filenames of compressed | |
4213 ;; files, because some OS's (unlike UNIX) do not allow a filename to | |
4214 ;; have two extensions. | |
4215 | |
4216 (defvar ange-ftp-make-compressed-filename-alist nil | |
4217 "Alist of host-type-specific functions to process file names for compression. | |
4218 Each element has the form (TYPE . FUNC). | |
4219 FUNC should take one argument, a file name, and return a list | |
4220 of the form (COMPRESSING NEWNAME). | |
30459 | 4221 COMPRESSING should be t if the specified file should be compressed, |
28210 | 4222 and nil if it should be uncompressed (that is, if it is a compressed file). |
4223 NEWNAME should be the name to give the new compressed or uncompressed file.") | |
4224 | |
104933
5d527d3bf1fa
(dired-compress-file): Declare.
Glenn Morris <rgm@gnu.org>
parents:
104733
diff
changeset
|
4225 (declare-function dired-compress-file "dired-aux" (file)) |
5d527d3bf1fa
(dired-compress-file): Declare.
Glenn Morris <rgm@gnu.org>
parents:
104733
diff
changeset
|
4226 |
28210 | 4227 (defun ange-ftp-dired-compress-file (name) |
104933
5d527d3bf1fa
(dired-compress-file): Declare.
Glenn Morris <rgm@gnu.org>
parents:
104733
diff
changeset
|
4228 "Handler used by `dired-compress-file'." |
28210 | 4229 (let ((parsed (ange-ftp-ftp-name name)) |
4230 conversion-func) | |
4231 (if (and parsed | |
4232 (setq conversion-func | |
4233 (cdr (assq (ange-ftp-host-type (car parsed)) | |
4234 ange-ftp-make-compressed-filename-alist)))) | |
4235 (let* ((decision | |
4236 (save-match-data (funcall conversion-func name))) | |
4237 (compressing (car decision)) | |
4238 (newfile (nth 1 decision))) | |
4239 (if compressing | |
4240 (ange-ftp-compress name newfile) | |
4241 (ange-ftp-uncompress name newfile))) | |
4242 (let (file-name-handler-alist) | |
4243 (dired-compress-file name))))) | |
4244 | |
4245 ;; Copy FILE to this machine, compress it, and copy out to NFILE. | |
4246 (defun ange-ftp-compress (file nfile) | |
4247 (let* ((parsed (ange-ftp-ftp-name file)) | |
4248 (tmp1 (ange-ftp-make-tmp-name (car parsed))) | |
4249 (tmp2 (ange-ftp-make-tmp-name (car parsed))) | |
4250 (abbr (ange-ftp-abbreviate-filename file)) | |
4251 (nabbr (ange-ftp-abbreviate-filename nfile)) | |
4252 (msg1 (format "Getting %s" abbr)) | |
4253 (msg2 (format "Putting %s" nabbr))) | |
4254 (unwind-protect | |
4255 (progn | |
4256 (ange-ftp-copy-file-internal file tmp1 t nil msg1) | |
4257 (and ange-ftp-process-verbose | |
4258 (ange-ftp-message "Compressing %s..." abbr)) | |
4259 (call-process-region (point) | |
4260 (point) | |
4261 shell-file-name | |
4262 nil | |
4263 t | |
4264 nil | |
4265 "-c" | |
4266 (format "compress -f -c < %s > %s" tmp1 tmp2)) | |
4267 (and ange-ftp-process-verbose | |
4268 (ange-ftp-message "Compressing %s...done" abbr)) | |
4269 (if (zerop (buffer-size)) | |
4270 (progn | |
4271 (let (ange-ftp-process-verbose) | |
108806
511da81b16c5
Change delete-by-moving-to-trash so Lisp calls explicitly request trashing.
Chong Yidong <cyd@stupidchicken.com>
parents:
108244
diff
changeset
|
4272 (delete-file file)) |
28210 | 4273 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4274 (ange-ftp-del-tmp-name tmp1) | |
4275 (ange-ftp-del-tmp-name tmp2)))) | |
30459 | 4276 |
28210 | 4277 ;; Copy FILE to this machine, uncompress it, and copy out to NFILE. |
4278 (defun ange-ftp-uncompress (file nfile) | |
4279 (let* ((parsed (ange-ftp-ftp-name file)) | |
4280 (tmp1 (ange-ftp-make-tmp-name (car parsed))) | |
4281 (tmp2 (ange-ftp-make-tmp-name (car parsed))) | |
4282 (abbr (ange-ftp-abbreviate-filename file)) | |
4283 (nabbr (ange-ftp-abbreviate-filename nfile)) | |
4284 (msg1 (format "Getting %s" abbr)) | |
4285 (msg2 (format "Putting %s" nabbr)) | |
4286 ;; ;; Cheap hack because of problems with binary file transfers from | |
4287 ;; ;; VMS hosts. | |
4288 ;; (gbinary (not (eq 'vms (ange-ftp-host-type (car parsed))))) | |
4289 ) | |
4290 (unwind-protect | |
4291 (progn | |
4292 (ange-ftp-copy-file-internal file tmp1 t nil msg1) | |
4293 (and ange-ftp-process-verbose | |
4294 (ange-ftp-message "Uncompressing %s..." abbr)) | |
4295 (call-process-region (point) | |
4296 (point) | |
4297 shell-file-name | |
4298 nil | |
4299 t | |
4300 nil | |
4301 "-c" | |
4302 (format "uncompress -c < %s > %s" tmp1 tmp2)) | |
4303 (and ange-ftp-process-verbose | |
4304 (ange-ftp-message "Uncompressing %s...done" abbr)) | |
4305 (if (zerop (buffer-size)) | |
4306 (progn | |
4307 (let (ange-ftp-process-verbose) | |
108806
511da81b16c5
Change delete-by-moving-to-trash so Lisp calls explicitly request trashing.
Chong Yidong <cyd@stupidchicken.com>
parents:
108244
diff
changeset
|
4308 (delete-file file)) |
28210 | 4309 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) |
4310 (ange-ftp-del-tmp-name tmp1) | |
4311 (ange-ftp-del-tmp-name tmp2)))) | |
4312 | |
4313 (defun ange-ftp-find-backup-file-name (fn) | |
4314 ;; Either return the ordinary backup name, etc., | |
4315 ;; or return nil meaning don't make a backup. | |
4316 (if ange-ftp-make-backup-files | |
4317 (ange-ftp-real-find-backup-file-name fn))) | |
4318 | |
4319 ;;; Define the handler for special file names | |
4320 ;;; that causes ange-ftp to be invoked. | |
4321 | |
4322 ;;;###autoload | |
4323 (defun ange-ftp-hook-function (operation &rest args) | |
4324 (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
|
4325 (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
|
4326 ;; 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
|
4327 (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
|
4328 (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
|
4329 (save-match-data (apply fn args))) |
78423
ca1e15221b34
*** empty log message ***
Michael Albinus <michael.albinus@gmx.de>
parents:
78422
diff
changeset
|
4330 (error (signal (car err) (cdr err)))) |
28210 | 4331 (ange-ftp-run-real-handler operation args)))) |
4332 | |
46349
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4333 ;; 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
|
4334 ;; 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
|
4335 |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4336 ;;-;;; 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
|
4337 ;;-;;; and colon). |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4338 ;;-;;; 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
|
4339 ;;-;;;###autoload |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4340 ;;-(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
|
4341 ;;- (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
|
4342 ;;- (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
|
4343 ;;- 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
|
4344 ;;- |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4345 ;;-;;; 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
|
4346 ;;-;;; 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
|
4347 ;;-;;;###autoload |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4348 ;;-(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
|
4349 ;;- (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
|
4350 ;;- (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
|
4351 ;;- 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
|
4352 ;;- |
4f0aafa6b3bf
Do not hook into file-name-handler-alist, this
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
46336
diff
changeset
|
4353 ;;-;;; 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
|
4354 ;;-;;; 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
|
4355 ;;-;;; 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
|
4356 ;;-;;; 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
|
4357 ;;-(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
|
4358 ;;- (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
|
4359 ;;- (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
|
4360 ;;- (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
|
4361 ;;- 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
|
4362 ;;- file-name-handler-alist)))) |
28210 | 4363 |
4364 ;;; The above two forms are sufficient to cause this file to be loaded | |
4365 ;;; if the user ever uses a file name with a colon in it. | |
4366 | |
30459 | 4367 ;;; This sets the mode |
46178
cd546ee24e14
Use add-hook and find-file-hook.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46143
diff
changeset
|
4368 (add-hook 'find-file-hook 'ange-ftp-set-buffer-mode) |
28210 | 4369 |
4370 ;;; Now say where to find the handlers for particular operations. | |
4371 | |
4372 (put 'file-name-directory 'ange-ftp 'ange-ftp-file-name-directory) | |
4373 (put 'file-name-nondirectory 'ange-ftp 'ange-ftp-file-name-nondirectory) | |
4374 (put 'file-name-as-directory 'ange-ftp 'ange-ftp-file-name-as-directory) | |
4375 (put 'directory-file-name 'ange-ftp 'ange-ftp-directory-file-name) | |
4376 (put 'expand-file-name 'ange-ftp 'ange-ftp-expand-file-name) | |
4377 (put 'make-directory 'ange-ftp 'ange-ftp-make-directory) | |
4378 (put 'delete-directory 'ange-ftp 'ange-ftp-delete-directory) | |
4379 (put 'insert-file-contents 'ange-ftp 'ange-ftp-insert-file-contents) | |
4380 (put 'directory-files 'ange-ftp 'ange-ftp-directory-files) | |
106309
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
4381 (put 'directory-files-and-attributes 'ange-ftp |
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
4382 'ange-ftp-directory-files-and-attributes) |
28210 | 4383 (put 'file-directory-p 'ange-ftp 'ange-ftp-file-directory-p) |
4384 (put 'file-writable-p 'ange-ftp 'ange-ftp-file-writable-p) | |
4385 (put 'file-readable-p 'ange-ftp 'ange-ftp-file-readable-p) | |
4386 (put 'file-executable-p 'ange-ftp 'ange-ftp-file-executable-p) | |
4387 (put 'file-symlink-p 'ange-ftp 'ange-ftp-file-symlink-p) | |
4388 (put 'delete-file 'ange-ftp 'ange-ftp-delete-file) | |
4389 (put 'verify-visited-file-modtime 'ange-ftp | |
4390 'ange-ftp-verify-visited-file-modtime) | |
4391 (put 'file-exists-p 'ange-ftp 'ange-ftp-file-exists-p) | |
4392 (put 'write-region 'ange-ftp 'ange-ftp-write-region) | |
4393 (put 'copy-file 'ange-ftp 'ange-ftp-copy-file) | |
4394 (put 'rename-file 'ange-ftp 'ange-ftp-rename-file) | |
4395 (put 'file-attributes 'ange-ftp 'ange-ftp-file-attributes) | |
30481 | 4396 (put 'file-newer-than-file-p 'ange-ftp 'ange-ftp-file-newer-than-file-p) |
28210 | 4397 (put 'file-name-all-completions 'ange-ftp 'ange-ftp-file-name-all-completions) |
4398 (put 'file-name-completion 'ange-ftp 'ange-ftp-file-name-completion) | |
4399 (put 'insert-directory 'ange-ftp 'ange-ftp-insert-directory) | |
4400 (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
|
4401 (put 'file-remote-p 'ange-ftp 'ange-ftp-file-remote-p) |
28210 | 4402 (put 'unhandled-file-name-directory 'ange-ftp |
4403 'ange-ftp-unhandled-file-name-directory) | |
4404 (put 'file-name-sans-versions 'ange-ftp 'ange-ftp-file-name-sans-versions) | |
4405 (put 'dired-uncache 'ange-ftp 'ange-ftp-dired-uncache) | |
4406 (put 'dired-compress-file 'ange-ftp 'ange-ftp-dired-compress-file) | |
4407 (put 'load 'ange-ftp 'ange-ftp-load) | |
4408 (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
|
4409 (put 'set-file-modes 'ange-ftp 'ange-ftp-set-file-modes) |
28210 | 4410 |
4411 ;; Turn off truename processing to save time. | |
4412 ;; Treat each name as its own truename. | |
4413 (put 'file-truename 'ange-ftp 'identity) | |
4414 | |
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
|
4415 ;; 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
|
4416 ;; 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
|
4417 ;; 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
|
4418 (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
|
4419 |
28210 | 4420 ;; Turn off RCS/SCCS processing to save time. |
4421 ;; This returns nil for any file name as argument. | |
4422 (put 'vc-registered 'ange-ftp 'null) | |
4423 | |
81758
f03856eb136b
* files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
81639
diff
changeset
|
4424 ;; 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
|
4425 ;; 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
|
4426 (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
|
4427 (put 'start-file-process 'ange-ftp 'ignore) |
28210 | 4428 (put 'shell-command 'ange-ftp 'ange-ftp-shell-command) |
4429 | |
4430 ;;; Define ways of getting at unmodified Emacs primitives, | |
4431 ;;; turning off our handler. | |
4432 | |
4433 (defun ange-ftp-run-real-handler (operation args) | |
4434 (let ((inhibit-file-name-handlers | |
4435 (cons 'ange-ftp-hook-function | |
4436 (cons 'ange-ftp-completion-hook-function | |
4437 (and (eq inhibit-file-name-operation operation) | |
4438 inhibit-file-name-handlers)))) | |
4439 (inhibit-file-name-operation operation)) | |
4440 (apply operation args))) | |
4441 | |
4442 (defun ange-ftp-real-file-name-directory (&rest args) | |
4443 (ange-ftp-run-real-handler 'file-name-directory args)) | |
4444 (defun ange-ftp-real-file-name-nondirectory (&rest args) | |
4445 (ange-ftp-run-real-handler 'file-name-nondirectory args)) | |
4446 (defun ange-ftp-real-file-name-as-directory (&rest args) | |
4447 (ange-ftp-run-real-handler 'file-name-as-directory args)) | |
4448 (defun ange-ftp-real-directory-file-name (&rest args) | |
4449 (ange-ftp-run-real-handler 'directory-file-name args)) | |
4450 (defun ange-ftp-real-expand-file-name (&rest args) | |
4451 (ange-ftp-run-real-handler 'expand-file-name args)) | |
4452 (defun ange-ftp-real-make-directory (&rest args) | |
4453 (ange-ftp-run-real-handler 'make-directory args)) | |
4454 (defun ange-ftp-real-delete-directory (&rest args) | |
4455 (ange-ftp-run-real-handler 'delete-directory args)) | |
4456 (defun ange-ftp-real-insert-file-contents (&rest args) | |
4457 (ange-ftp-run-real-handler 'insert-file-contents args)) | |
4458 (defun ange-ftp-real-directory-files (&rest args) | |
4459 (ange-ftp-run-real-handler 'directory-files args)) | |
106309
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
4460 (defun ange-ftp-real-directory-files-and-attributes (&rest args) |
9470a3d1abee
* net/ange-ftp.el (ange-ftp-parse-filename): Use `save-match-data'.
Michael Albinus <michael.albinus@gmx.de>
parents:
105811
diff
changeset
|
4461 (ange-ftp-run-real-handler 'directory-files-and-attributes args)) |
28210 | 4462 (defun ange-ftp-real-file-directory-p (&rest args) |
4463 (ange-ftp-run-real-handler 'file-directory-p args)) | |
4464 (defun ange-ftp-real-file-writable-p (&rest args) | |
4465 (ange-ftp-run-real-handler 'file-writable-p args)) | |
4466 (defun ange-ftp-real-file-readable-p (&rest args) | |
4467 (ange-ftp-run-real-handler 'file-readable-p args)) | |
4468 (defun ange-ftp-real-file-executable-p (&rest args) | |
4469 (ange-ftp-run-real-handler 'file-executable-p args)) | |
4470 (defun ange-ftp-real-file-symlink-p (&rest args) | |
4471 (ange-ftp-run-real-handler 'file-symlink-p args)) | |
4472 (defun ange-ftp-real-delete-file (&rest args) | |
4473 (ange-ftp-run-real-handler 'delete-file args)) | |
4474 (defun ange-ftp-real-verify-visited-file-modtime (&rest args) | |
4475 (ange-ftp-run-real-handler 'verify-visited-file-modtime args)) | |
4476 (defun ange-ftp-real-file-exists-p (&rest args) | |
4477 (ange-ftp-run-real-handler 'file-exists-p args)) | |
4478 (defun ange-ftp-real-write-region (&rest args) | |
4479 (ange-ftp-run-real-handler 'write-region args)) | |
4480 (defun ange-ftp-real-backup-buffer (&rest args) | |
4481 (ange-ftp-run-real-handler 'backup-buffer args)) | |
4482 (defun ange-ftp-real-copy-file (&rest args) | |
4483 (ange-ftp-run-real-handler 'copy-file args)) | |
4484 (defun ange-ftp-real-rename-file (&rest args) | |
4485 (ange-ftp-run-real-handler 'rename-file args)) | |
4486 (defun ange-ftp-real-file-attributes (&rest args) | |
4487 (ange-ftp-run-real-handler 'file-attributes args)) | |
30481 | 4488 (defun ange-ftp-real-file-newer-than-file-p (&rest args) |
4489 (ange-ftp-run-real-handler 'file-newer-than-file-p args)) | |
28210 | 4490 (defun ange-ftp-real-file-name-all-completions (&rest args) |
4491 (ange-ftp-run-real-handler 'file-name-all-completions args)) | |
4492 (defun ange-ftp-real-file-name-completion (&rest args) | |
4493 (ange-ftp-run-real-handler 'file-name-completion args)) | |
4494 (defun ange-ftp-real-insert-directory (&rest args) | |
4495 (ange-ftp-run-real-handler 'insert-directory args)) | |
4496 (defun ange-ftp-real-file-name-sans-versions (&rest args) | |
4497 (ange-ftp-run-real-handler 'file-name-sans-versions args)) | |
4498 (defun ange-ftp-real-shell-command (&rest args) | |
4499 (ange-ftp-run-real-handler 'shell-command args)) | |
4500 (defun ange-ftp-real-load (&rest args) | |
4501 (ange-ftp-run-real-handler 'load args)) | |
4502 (defun ange-ftp-real-find-backup-file-name (&rest args) | |
4503 (ange-ftp-run-real-handler 'find-backup-file-name args)) | |
4504 | |
4505 ;; Here we support using dired on remote hosts. | |
4506 ;; I have turned off the support for using dired on foreign directory formats. | |
4507 ;; That involves too many unclean hooks. | |
30459 | 4508 ;; It would be cleaner to support such operations by |
28210 | 4509 ;; converting the foreign directory format to something dired can understand; |
4510 ;; something close to ls -l output. | |
4511 ;; The logical place to do this is in the functions ange-ftp-parse-...-listing. | |
4512 | |
4513 ;; Some of the old dired hooks would still be needed even if this is done. | |
4514 ;; I have preserved (and modernized) those hooks. | |
4515 ;; So the format conversion should be all that is needed. | |
4516 | |
47575
4d9f899a5963
* dired.el (dired-insert-directory): Always add "--dired" to to
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
47113
diff
changeset
|
4517 ;; 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
|
4518 ;; `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
|
4519 |
28210 | 4520 (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
|
4521 (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
|
4522 (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
|
4523 ;; 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
|
4524 ;; 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
|
4525 ;; 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
|
4526 ;; "cd foo; ls" instead, this is not necesssary any more. |
107145
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4527 (let ((beg (point)) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4528 (end (point-marker))) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4529 (set-marker-insertion-type end t) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4530 (insert |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4531 (cond |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4532 (wildcard |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4533 (let ((default-directory (file-name-directory file))) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4534 (ange-ftp-ls (file-name-nondirectory file) switches nil nil t))) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4535 (full |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4536 (ange-ftp-ls file switches 'parse)) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4537 (t |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4538 ;; If `full' is nil we're going to do `ls' for a single file. |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4539 ;; Problem is that for various reasons, ange-ftp-ls needs to cd and |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4540 ;; then do an ls of current dir, which obviously won't work if we |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4541 ;; want to ls a file. So instead, we get a full listing of the |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4542 ;; parent directory and extract the line corresponding to `file'. |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4543 (when (string-match "-?d\\'" switches) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4544 ;; Remove "d" which dired added to `switches'. |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4545 (setq switches (substring switches 0 (match-beginning 0)))) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4546 (setq file (directory-file-name file)) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4547 (let* ((dirlist (ange-ftp-ls (or (file-name-directory file) ".") |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4548 switches 'parse)) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4549 (filename (file-name-nondirectory file)) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4550 (case-fold-search nil)) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4551 ;; FIXME: This presumes a particular output format, which is |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4552 ;; basically Unix. |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4553 (if (string-match (concat "^.+[^ ] " (regexp-quote filename) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4554 "\\( -> .*\\)?[@/*=]?\n") dirlist) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4555 (match-string 0 dirlist) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4556 ""))))) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4557 |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4558 ;; Insert " " for dired's alignment sanity. |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4559 (goto-char beg) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4560 (while (re-search-forward "^\\(\\S-\\)" end 'move) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4561 (replace-match " \\1")) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4562 |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4563 ;; The inserted file could be from somewhere else. |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4564 (when (and (not wildcard) (not full) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4565 (search-backward |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4566 (if (zerop (length (file-name-nondirectory |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4567 (expand-file-name file)))) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4568 "." |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4569 (file-name-nondirectory file)) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4570 nil 'noerror)) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4571 (replace-match (file-relative-name (expand-file-name file)) t) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4572 (goto-char end)) |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4573 |
541b767fb366
* files.el (insert-directory): When WILDCARD-REGEXP and
Michael Albinus <albinus@detlef>
parents:
107092
diff
changeset
|
4574 (set-marker end nil)))) |
28210 | 4575 |
4576 (defun ange-ftp-dired-uncache (dir) | |
4577 (if (ange-ftp-ftp-name (expand-file-name dir)) | |
4578 (setq ange-ftp-ls-cache-file nil))) | |
4579 | |
4580 (defvar ange-ftp-sans-version-alist nil | |
4581 "Alist of mapping host type into function to remove file version numbers.") | |
4582 | |
4583 (defun ange-ftp-file-name-sans-versions (file keep-backup-version) | |
4584 (let* ((short (ange-ftp-abbreviate-filename file)) | |
4585 (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
|
4586 (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
|
4587 ange-ftp-sans-version-alist))))) |
28210 | 4588 (if func (funcall func file keep-backup-version) |
4589 (ange-ftp-real-file-name-sans-versions file keep-backup-version)))) | |
4590 | |
4591 ;; This is the handler for shell-command. | |
4592 (defun ange-ftp-shell-command (command &optional output-buffer error-buffer) | |
4593 (let* ((parsed (ange-ftp-ftp-name default-directory)) | |
4594 (host (nth 0 parsed)) | |
4595 (user (nth 1 parsed)) | |
4596 (name (nth 2 parsed))) | |
4597 (if (not parsed) | |
4598 (ange-ftp-real-shell-command command output-buffer error-buffer) | |
4599 (if (> (length name) 0) ; else it's $HOME | |
4600 (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
|
4601 ;; Remove port from the hostname |
42740
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
4602 (when (string-match "\\(.*\\)#" host) |
50a74884f960
(ange-ftp-root-dir-p): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
42706
diff
changeset
|
4603 (setq host (match-string 1 host))) |
28210 | 4604 (setq command |
4605 (format "%s %s \"%s\"" ; remsh -l USER does not work well | |
4606 ; on a hp-ux machine I tried | |
4607 remote-shell-program host command)) | |
4608 (ange-ftp-message "Remote command '%s' ..." command) | |
4609 ;; Cannot call ange-ftp-real-dired-run-shell-command here as it | |
4610 ;; would prepend "cd default-directory" --- which bombs because | |
4611 ;; default-directory is in ange-ftp syntax for remote file names. | |
4612 (ange-ftp-real-shell-command command output-buffer error-buffer)))) | |
4613 | |
81639
8e5203081e80
* dired-aux.el: Remove `dired-call-process'.
Michael Albinus <michael.albinus@gmx.de>
parents:
76407
diff
changeset
|
4614 ;;; 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
|
4615 (defun ange-ftp-process-file (program infile buffer display &rest arguments) |
28210 | 4616 ;; PROGRAM is always one of those below in the cond in dired.el. |
4617 ;; The ARGUMENTS are (nearly) always files. | |
4618 (if (ange-ftp-ftp-name default-directory) | |
4619 ;; Can't use ange-ftp-dired-host-type here because the current | |
4620 ;; buffer is *dired-check-process output* | |
4621 (condition-case oops | |
105811
18865054beee
(top-level): Don't require dired when compiling.
Glenn Morris <rgm@gnu.org>
parents:
105658
diff
changeset
|
4622 (cond ((equal (or (bound-and-true-p dired-chmod-program) "chmod") |
18865054beee
(top-level): Don't require dired when compiling.
Glenn Morris <rgm@gnu.org>
parents:
105658
diff
changeset
|
4623 program) |
28210 | 4624 (ange-ftp-call-chmod arguments)) |
4625 ;; ((equal "chgrp" program)) | |
4626 ;; ((equal dired-chown-program program)) | |
4627 (t (error "Unknown remote command: %s" program))) | |
4628 (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
|
4629 (nth 1 oops) |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
4630 (nth 2 oops) |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
4631 (nth 3 oops))) |
28210 | 4632 ;; Caller expects nonzero value to mean failure. |
4633 1) | |
4634 (error (insert (format "%s\n" (nth 1 oops))) | |
4635 1)) | |
81639
8e5203081e80
* dired-aux.el: Remove `dired-call-process'.
Michael Albinus <michael.albinus@gmx.de>
parents:
76407
diff
changeset
|
4636 (apply 'call-process program infile buffer display arguments))) |
28210 | 4637 |
4638 ;; Handle an attempt to run chmod on a remote file | |
4639 ;; by using the ftp chmod command. | |
4640 (defun ange-ftp-call-chmod (args) | |
4641 (if (< (length args) 2) | |
4642 (error "ange-ftp-call-chmod: missing mode and/or filename: %s" args)) | |
4643 (let ((mode (car args)) | |
4644 (rest (cdr args))) | |
4645 (if (equal "--" (car rest)) | |
4646 (setq rest (cdr rest))) | |
84913
db1179979d6b
(ange-ftp-call-chmod, ange-ftp-parse-bs2000-listing):
Juanma Barranquero <lekktu@gmail.com>
parents:
83791
diff
changeset
|
4647 (mapc |
30459 | 4648 (lambda (file) |
4649 (setq file (expand-file-name file)) | |
4650 (let ((parsed (ange-ftp-ftp-name file))) | |
4651 (if parsed | |
4652 (let* ((host (nth 0 parsed)) | |
4653 (user (nth 1 parsed)) | |
4654 (name (ange-ftp-quote-string (nth 2 parsed))) | |
4655 (abbr (ange-ftp-abbreviate-filename file)) | |
4656 (result (ange-ftp-send-cmd host user | |
4657 (list 'chmod mode name) | |
4658 (format "doing chmod %s" | |
4659 abbr)))) | |
4660 (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
|
4661 (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
|
4662 host user (concat "CHMOD failed: " (cdr result)))))))) |
28210 | 4663 rest)) |
4664 (setq ange-ftp-ls-cache-file nil) ;Stop confusing Dired. | |
4665 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
|
4666 |
0bb3e7671842
* net/ange-ftp.el (ange-ftp-set-file-modes): New defun. Change
Michael Albinus <michael.albinus@gmx.de>
parents:
102715
diff
changeset
|
4667 (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
|
4668 (ange-ftp-call-chmod (list (format "%o" mode) filename))) |
28210 | 4669 |
64667
04315354635e
(ange-ftp-gateway-fatal-msgs, ange-ftp-pending-error-line): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64085
diff
changeset
|
4670 ;; 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
|
4671 ;; 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
|
4672 ;; replace ange-ftp-copy-file. |
28210 | 4673 |
4674 ;;;;; ------------------------------------------------------------ | |
4675 ;;;;; Noddy support for async copy-file within dired. | |
4676 ;;;;; ------------------------------------------------------------ | |
4677 | |
4678 ;;(defun ange-ftp-dired-copy-file (from to ok-flag &optional cont nowait) | |
4679 ;; "Documented as original." | |
4680 ;; (dired-handle-overwrite to) | |
4681 ;; (ange-ftp-copy-file-internal from to ok-flag dired-copy-preserve-time nil | |
4682 ;; cont nowait)) | |
4683 | |
4684 ;;(defun ange-ftp-dired-do-create-files (op-symbol file-creator operation arg | |
4685 ;; &optional marker-char op1 | |
4686 ;; how-to) | |
4687 ;; "Documented as original." | |
4688 ;; ;; we need to let ange-ftp-dired-create-files know that we indirectly | |
4689 ;; ;; called it rather than somebody else. | |
4690 ;; (let ((ange-ftp-dired-do-create-files t)) ; tell who caller is | |
4691 ;; (ange-ftp-real-dired-do-create-files op-symbol file-creator operation | |
4692 ;; arg marker-char op1 how-to))) | |
4693 | |
4694 ;;(defun ange-ftp-dired-create-files (file-creator operation fn-list name-constructor | |
4695 ;; &optional marker-char) | |
4696 ;; "Documented as original." | |
4697 ;; (if (and (boundp 'ange-ftp-dired-do-create-files) | |
4698 ;; ;; called from ange-ftp-dired-do-create-files? | |
4699 ;; ange-ftp-dired-do-create-files | |
4700 ;; ;; any files worth copying? | |
4701 ;; fn-list | |
4702 ;; ;; we only support async copy-file at the mo. | |
4703 ;; (eq file-creator 'dired-copy-file) | |
4704 ;; ;; it is only worth calling the alternative function for remote files | |
4705 ;; ;; as we tie ourself in recursive knots otherwise. | |
4706 ;; (or (ange-ftp-ftp-name (car fn-list)) | |
4707 ;; ;; we can only call the name constructor for dired-do-create-files | |
4708 ;; ;; since the one for regexps starts prompting here, there and | |
4709 ;; ;; everywhere. | |
4710 ;; (ange-ftp-ftp-name (funcall name-constructor (car fn-list))))) | |
4711 ;; ;; use the process-filter driven routine rather than the iterative one. | |
4712 ;; (ange-ftp-dcf-1 file-creator | |
4713 ;; operation | |
4714 ;; fn-list | |
4715 ;; name-constructor | |
4716 ;; (and (boundp 'target) target) ;dynamically bound | |
4717 ;; marker-char | |
4718 ;; (current-buffer) | |
4719 ;; nil ;overwrite-query | |
4720 ;; nil ;overwrite-backup-query | |
4721 ;; nil ;failures | |
4722 ;; nil ;skipped | |
4723 ;; 0 ;success-count | |
4724 ;; (length fn-list) ;total | |
4725 ;; ) | |
4726 ;; ;; normal case... use the interactive routine... much cheaper. | |
4727 ;; (ange-ftp-real-dired-create-files file-creator operation fn-list | |
4728 ;; name-constructor marker-char))) | |
4729 | |
4730 ;;(defun ange-ftp-dcf-1 (file-creator operation fn-list name-constructor | |
30459 | 4731 ;; target marker-char buffer overwrite-query |
28210 | 4732 ;; overwrite-backup-query failures skipped |
4733 ;; success-count total) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
4734 ;; (with-current-buffer buffer |
28210 | 4735 ;; (if (null fn-list) |
4736 ;; (ange-ftp-dcf-3 failures operation total skipped | |
4737 ;; success-count buffer) | |
30459 | 4738 |
28210 | 4739 ;; (let* ((from (car fn-list)) |
4740 ;; (to (funcall name-constructor from))) | |
4741 ;; (if (equal to from) | |
4742 ;; (progn | |
4743 ;; (setq to nil) | |
4744 ;; (dired-log "Cannot %s to same file: %s\n" | |
4745 ;; (downcase operation) from))) | |
4746 ;; (if (not to) | |
4747 ;; (ange-ftp-dcf-1 file-creator | |
4748 ;; operation | |
4749 ;; (cdr fn-list) | |
4750 ;; name-constructor | |
4751 ;; target | |
4752 ;; marker-char | |
4753 ;; buffer | |
4754 ;; overwrite-query | |
4755 ;; overwrite-backup-query | |
4756 ;; failures | |
4757 ;; (cons (dired-make-relative from) skipped) | |
4758 ;; success-count | |
4759 ;; total) | |
4760 ;; (let* ((overwrite (file-exists-p to)) | |
4761 ;; (overwrite-confirmed ; for dired-handle-overwrite | |
4762 ;; (and overwrite | |
4763 ;; (let ((help-form '(format "\ | |
4764 ;;Type SPC or `y' to overwrite file `%s', | |
4765 ;;DEL or `n' to skip to next, | |
4766 ;;ESC or `q' to not overwrite any of the remaining files, | |
4767 ;;`!' to overwrite all remaining files with no more questions." to))) | |
4768 ;; (dired-query 'overwrite-query | |
4769 ;; "Overwrite `%s'?" to)))) | |
4770 ;; ;; must determine if FROM is marked before file-creator | |
4771 ;; ;; gets a chance to delete it (in case of a move). | |
4772 ;; (actual-marker-char | |
4773 ;; (cond ((integerp marker-char) marker-char) | |
4774 ;; (marker-char (dired-file-marker from)) ; slow | |
4775 ;; (t nil)))) | |
4776 ;; (condition-case err | |
4777 ;; (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
|
4778 ;; (list 'ange-ftp-dcf-2 |
28210 | 4779 ;; nil ;err |
4780 ;; file-creator operation fn-list | |
4781 ;; name-constructor | |
4782 ;; target | |
4783 ;; marker-char actual-marker-char | |
4784 ;; buffer to from | |
4785 ;; overwrite | |
4786 ;; overwrite-confirmed | |
30459 | 4787 ;; overwrite-query |
28210 | 4788 ;; overwrite-backup-query |
4789 ;; failures skipped success-count | |
4790 ;; total) | |
4791 ;; t) | |
4792 ;; (file-error ; FILE-CREATOR aborted | |
4793 ;; (ange-ftp-dcf-2 nil ;result | |
4794 ;; nil ;line | |
4795 ;; err | |
4796 ;; file-creator operation fn-list | |
4797 ;; name-constructor | |
4798 ;; target | |
4799 ;; marker-char actual-marker-char | |
4800 ;; buffer to from | |
4801 ;; overwrite | |
4802 ;; overwrite-confirmed | |
30459 | 4803 ;; overwrite-query |
28210 | 4804 ;; overwrite-backup-query |
4805 ;; failures skipped success-count | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
4806 ;; total))))))))) |
28210 | 4807 |
4808 ;;(defun ange-ftp-dcf-2 (result line err | |
4809 ;; file-creator operation fn-list | |
4810 ;; name-constructor | |
4811 ;; target | |
4812 ;; marker-char actual-marker-char | |
4813 ;; buffer to from | |
4814 ;; overwrite | |
4815 ;; overwrite-confirmed | |
30459 | 4816 ;; overwrite-query |
28210 | 4817 ;; overwrite-backup-query |
4818 ;; failures skipped success-count | |
4819 ;; total) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
4820 ;; (with-current-buffer buffer |
28210 | 4821 ;; (if (or err (not result)) |
4822 ;; (progn | |
4823 ;; (setq failures (cons (dired-make-relative from) failures)) | |
4824 ;; (dired-log "%s `%s' to `%s' failed:\n%s\n" | |
4825 ;; operation from to (or err line))) | |
4826 ;; (if overwrite | |
4827 ;; ;; If we get here, file-creator hasn't been aborted | |
4828 ;; ;; and the old entry (if any) has to be deleted | |
4829 ;; ;; before adding the new entry. | |
4830 ;; (dired-remove-file to)) | |
4831 ;; (setq success-count (1+ success-count)) | |
4832 ;; (message "%s: %d of %d" operation success-count total) | |
4833 ;; (dired-add-file to actual-marker-char)) | |
30459 | 4834 |
28210 | 4835 ;; (ange-ftp-dcf-1 file-creator operation (cdr fn-list) |
4836 ;; name-constructor | |
4837 ;; target | |
4838 ;; marker-char | |
4839 ;; buffer | |
30459 | 4840 ;; overwrite-query |
28210 | 4841 ;; overwrite-backup-query |
4842 ;; failures skipped success-count | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
4843 ;; total))) |
28210 | 4844 |
4845 ;;(defun ange-ftp-dcf-3 (failures operation total skipped success-count | |
4846 ;; buffer) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
4847 ;; (with-current-buffer buffer |
28210 | 4848 ;; (cond |
4849 ;; (failures | |
4850 ;; (dired-log-summary | |
4851 ;; (message "%s failed for %d of %d file%s %s" | |
4852 ;; operation (length failures) total | |
4853 ;; (dired-plural-s total) failures))) | |
4854 ;; (skipped | |
4855 ;; (dired-log-summary | |
4856 ;; (message "%s: %d of %d file%s skipped %s" | |
4857 ;; operation (length skipped) total | |
4858 ;; (dired-plural-s total) skipped))) | |
4859 ;; (t | |
4860 ;; (message "%s: %s file%s." | |
4861 ;; operation success-count (dired-plural-s success-count)))) | |
65810
0534e10b621e
Use with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65791
diff
changeset
|
4862 ;; (dired-move-to-filename))) |
28210 | 4863 |
4864 ;;;; ----------------------------------------------- | |
4865 ;;;; Unix Descriptive Listing (dl) Support | |
4866 ;;;; ----------------------------------------------- | |
4867 | |
4868 ;; This is turned off because nothing uses it currently | |
4869 ;; and because I don't understand what it's supposed to be for. --rms. | |
4870 | |
4871 ;;(defconst ange-ftp-dired-dl-re-dir | |
4872 ;; "^. [^ /]+/[ \n]" | |
4873 ;; "Regular expression to use to search for dl directories.") | |
4874 | |
4875 ;;(or (assq 'unix:dl ange-ftp-dired-re-dir-alist) | |
4876 ;; (setq ange-ftp-dired-re-dir-alist | |
4877 ;; (cons (cons 'unix:dl ange-ftp-dired-dl-re-dir) | |
4878 ;; ange-ftp-dired-re-dir-alist))) | |
4879 | |
4880 ;;(defun ange-ftp-dired-dl-move-to-filename (&optional raise-error eol) | |
4881 ;; "In dired, move to the first character of the filename on this line." | |
4882 ;; ;; This is the Unix dl version. | |
4883 ;; (or eol (setq eol (progn (end-of-line) (point)))) | |
4884 ;; (let (case-fold-search) | |
4885 ;; (beginning-of-line) | |
4886 ;; (if (looking-at ". [^ ]+ +\\([0-9]+\\|-\\|=\\) ") | |
4887 ;; (goto-char (+ (point) 2)) | |
4888 ;; (if raise-error | |
4889 ;; (error "No file on this line") | |
4890 ;; nil)))) | |
4891 | |
4892 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-filename-alist) | |
4893 ;; (setq ange-ftp-dired-move-to-filename-alist | |
4894 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-filename) | |
4895 ;; ange-ftp-dired-move-to-filename-alist))) | |
4896 | |
4897 ;;(defun ange-ftp-dired-dl-move-to-end-of-filename (&optional no-error eol) | |
4898 ;; ;; Assumes point is at beginning of filename. | |
4899 ;; ;; So, it should be called only after (dired-move-to-filename t). | |
4900 ;; ;; On failure, signals an error or returns nil. | |
4901 ;; ;; This is the Unix dl version. | |
4902 ;; (let ((opoint (point)) | |
4903 ;; case-fold-search hidden) | |
4904 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) | |
4905 ;; (setq hidden (and selective-display | |
4906 ;; (save-excursion | |
4907 ;; (search-forward "\r" eol t)))) | |
4908 ;; (if hidden | |
4909 ;; (if no-error | |
4910 ;; nil | |
4911 ;; (error | |
4912 ;; (substitute-command-keys | |
4913 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) | |
4914 ;; (skip-chars-forward "^ /" eol) | |
4915 ;; (if (eq opoint (point)) | |
4916 ;; (if no-error | |
4917 ;; nil | |
4918 ;; (error "No file on this line")) | |
4919 ;; (point))))) | |
4920 | |
4921 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-end-of-filename-alist) | |
4922 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist | |
4923 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-end-of-filename) | |
4924 ;; ange-ftp-dired-move-to-end-of-filename-alist))) | |
4925 | |
4926 ;;;; ------------------------------------------------------------ | |
4927 ;;;; VOS support (VOS support is probably broken, | |
4928 ;;;; but I don't know anything about VOS.) | |
4929 ;;;; ------------------------------------------------------------ | |
4930 ; | |
4931 ;(defun ange-ftp-fix-name-for-vos (name &optional reverse) | |
4932 ; (setq name (copy-sequence name)) | |
4933 ; (let ((from (if reverse ?\> ?\/)) | |
4934 ; (to (if reverse ?\/ ?\>)) | |
4935 ; (i (1- (length name)))) | |
4936 ; (while (>= i 0) | |
4937 ; (if (= (aref name i) from) | |
4938 ; (aset name i to)) | |
4939 ; (setq i (1- i))) | |
4940 ; name)) | |
4941 ; | |
4942 ;(or (assq 'vos ange-ftp-fix-name-func-alist) | |
4943 ; (setq ange-ftp-fix-name-func-alist | |
4944 ; (cons '(vos . ange-ftp-fix-name-for-vos) | |
4945 ; ange-ftp-fix-name-func-alist))) | |
4946 ; | |
4947 ;(or (memq 'vos ange-ftp-dumb-host-types) | |
4948 ; (setq ange-ftp-dumb-host-types | |
4949 ; (cons 'vos ange-ftp-dumb-host-types))) | |
4950 ; | |
4951 ;(defun ange-ftp-fix-dir-name-for-vos (dir-name) | |
4952 ; (ange-ftp-fix-name-for-vos | |
4953 ; (concat dir-name | |
4954 ; (if (eq ?/ (aref dir-name (1- (length dir-name)))) | |
4955 ; "" "/") | |
4956 ; "*"))) | |
4957 ; | |
4958 ;(or (assq 'vos ange-ftp-fix-dir-name-func-alist) | |
4959 ; (setq ange-ftp-fix-dir-name-func-alist | |
4960 ; (cons '(vos . ange-ftp-fix-dir-name-for-vos) | |
4961 ; ange-ftp-fix-dir-name-func-alist))) | |
4962 ; | |
4963 ;(defvar ange-ftp-vos-host-regexp nil | |
4964 ; "If a host matches this regexp then it is assumed to be running VOS.") | |
4965 ; | |
4966 ;(defun ange-ftp-vos-host (host) | |
4967 ; (and ange-ftp-vos-host-regexp | |
4968 ; (save-match-data | |
4969 ; (string-match ange-ftp-vos-host-regexp host)))) | |
4970 ; | |
4971 ;(defun ange-ftp-parse-vos-listing () | |
4972 ; "Parse the current buffer which is assumed to be in VOS list -all | |
4973 ;format, and return a hashtable as the result." | |
4974 ; (let ((tbl (ange-ftp-make-hashtable)) | |
4975 ; (type-list | |
4976 ; '(("^Files: [0-9]+ +Blocks: [0-9]+\n+" nil 40) | |
4977 ; ("^Dirs: [0-9]+\n+" t 30))) | |
4978 ; type-regexp type-is-dir type-col file) | |
4979 ; (goto-char (point-min)) | |
4980 ; (save-match-data | |
4981 ; (while type-list | |
4982 ; (setq type-regexp (car (car type-list)) | |
4983 ; type-is-dir (nth 1 (car type-list)) | |
4984 ; type-col (nth 2 (car type-list)) | |
4985 ; type-list (cdr type-list)) | |
4986 ; (if (re-search-forward type-regexp nil t) | |
4987 ; (while (eq (char-after (point)) ? ) | |
4988 ; (move-to-column type-col) | |
4989 ; (setq file (buffer-substring (point) | |
4990 ; (progn | |
4991 ; (end-of-line 1) | |
4992 ; (point)))) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
4993 ; (puthash file type-is-dir tbl) |
28210 | 4994 ; (forward-line 1)))) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
4995 ; (puthash "." 'vosdir tbl) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
4996 ; (puthash ".." 'vosdir tbl)) |
28210 | 4997 ; tbl)) |
4998 ; | |
4999 ;(or (assq 'vos ange-ftp-parse-list-func-alist) | |
5000 ; (setq ange-ftp-parse-list-func-alist | |
5001 ; (cons '(vos . ange-ftp-parse-vos-listing) | |
5002 ; ange-ftp-parse-list-func-alist))) | |
5003 | |
5004 ;;;; ------------------------------------------------------------ | |
5005 ;;;; VMS support. | |
5006 ;;;; ------------------------------------------------------------ | |
5007 | |
5008 ;; Convert NAME from UNIX-ish to VMS. If REVERSE given then convert from VMS | |
5009 ;; to UNIX-ish. | |
5010 (defun ange-ftp-fix-name-for-vms (name &optional reverse) | |
5011 (save-match-data | |
5012 (if reverse | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5013 (if (string-match "\\`\\([^:]+:\\)?\\(\\[.*\\]\\)?\\([^][]*\\)\\'" name) |
28210 | 5014 (let (drive dir file) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5015 (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
|
5016 (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
|
5017 (setq file (match-string 3 name)) |
28210 | 5018 (and dir |
30481 | 5019 (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
|
5020 ?/ ?. (substring dir 1 -1) t))) |
28210 | 5021 (concat (and drive |
5022 (concat "/" drive "/")) | |
5023 dir (and dir "/") | |
5024 file)) | |
5025 (error "name %s didn't match" name)) | |
5026 (let (drive dir file tmp) | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5027 (if (string-match "\\`/[^:]+:/" name) |
28210 | 5028 (setq drive (substring name 1 |
5029 (1- (match-end 0))) | |
5030 name (substring name (match-end 0)))) | |
5031 (setq tmp (file-name-directory name)) | |
5032 (if tmp | |
37813
989feabdf50e
(ange-ftp-fix-name-for-vms): Reverse args of
Gerd Moellmann <gerd@gnu.org>
parents:
37774
diff
changeset
|
5033 (setq dir (subst-char-in-string ?/ ?. (substring tmp 0 -1) t))) |
28210 | 5034 (setq file (file-name-nondirectory name)) |
5035 (concat drive | |
5036 (and dir (concat "[" (if drive nil ".") dir "]")) | |
5037 file))))) | |
5038 | |
5039 ;; (ange-ftp-fix-name-for-vms "/PUB$:/ANONYMOUS/SDSCPUB/NEXT/Readme.txt;1") | |
5040 ;; (ange-ftp-fix-name-for-vms "/PUB$:[ANONYMOUS.SDSCPUB.NEXT]Readme.txt;1" t) | |
5041 | |
5042 (or (assq 'vms ange-ftp-fix-name-func-alist) | |
5043 (setq ange-ftp-fix-name-func-alist | |
5044 (cons '(vms . ange-ftp-fix-name-for-vms) | |
5045 ange-ftp-fix-name-func-alist))) | |
5046 | |
5047 (or (memq 'vms ange-ftp-dumb-host-types) | |
5048 (setq ange-ftp-dumb-host-types | |
5049 (cons 'vms ange-ftp-dumb-host-types))) | |
5050 | |
5051 ;; It is important that this function barf for directories for which we know | |
5052 ;; that we cannot possibly get a directory listing, such as "/" and "/DEV:/". | |
5053 ;; This is because it saves an unnecessary FTP error, or possibly the listing | |
5054 ;; might succeed, but give erroneous info. This last case is particularly | |
5055 ;; likely for OS's (like MTS) for which we need to use a wildcard in order | |
5056 ;; to list a directory. | |
5057 | |
5058 ;; Convert name from UNIX-ish to VMS ready for a DIRectory listing. | |
5059 (defun ange-ftp-fix-dir-name-for-vms (dir-name) | |
5060 ;; Should there be entries for .. -> [-] and . -> [] below. Don't | |
5061 ;; think so, because expand-filename should have already short-circuited | |
5062 ;; them. | |
5063 (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
|
5064 (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
|
5065 ((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
|
5066 (error "Cannot get listing for device")) |
28210 | 5067 ((ange-ftp-fix-name-for-vms dir-name)))) |
30459 | 5068 |
28210 | 5069 (or (assq 'vms ange-ftp-fix-dir-name-func-alist) |
5070 (setq ange-ftp-fix-dir-name-func-alist | |
5071 (cons '(vms . ange-ftp-fix-dir-name-for-vms) | |
5072 ange-ftp-fix-dir-name-func-alist))) | |
5073 | |
5074 (defvar ange-ftp-vms-host-regexp nil) | |
5075 | |
5076 ;; Return non-nil if HOST is running VMS. | |
5077 (defun ange-ftp-vms-host (host) | |
5078 (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
|
5079 (string-match-p ange-ftp-vms-host-regexp host))) |
28210 | 5080 |
5081 ;; Because some VMS ftp servers convert filenames to lower case | |
5082 ;; we allow a-z in the filename regexp. I'm not too happy about this. | |
5083 | |
5084 (defconst ange-ftp-vms-filename-regexp | |
5085 (concat | |
5086 "\\(\\([_A-Za-z0-9$]?\\|[_A-Za-z0-9$][-_A-Za-z0-9$]*\\)\\." | |
5087 "[-_A-Za-z0-9$]*;+[0-9]*\\)") | |
5088 "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
|
5089 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
|
5090 Having [A-Z0-9$_] bombs on filename _$$CHANGE_LOG$.TXT$ and $CHANGE_LOG$.TX. |
28210 | 5091 Other orders of $ and _ seem to all work just fine.") |
5092 | |
5093 ;; These parsing functions are as general as possible because the syntax | |
5094 ;; of ftp listings from VMS hosts is a bit erratic. What saves us is that | |
5095 ;; the VMS filename syntax is so rigid. If they bomb on a listing in the | |
5096 ;; standard VMS Multinet format, then this is a bug. If they bomb on a listing | |
5097 ;; from vms.weird.net, then too bad. | |
5098 | |
5099 ;; Extract the next filename from a VMS dired-like listing. | |
5100 (defun ange-ftp-parse-vms-filename () | |
5101 (if (re-search-forward | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5102 ange-ftp-vms-filename-regexp |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5103 nil t) |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5104 (match-string 0))) |
28210 | 5105 |
5106 ;; Parse the current buffer which is assumed to be in MultiNet FTP dir | |
5107 ;; format, and return a hashtable as the result. | |
5108 (defun ange-ftp-parse-vms-listing () | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5109 (let ((tbl (make-hash-table :test 'equal)) |
28210 | 5110 file) |
5111 (goto-char (point-min)) | |
5112 (save-match-data | |
5113 (while (setq file (ange-ftp-parse-vms-filename)) | |
5114 (if (string-match "\\.\\(DIR\\|dir\\);[0-9]+" file) | |
5115 ;; deal with directories | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5116 (puthash (substring file 0 (match-beginning 0)) t tbl) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5117 (puthash file nil tbl) |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5118 (if (string-match ";[0-9]+\\'" file) ; deal with extension |
28210 | 5119 ;; sans extension |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5120 (puthash (substring file 0 (match-beginning 0)) nil tbl))) |
28210 | 5121 (forward-line 1)) |
5122 ;; Would like to look for a "Total" line, or a "Directory" line to | |
5123 ;; make sure that the listing isn't complete garbage before putting | |
5124 ;; in "." and "..", but we can't even count on all VAX's giving us | |
5125 ;; either of these. | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5126 (puthash "." t tbl) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5127 (puthash ".." t tbl)) |
28210 | 5128 tbl)) |
5129 | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5130 (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
|
5131 '(vms . ange-ftp-parse-vms-listing)) |
28210 | 5132 |
5133 ;; This version only deletes file entries which have | |
5134 ;; explicit version numbers, because that is all VMS allows. | |
5135 | |
5136 ;; Can the following two functions be speeded up using file | |
5137 ;; completion functions? | |
5138 | |
5139 (defun ange-ftp-vms-delete-file-entry (name &optional dir-p) | |
5140 (if dir-p | |
5141 (ange-ftp-internal-delete-file-entry name t) | |
5142 (save-match-data | |
5143 (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
|
5144 (if (string-match ";[0-9]+\\'" file) |
30459 | 5145 ;; In VMS you can't delete a file without an explicit |
28210 | 5146 ;; version number, or wild-card (e.g. FOO;*) |
5147 ;; For now, we give up on wildcards. | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5148 (let ((files (gethash (file-name-directory name) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5149 ange-ftp-files-hashtable))) |
28210 | 5150 (if files |
5151 (let* ((root (substring file 0 | |
5152 (match-beginning 0))) | |
5153 (regexp (concat "^" | |
5154 (regexp-quote root) | |
5155 ";[0-9]+$")) | |
5156 versions) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5157 (remhash file files) |
28210 | 5158 ;; Now we need to check if there are any |
5159 ;; versions left. If not, then delete the | |
5160 ;; root entry. | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5161 (maphash |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5162 (lambda (key val) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5163 (and (string-match regexp key) |
29587
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
5164 (setq versions t))) |
28210 | 5165 files) |
5166 (or versions | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5167 (remhash root files)))))))))) |
28210 | 5168 |
5169 (or (assq 'vms ange-ftp-delete-file-entry-alist) | |
5170 (setq ange-ftp-delete-file-entry-alist | |
5171 (cons '(vms . ange-ftp-vms-delete-file-entry) | |
5172 ange-ftp-delete-file-entry-alist))) | |
5173 | |
5174 (defun ange-ftp-vms-add-file-entry (name &optional dir-p) | |
5175 (if dir-p | |
5176 (ange-ftp-internal-add-file-entry name t) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5177 (let ((files (gethash (file-name-directory name) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5178 ange-ftp-files-hashtable))) |
28210 | 5179 (if files |
5180 (let ((file (ange-ftp-get-file-part name))) | |
5181 (save-match-data | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5182 (if (string-match ";[0-9]+\\'" file) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5183 (puthash (substring file 0 (match-beginning 0)) nil files) |
28210 | 5184 ;; Need to figure out what version of the file |
5185 ;; is being added. | |
5186 (let ((regexp (concat "^" | |
5187 (regexp-quote file) | |
5188 ";\\([0-9]+\\)$")) | |
5189 (version 0)) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5190 (maphash |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5191 (lambda (name val) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5192 (and (string-match regexp name) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5193 (setq version |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5194 (max version |
62402
a7e02ef1e3d6
Replace `string-to-int' by `string-to-number'.
Juanma Barranquero <lekktu@gmail.com>
parents:
59996
diff
changeset
|
5195 (string-to-number (match-string 1 name)))))) |
28210 | 5196 files) |
5197 (setq version (1+ version)) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5198 (puthash |
28210 | 5199 (concat file ";" (int-to-string version)) |
5200 nil files)))) | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5201 (puthash file nil files)))))) |
28210 | 5202 |
5203 (or (assq 'vms ange-ftp-add-file-entry-alist) | |
5204 (setq ange-ftp-add-file-entry-alist | |
5205 (cons '(vms . ange-ftp-vms-add-file-entry) | |
5206 ange-ftp-add-file-entry-alist))) | |
5207 | |
5208 | |
5209 (defun ange-ftp-add-vms-host (host) | |
5210 "Mark HOST as the name of a machine running VMS." | |
5211 (interactive | |
5212 (list (read-string "Host: " | |
5213 (let ((name (or (buffer-file-name) default-directory))) | |
5214 (and name (car (ange-ftp-ftp-name name))))))) | |
5215 (if (not (ange-ftp-vms-host host)) | |
5216 (setq ange-ftp-vms-host-regexp | |
5217 (concat "^" (regexp-quote host) "$" | |
5218 (and ange-ftp-vms-host-regexp "\\|") | |
5219 ange-ftp-vms-host-regexp) | |
5220 ange-ftp-host-cache nil))) | |
5221 | |
5222 | |
5223 (defun ange-ftp-vms-file-name-as-directory (name) | |
5224 (save-match-data | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5225 (if (string-match "\\.\\(DIR\\|dir\\)\\(;[0-9]+\\)?\\'" name) |
28210 | 5226 (setq name (substring name 0 (match-beginning 0)))) |
5227 (ange-ftp-real-file-name-as-directory name))) | |
5228 | |
5229 (or (assq 'vms ange-ftp-file-name-as-directory-alist) | |
5230 (setq ange-ftp-file-name-as-directory-alist | |
5231 (cons '(vms . ange-ftp-vms-file-name-as-directory) | |
5232 ange-ftp-file-name-as-directory-alist))) | |
5233 | |
5234 ;;; Tree dired support: | |
5235 | |
5236 ;; For this code I have borrowed liberally from Sebastian Kremer's | |
5237 ;; dired-vms.el | |
5238 | |
5239 | |
5240 ;;;; These regexps must be anchored to beginning of line. | |
5241 ;;;; Beware that the ftpd may put the device in front of the filename. | |
5242 | |
5243 ;;(defconst ange-ftp-dired-vms-re-exe "^. [^ \t.]+\\.\\(EXE\\|exe\\)[; ]" | |
5244 ;; "Regular expression to use to search for VMS executable files.") | |
5245 | |
5246 ;;(defconst ange-ftp-dired-vms-re-dir "^. [^ \t.]+\\.\\(DIR\\|dir\\)[; ]" | |
5247 ;; "Regular expression to use to search for VMS directories.") | |
5248 | |
5249 ;;(or (assq 'vms ange-ftp-dired-re-exe-alist) | |
5250 ;; (setq ange-ftp-dired-re-exe-alist | |
5251 ;; (cons (cons 'vms ange-ftp-dired-vms-re-exe) | |
5252 ;; ange-ftp-dired-re-exe-alist))) | |
5253 | |
5254 ;;(or (assq 'vms ange-ftp-dired-re-dir-alist) | |
5255 ;; (setq ange-ftp-dired-re-dir-alist | |
5256 ;; (cons (cons 'vms ange-ftp-dired-vms-re-dir) | |
5257 ;; ange-ftp-dired-re-dir-alist))) | |
5258 | |
5259 ;;(defun ange-ftp-dired-vms-insert-headerline (dir) | |
5260 ;; ;; VMS inserts a headerline. I would prefer the headerline | |
5261 ;; ;; to be in ange-ftp format. This version tries to | |
5262 ;; ;; be careful, because we can't count on a headerline | |
5263 ;; ;; over ftp, and we wouldn't want to delete anything | |
5264 ;; ;; important. | |
5265 ;; (save-excursion | |
5266 ;; (if (looking-at "^ wildcard ") | |
5267 ;; (forward-line 1)) | |
5268 ;; (if (looking-at "^[ \n\t]*[^\n]+\\][ \t]*\n") | |
5269 ;; (delete-region (point) (match-end 0)))) | |
5270 ;; (ange-ftp-real-dired-insert-headerline dir)) | |
5271 | |
5272 ;;(or (assq 'vms ange-ftp-dired-insert-headerline-alist) | |
5273 ;; (setq ange-ftp-dired-insert-headerline-alist | |
5274 ;; (cons '(vms . ange-ftp-dired-vms-insert-headerline) | |
5275 ;; ange-ftp-dired-insert-headerline-alist))) | |
5276 | |
5277 ;;(defun ange-ftp-dired-vms-move-to-filename (&optional raise-error eol) | |
5278 ;; "In dired, move to first char of filename on this line. | |
5279 ;;Returns position (point) or nil if no filename on this line." | |
5280 ;; ;; This is the VMS version. | |
5281 ;; (let (case-fold-search) | |
5282 ;; (or eol (setq eol (progn (end-of-line) (point)))) | |
5283 ;; (beginning-of-line) | |
5284 ;; (if (re-search-forward ange-ftp-vms-filename-regexp eol t) | |
5285 ;; (goto-char (match-beginning 1)) | |
5286 ;; (if raise-error | |
5287 ;; (error "No file on this line") | |
5288 ;; nil)))) | |
5289 | |
5290 ;;(or (assq 'vms ange-ftp-dired-move-to-filename-alist) | |
5291 ;; (setq ange-ftp-dired-move-to-filename-alist | |
5292 ;; (cons '(vms . ange-ftp-dired-vms-move-to-filename) | |
5293 ;; ange-ftp-dired-move-to-filename-alist))) | |
5294 | |
5295 ;;(defun ange-ftp-dired-vms-move-to-end-of-filename (&optional no-error eol) | |
5296 ;; ;; Assumes point is at beginning of filename. | |
5297 ;; ;; So, it should be called only after (dired-move-to-filename t). | |
5298 ;; ;; case-fold-search must be nil, at least for VMS. | |
5299 ;; ;; On failure, signals an error or returns nil. | |
5300 ;; ;; This is the VMS version. | |
5301 ;; (let (opoint hidden case-fold-search) | |
5302 ;; (setq opoint (point)) | |
5303 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) | |
5304 ;; (setq hidden (and selective-display | |
5305 ;; (save-excursion (search-forward "\r" eol t)))) | |
5306 ;; (if hidden | |
5307 ;; nil | |
5308 ;; (re-search-forward ange-ftp-vms-filename-regexp eol t)) | |
5309 ;; (or no-error | |
5310 ;; (not (eq opoint (point))) | |
5311 ;; (error | |
5312 ;; (if hidden | |
5313 ;; (substitute-command-keys | |
5314 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") | |
5315 ;; "No file on this line"))) | |
5316 ;; (if (eq opoint (point)) | |
5317 ;; nil | |
5318 ;; (point)))) | |
5319 | |
5320 ;;(or (assq 'vms ange-ftp-dired-move-to-end-of-filename-alist) | |
5321 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist | |
5322 ;; (cons '(vms . ange-ftp-dired-vms-move-to-end-of-filename) | |
5323 ;; ange-ftp-dired-move-to-end-of-filename-alist))) | |
5324 | |
5325 ;;(defun ange-ftp-dired-vms-between-files () | |
5326 ;; (save-excursion | |
5327 ;; (beginning-of-line) | |
5328 ;; (or (equal (following-char) 10) ; newline | |
5329 ;; (equal (following-char) 9) ; tab | |
5330 ;; (progn (forward-char 2) | |
5331 ;; (or (looking-at "Total of") | |
5332 ;; (equal (following-char) 32)))))) | |
5333 | |
5334 ;;(or (assq 'vms ange-ftp-dired-between-files-alist) | |
5335 ;; (setq ange-ftp-dired-between-files-alist | |
5336 ;; (cons '(vms . ange-ftp-dired-vms-between-files) | |
5337 ;; ange-ftp-dired-between-files-alist))) | |
5338 | |
5339 ;; Beware! In VMS filenames must be of the form "FILE.TYPE". | |
5340 ;; Therefore, we cannot just append a ".Z" to filenames for | |
5341 ;; compressed files. Instead, we turn "FILE.TYPE" into | |
5342 ;; "FILE.TYPE-Z". Hope that this is a reasonable thing to do. | |
5343 | |
5344 (defun ange-ftp-vms-make-compressed-filename (name &optional reverse) | |
5345 (cond | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5346 ((string-match "-Z;[0-9]+\\'" name) |
28210 | 5347 (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
|
5348 ((string-match ";[0-9]+\\'" name) |
28210 | 5349 (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
|
5350 ((string-match "-Z\\'" name) |
28210 | 5351 (list nil (substring name 0 -2))) |
5352 (t | |
5353 (list t | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5354 (if (string-match ";[0-9]+\\'" name) |
28210 | 5355 (concat (substring name 0 (match-beginning 0)) |
5356 "-Z") | |
5357 (concat name "-Z")))))) | |
5358 | |
5359 (or (assq 'vms ange-ftp-make-compressed-filename-alist) | |
5360 (setq ange-ftp-make-compressed-filename-alist | |
5361 (cons '(vms . ange-ftp-vms-make-compressed-filename) | |
5362 ange-ftp-make-compressed-filename-alist))) | |
5363 | |
5364 ;;;; When the filename is too long, VMS will use two lines to list a file | |
5365 ;;;; (damn them!) This will confuse dired. To solve this, need to convince | |
5366 ;;;; Sebastian to use a function dired-go-to-end-of-file-line, instead of | |
5367 ;;;; (forward-line 1). This would require a number of changes to dired.el. | |
5368 ;;;; If dired gets confused, revert-buffer will fix it. | |
5369 | |
5370 ;;(defun ange-ftp-dired-vms-ls-trim () | |
5371 ;; (goto-char (point-min)) | |
5372 ;; (let ((case-fold-search nil)) | |
5373 ;; (re-search-forward ange-ftp-vms-filename-regexp)) | |
5374 ;; (beginning-of-line) | |
5375 ;; (delete-region (point-min) (point)) | |
5376 ;; (forward-line 1) | |
5377 ;; (delete-region (point) (point-max))) | |
5378 | |
5379 | |
5380 ;;(or (assq 'vms ange-ftp-dired-ls-trim-alist) | |
5381 ;; (setq ange-ftp-dired-ls-trim-alist | |
5382 ;; (cons '(vms . ange-ftp-dired-vms-ls-trim) | |
30459 | 5383 ;; ange-ftp-dired-ls-trim-alist))) |
28210 | 5384 |
5385 (defun ange-ftp-vms-sans-version (name &rest args) | |
5386 (save-match-data | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5387 (if (string-match ";[0-9]+\\'" name) |
28210 | 5388 (substring name 0 (match-beginning 0)) |
5389 name))) | |
5390 | |
5391 (or (assq 'vms ange-ftp-sans-version-alist) | |
5392 (setq ange-ftp-sans-version-alist | |
5393 (cons '(vms . ange-ftp-vms-sans-version) | |
5394 ange-ftp-sans-version-alist))) | |
5395 | |
5396 ;;(defvar ange-ftp-file-version-alist) | |
5397 | |
5398 ;;;;; The vms version of clean-directory has 2 more optional args | |
5399 ;;;;; than the usual dired version. This is so that it can be used by | |
5400 ;;;;; ange-ftp-dired-vms-flag-backup-files. | |
5401 | |
5402 ;;(defun ange-ftp-dired-vms-clean-directory (keep &optional marker msg) | |
5403 ;; "Flag numerical backups for deletion. | |
5404 ;;Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest. | |
5405 ;;Positive prefix arg KEEP overrides `dired-kept-versions'; | |
5406 ;;Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive. | |
5407 | |
5408 ;;To clear the flags on these files, you can use \\[dired-flag-backup-files] | |
5409 ;;with a prefix argument." | |
5410 ;;; (interactive "P") ; Never actually called interactively. | |
5411 ;; (setq keep (max 1 (if keep (prefix-numeric-value keep) dired-kept-versions))) | |
5412 ;; (let ((early-retention (if (< keep 0) (- keep) kept-old-versions)) | |
5413 ;; ;; late-retention must NEVER be allowed to be less than 1 in VMS! | |
5414 ;; ;; This could wipe ALL copies of the file. | |
5415 ;; (late-retention (max 1 (if (<= keep 0) dired-kept-versions keep))) | |
5416 ;; (action (or msg "Cleaning")) | |
5417 ;; (ange-ftp-trample-marker (or marker dired-del-marker)) | |
5418 ;; (ange-ftp-file-version-alist ())) | |
5419 ;; (message (concat action | |
5420 ;; " numerical backups (keeping %d late, %d old)...") | |
5421 ;; late-retention early-retention) | |
5422 ;; ;; Look at each file. | |
5423 ;; ;; If the file has numeric backup versions, | |
5424 ;; ;; put on ange-ftp-file-version-alist an element of the form | |
5425 ;; ;; (FILENAME . VERSION-NUMBER-LIST) | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5426 ;; (dired-map-dired-file-lines 'ange-ftp-dired-vms-collect-file-versions) |
28210 | 5427 ;; ;; Sort each VERSION-NUMBER-LIST, |
5428 ;; ;; and remove the versions not to be deleted. | |
5429 ;; (let ((fval ange-ftp-file-version-alist)) | |
5430 ;; (while fval | |
5431 ;; (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<))) | |
5432 ;; (v-count (length sorted-v-list))) | |
5433 ;; (if (> v-count (+ early-retention late-retention)) | |
5434 ;; (rplacd (nthcdr early-retention sorted-v-list) | |
5435 ;; (nthcdr (- v-count late-retention) | |
5436 ;; sorted-v-list))) | |
5437 ;; (rplacd (car fval) | |
5438 ;; (cdr sorted-v-list))) | |
5439 ;; (setq fval (cdr fval)))) | |
5440 ;; ;; Look at each file. If it is a numeric backup file, | |
5441 ;; ;; find it in a VERSION-NUMBER-LIST and maybe flag it for deletion. | |
5442 ;; (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
|
5443 ;; 'ange-ftp-dired-vms-trample-file-versions mark) |
28210 | 5444 ;; (message (concat action " numerical backups...done")))) |
5445 | |
5446 ;;(or (assq 'vms ange-ftp-dired-clean-directory-alist) | |
5447 ;; (setq ange-ftp-dired-clean-directory-alist | |
5448 ;; (cons '(vms . ange-ftp-dired-vms-clean-directory) | |
5449 ;; ange-ftp-dired-clean-directory-alist))) | |
5450 | |
5451 ;;(defun ange-ftp-dired-vms-collect-file-versions (fn) | |
5452 ;; ;; "If it looks like file FN has versions, return a list of the versions. | |
5453 ;; ;;That is a list of strings which are file names. | |
5454 ;; ;;The caller may want to flag some of these files for deletion." | |
5455 ;;(let ((name (nth 2 (ange-ftp-ftp-name fn)))) | |
5456 ;; (if (string-match ";[0-9]+$" name) | |
5457 ;; (let* ((name (substring name 0 (match-beginning 0))) | |
5458 ;; (fn (ange-ftp-replace-name-component fn name))) | |
5459 ;; (if (not (assq fn ange-ftp-file-version-alist)) | |
5460 ;; (let* ((base-versions | |
5461 ;; (concat (file-name-nondirectory name) ";")) | |
5462 ;; (bv-length (length base-versions)) | |
5463 ;; (possibilities (file-name-all-completions | |
5464 ;; base-versions | |
5465 ;; (file-name-directory fn))) | |
5466 ;; (versions (mapcar | |
5467 ;; '(lambda (arg) | |
5468 ;; (if (and (string-match | |
5469 ;; "[0-9]+$" arg bv-length) | |
5470 ;; (= (match-beginning 0) bv-length)) | |
5471 ;; (string-to-int (substring arg bv-length)) | |
5472 ;; 0)) | |
5473 ;; possibilities))) | |
5474 ;; (if versions | |
5475 ;; (setq | |
5476 ;; ange-ftp-file-version-alist | |
5477 ;; (cons (cons fn versions) | |
5478 ;; ange-ftp-file-version-alist))))))))) | |
5479 | |
5480 ;;(defun ange-ftp-dired-vms-trample-file-versions (fn) | |
5481 ;; (let* ((start-vn (string-match ";[0-9]+$" fn)) | |
5482 ;; base-version-list) | |
5483 ;; (and start-vn | |
5484 ;; (setq base-version-list ; there was a base version to which | |
5485 ;; (assoc (substring fn 0 start-vn) ; this looks like a | |
5486 ;; ange-ftp-file-version-alist)) ; subversion | |
5487 ;; (not (memq (string-to-int (substring fn (1+ start-vn))) | |
5488 ;; base-version-list)) ; this one doesn't make the cut | |
5489 ;; (progn (beginning-of-line) | |
5490 ;; (delete-char 1) | |
5491 ;; (insert ange-ftp-trample-marker))))) | |
5492 | |
5493 ;;(defun ange-ftp-dired-vms-flag-backup-files (&optional unflag-p) | |
5494 ;; (let ((dired-kept-versions 1) | |
5495 ;; (kept-old-versions 0) | |
5496 ;; marker msg) | |
5497 ;; (if unflag-p | |
5498 ;; (setq marker ?\040 msg "Unflagging") | |
5499 ;; (setq marker dired-del-marker msg "Cleaning")) | |
5500 ;; (ange-ftp-dired-vms-clean-directory nil marker msg))) | |
5501 | |
5502 ;;(or (assq 'vms ange-ftp-dired-flag-backup-files-alist) | |
5503 ;; (setq ange-ftp-dired-flag-backup-files-alist | |
5504 ;; (cons '(vms . ange-ftp-dired-vms-flag-backup-files) | |
5505 ;; ange-ftp-dired-flag-backup-files-alist))) | |
5506 | |
5507 ;;(defun ange-ftp-dired-vms-backup-diff (&optional switches) | |
5508 ;; (let ((file (dired-get-filename 'no-dir)) | |
5509 ;; bak) | |
5510 ;; (if (and (string-match ";[0-9]+$" file) | |
5511 ;; ;; Find most recent previous version. | |
5512 ;; (let ((root (substring file 0 (match-beginning 0))) | |
5513 ;; (ver | |
5514 ;; (string-to-int (substring file (1+ (match-beginning 0))))) | |
5515 ;; found) | |
5516 ;; (setq ver (1- ver)) | |
5517 ;; (while (and (> ver 0) (not found)) | |
5518 ;; (setq bak (concat root ";" (int-to-string ver))) | |
5519 ;; (and (file-exists-p bak) (setq found t)) | |
5520 ;; (setq ver (1- ver))) | |
5521 ;; found)) | |
5522 ;; (if switches | |
5523 ;; (diff (expand-file-name bak) (expand-file-name file) switches) | |
5524 ;; (diff (expand-file-name bak) (expand-file-name file))) | |
5525 ;; (error "No previous version found for %s" file)))) | |
5526 | |
5527 ;;(or (assq 'vms ange-ftp-dired-backup-diff-alist) | |
5528 ;; (setq ange-ftp-dired-backup-diff-alist | |
5529 ;; (cons '(vms . ange-ftp-dired-vms-backup-diff) | |
5530 ;; ange-ftp-dired-backup-diff-alist))) | |
5531 | |
5532 | |
5533 ;;;; ------------------------------------------------------------ | |
5534 ;;;; MTS support | |
5535 ;;;; ------------------------------------------------------------ | |
5536 | |
5537 | |
5538 ;; Convert NAME from UNIX-ish to MTS. If REVERSE given then convert from | |
5539 ;; MTS to UNIX-ish. | |
5540 (defun ange-ftp-fix-name-for-mts (name &optional reverse) | |
5541 (save-match-data | |
5542 (if reverse | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5543 (if (string-match "\\`\\([^:]+:\\)?\\(.*\\)\\'" name) |
28210 | 5544 (let (acct file) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5545 (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
|
5546 (setq file (match-string 2 name)) |
28210 | 5547 (concat (and acct (concat "/" acct "/")) |
5548 file)) | |
5549 (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
|
5550 (if (string-match "\\`/\\([^:]+:\\)/\\(.*\\)\\'" name) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5551 (concat (match-string 1 name) (match-string 2 name)) |
28210 | 5552 ;; Let's hope that mts will recognize it anyway. |
5553 name)))) | |
5554 | |
5555 (or (assq 'mts ange-ftp-fix-name-func-alist) | |
5556 (setq ange-ftp-fix-name-func-alist | |
5557 (cons '(mts . ange-ftp-fix-name-for-mts) | |
5558 ange-ftp-fix-name-func-alist))) | |
5559 | |
5560 ;; Convert name from UNIX-ish to MTS ready for a DIRectory listing. | |
5561 ;; Remember that there are no directories in MTS. | |
5562 (defun ange-ftp-fix-dir-name-for-mts (dir-name) | |
5563 (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
|
5564 (error "Cannot get listing for fictitious \"/\" directory") |
28210 | 5565 (let ((dir-name (ange-ftp-fix-name-for-mts dir-name))) |
5566 (cond | |
5567 ((string-equal dir-name "") | |
5568 "?") | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5569 ((string-match ":\\'" dir-name) |
28210 | 5570 (concat dir-name "?")) |
5571 (dir-name))))) ; It's just a single file. | |
5572 | |
5573 (or (assq 'mts ange-ftp-fix-dir-name-func-alist) | |
5574 (setq ange-ftp-fix-dir-name-func-alist | |
5575 (cons '(mts . ange-ftp-fix-dir-name-for-mts) | |
5576 ange-ftp-fix-dir-name-func-alist))) | |
5577 | |
5578 (or (memq 'mts ange-ftp-dumb-host-types) | |
5579 (setq ange-ftp-dumb-host-types | |
5580 (cons 'mts ange-ftp-dumb-host-types))) | |
5581 | |
5582 (defvar ange-ftp-mts-host-regexp nil) | |
5583 | |
5584 ;; Return non-nil if HOST is running MTS. | |
5585 (defun ange-ftp-mts-host (host) | |
5586 (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
|
5587 (string-match-p ange-ftp-mts-host-regexp host))) |
28210 | 5588 |
5589 ;; Parse the current buffer which is assumed to be in mts ftp dir format. | |
5590 (defun ange-ftp-parse-mts-listing () | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5591 (let ((tbl (make-hash-table :test 'equal))) |
28210 | 5592 (goto-char (point-min)) |
5593 (save-match-data | |
66325
fda96ff4c7e5
* files.el (directory-listing-before-filename-regexp): New
Michael Albinus <michael.albinus@gmx.de>
parents:
66256
diff
changeset
|
5594 (while (re-search-forward directory-listing-before-filename-regexp nil t) |
28210 | 5595 (end-of-line) |
5596 (skip-chars-backward " ") | |
5597 (let ((end (point))) | |
5598 (skip-chars-backward "-A-Z0-9_.!") | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5599 (puthash (buffer-substring (point) end) nil tbl)) |
28210 | 5600 (forward-line 1))) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5601 ;; Don't need to bother with .. |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5602 (puthash "." t tbl) |
28210 | 5603 tbl)) |
5604 | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5605 (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
|
5606 '(mts . ange-ftp-parse-mts-listing)) |
28210 | 5607 |
5608 (defun ange-ftp-add-mts-host (host) | |
5609 "Mark HOST as the name of a machine running MTS." | |
5610 (interactive | |
5611 (list (read-string "Host: " | |
5612 (let ((name (or (buffer-file-name) default-directory))) | |
5613 (and name (car (ange-ftp-ftp-name name))))))) | |
5614 (if (not (ange-ftp-mts-host host)) | |
5615 (setq ange-ftp-mts-host-regexp | |
5616 (concat "^" (regexp-quote host) "$" | |
5617 (and ange-ftp-mts-host-regexp "\\|") | |
5618 ange-ftp-mts-host-regexp) | |
5619 ange-ftp-host-cache nil))) | |
5620 | |
5621 ;;; Tree dired support: | |
5622 | |
5623 ;;;; There aren't too many systems left that use MTS. This dired support will | |
5624 ;;;; work for the implementation of ftp on mtsg.ubc.ca. I hope other mts systems | |
5625 ;;;; implement ftp in the same way. If not, it might be necessary to make the | |
5626 ;;;; following more flexible. | |
5627 | |
5628 ;;(defun ange-ftp-dired-mts-move-to-filename (&optional raise-error eol) | |
5629 ;; "In dired, move to first char of filename on this line. | |
5630 ;;Returns position (point) or nil if no filename on this line." | |
5631 ;; ;; This is the MTS version. | |
5632 ;; (or eol (setq eol (progn (end-of-line) (point)))) | |
5633 ;; (beginning-of-line) | |
5634 ;; (if (re-search-forward | |
5635 ;; ange-ftp-date-regexp eol t) | |
5636 ;; (progn | |
5637 ;; (skip-chars-forward " ") ; Eat blanks after date | |
5638 ;; (skip-chars-forward "0-9:" eol) ; Eat time or year | |
5639 ;; (skip-chars-forward " " eol) ; one space before filename | |
5640 ;; ;; When listing an account other than the users own account it appends | |
5641 ;; ;; ACCT: to the beginning of the filename. Skip over this. | |
5642 ;; (and (looking-at "[A-Z0-9_.]+:") | |
5643 ;; (goto-char (match-end 0))) | |
5644 ;; (point)) | |
5645 ;; (if raise-error | |
5646 ;; (error "No file on this line") | |
5647 ;; nil))) | |
5648 | |
5649 ;;(or (assq 'mts ange-ftp-dired-move-to-filename-alist) | |
5650 ;; (setq ange-ftp-dired-move-to-filename-alist | |
5651 ;; (cons '(mts . ange-ftp-dired-mts-move-to-filename) | |
5652 ;; ange-ftp-dired-move-to-filename-alist))) | |
5653 | |
5654 ;;(defun ange-ftp-dired-mts-move-to-end-of-filename (&optional no-error eol) | |
5655 ;; ;; Assumes point is at beginning of filename. | |
5656 ;; ;; So, it should be called only after (dired-move-to-filename t). | |
5657 ;; ;; On failure, signals an error or returns nil. | |
5658 ;; ;; This is the MTS version. | |
5659 ;; (let (opoint hidden case-fold-search) | |
5660 ;; (setq opoint (point) | |
5661 ;; eol (save-excursion (end-of-line) (point)) | |
5662 ;; hidden (and selective-display | |
5663 ;; (save-excursion (search-forward "\r" eol t)))) | |
5664 ;; (if hidden | |
5665 ;; nil | |
5666 ;; (skip-chars-forward "-A-Z0-9._!" eol)) | |
5667 ;; (or no-error | |
5668 ;; (not (eq opoint (point))) | |
5669 ;; (error | |
5670 ;; (if hidden | |
5671 ;; (substitute-command-keys | |
5672 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") | |
5673 ;; "No file on this line"))) | |
5674 ;; (if (eq opoint (point)) | |
5675 ;; nil | |
5676 ;; (point)))) | |
5677 | |
5678 ;;(or (assq 'mts ange-ftp-dired-move-to-end-of-filename-alist) | |
5679 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist | |
5680 ;; (cons '(mts . ange-ftp-dired-mts-move-to-end-of-filename) | |
5681 ;; ange-ftp-dired-move-to-end-of-filename-alist))) | |
5682 | |
5683 ;;;; ------------------------------------------------------------ | |
5684 ;;;; CMS support | |
5685 ;;;; ------------------------------------------------------------ | |
5686 | |
5687 ;; Since CMS doesn't have any full file name syntax, we have to fudge | |
5688 ;; things with cd's. We actually send too many cd's, but it's dangerous | |
5689 ;; to try to remember the current minidisk, because if the connection | |
5690 ;; is closed and needs to be reopened, we will find ourselves back in | |
5691 ;; the default minidisk. This is fairly likely since CMS ftp servers | |
5692 ;; usually close the connection after 5 minutes of inactivity. | |
5693 | |
5694 ;; Have I got the filename character set right? | |
5695 | |
5696 (defun ange-ftp-fix-name-for-cms (name &optional reverse) | |
5697 (save-match-data | |
5698 (if reverse | |
5699 ;; Since we only convert output from a pwd in this direction, | |
5700 ;; we'll assume that it's a minidisk, and make it into a | |
5701 ;; directory file name. Note that the expand-dir-hashtable | |
5702 ;; stores directories without the trailing /. Is this | |
5703 ;; consistent? | |
5704 (concat "/" name) | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
5705 (if (string-match "\\`/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?\\'" |
28210 | 5706 name) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5707 (let ((minidisk (match-string 1 name))) |
28210 | 5708 (if (match-beginning 2) |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5709 (let ((file (match-string 2 name)) |
28210 | 5710 (cmd (concat "cd " minidisk)) |
5711 | |
5712 ;; Note that host and user are bound in the call | |
5713 ;; to ange-ftp-send-cmd | |
5714 (proc (ange-ftp-get-process ange-ftp-this-host | |
5715 ange-ftp-this-user))) | |
5716 | |
5717 ;; Must use ange-ftp-raw-send-cmd here to avoid | |
5718 ;; an infinite loop. | |
5719 (if (car (ange-ftp-raw-send-cmd proc cmd ange-ftp-this-msg)) | |
5720 file | |
5721 ;; failed... try ONCE more. | |
5722 (setq proc (ange-ftp-get-process ange-ftp-this-host | |
5723 ange-ftp-this-user)) | |
5724 (let ((result (ange-ftp-raw-send-cmd proc cmd | |
5725 ange-ftp-this-msg))) | |
5726 (if (car result) | |
5727 file | |
5728 ;; failed. give up. | |
5729 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user | |
5730 (format "cd to minidisk %s failed: %s" | |
5731 minidisk (cdr result))))))) | |
5732 ;; return the minidisk | |
5733 minidisk)) | |
5734 (error "Invalid CMS filename"))))) | |
5735 | |
5736 (or (assq 'cms ange-ftp-fix-name-func-alist) | |
5737 (setq ange-ftp-fix-name-func-alist | |
5738 (cons '(cms . ange-ftp-fix-name-for-cms) | |
5739 ange-ftp-fix-name-func-alist))) | |
5740 | |
5741 (or (memq 'cms ange-ftp-dumb-host-types) | |
5742 (setq ange-ftp-dumb-host-types | |
5743 (cons 'cms ange-ftp-dumb-host-types))) | |
5744 | |
5745 ;; Convert name from UNIX-ish to CMS ready for a DIRectory listing. | |
5746 (defun ange-ftp-fix-dir-name-for-cms (dir-name) | |
5747 (cond | |
5748 ((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
|
5749 (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
|
5750 ((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
|
5751 (let* ((minidisk (match-string 1 dir-name)) |
28210 | 5752 ;; host and user are bound in the call to ange-ftp-send-cmd |
5753 (proc (ange-ftp-get-process ange-ftp-this-host ange-ftp-this-user)) | |
5754 (cmd (concat "cd " minidisk)) | |
5755 (file (if (match-beginning 2) | |
5756 ;; 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
|
5757 (match-string 2 dir-name) |
28210 | 5758 ;; use the wild-card |
5759 "*"))) | |
5760 (if (car (ange-ftp-raw-send-cmd proc cmd)) | |
5761 file | |
5762 ;; try again... | |
5763 (setq proc (ange-ftp-get-process ange-ftp-this-host | |
5764 ange-ftp-this-user)) | |
5765 (let ((result (ange-ftp-raw-send-cmd proc cmd))) | |
5766 (if (car result) | |
5767 file | |
5768 ;; give up | |
5769 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user | |
5770 (format "cd to minidisk %s failed: %s" | |
5771 minidisk (cdr result)))))))) | |
5772 (t (error "Invalid CMS file name")))) | |
5773 | |
5774 (or (assq 'cms ange-ftp-fix-dir-name-func-alist) | |
5775 (setq ange-ftp-fix-dir-name-func-alist | |
5776 (cons '(cms . ange-ftp-fix-dir-name-for-cms) | |
5777 ange-ftp-fix-dir-name-func-alist))) | |
5778 | |
5779 (defvar ange-ftp-cms-host-regexp nil | |
5780 "Regular expression to match hosts running the CMS operating system.") | |
5781 | |
5782 ;; Return non-nil if HOST is running CMS. | |
5783 (defun ange-ftp-cms-host (host) | |
5784 (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
|
5785 (string-match-p ange-ftp-cms-host-regexp host))) |
28210 | 5786 |
5787 (defun ange-ftp-add-cms-host (host) | |
5788 "Mark HOST as the name of a CMS host." | |
5789 (interactive | |
5790 (list (read-string "Host: " | |
5791 (let ((name (or (buffer-file-name) default-directory))) | |
5792 (and name (car (ange-ftp-ftp-name name))))))) | |
5793 (if (not (ange-ftp-cms-host host)) | |
5794 (setq ange-ftp-cms-host-regexp | |
5795 (concat "^" (regexp-quote host) "$" | |
5796 (and ange-ftp-cms-host-regexp "\\|") | |
5797 ange-ftp-cms-host-regexp) | |
5798 ange-ftp-host-cache nil))) | |
5799 | |
5800 (defun ange-ftp-parse-cms-listing () | |
5801 ;; Parse the current buffer which is assumed to be a CMS directory listing. | |
5802 ;; If we succeed in getting a listing, then we will assume that the minidisk | |
5803 ;; exists. file is bound by the call to ange-ftp-ls. This doesn't work | |
5804 ;; because ange-ftp doesn't know that the root hashtable has only part of | |
5805 ;; the info. It will assume that if a minidisk isn't in it, then it doesn't | |
5806 ;; exist. It would be nice if completion worked for minidisks, as we | |
5807 ;; discover them. | |
5808 ; (let* ((dir-file (directory-file-name file)) | |
5809 ; (root (file-name-directory dir-file)) | |
5810 ; (minidisk (ange-ftp-get-file-part dir-file)) | |
5811 ; (root-tbl (ange-ftp-get-hash-entry root ange-ftp-files-hashtable))) | |
5812 ; (if root-tbl | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5813 ; (puthash minidisk t root-tbl) |
28210 | 5814 ; (setq root-tbl (ange-ftp-make-hashtable)) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5815 ; (puthash minidisk t root-tbl) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5816 ; (puthash "." t root-tbl) |
28210 | 5817 ; (ange-ftp-set-files root root-tbl))) |
5818 ;; Now do the usual parsing | |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5819 (let ((tbl (make-hash-table :test 'equal))) |
28210 | 5820 (goto-char (point-min)) |
5821 (save-match-data | |
5822 (while | |
5823 (re-search-forward | |
5824 "^\\([-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
|
5825 (puthash (concat (match-string 1) "." (match-string 2)) nil tbl) |
28210 | 5826 (forward-line 1)) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
5827 (puthash "." t tbl)) |
28210 | 5828 tbl)) |
5829 | |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
5830 (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
|
5831 '(cms . ange-ftp-parse-cms-listing)) |
30459 | 5832 |
28210 | 5833 ;;;;; Tree dired support: |
5834 | |
5835 ;;(defconst ange-ftp-dired-cms-re-exe | |
5836 ;; "^. [-A-Z0-9$_]+ +EXEC " | |
5837 ;; "Regular expression to use to search for CMS executables.") | |
5838 | |
5839 ;;(or (assq 'cms ange-ftp-dired-re-exe-alist) | |
5840 ;; (setq ange-ftp-dired-re-exe-alist | |
5841 ;; (cons (cons 'cms ange-ftp-dired-cms-re-exe) | |
5842 ;; ange-ftp-dired-re-exe-alist))) | |
5843 | |
5844 | |
5845 ;;(defun ange-ftp-dired-cms-insert-headerline (dir) | |
5846 ;; ;; CMS has no total line, so we insert a blank line for | |
5847 ;; ;; aesthetics. | |
5848 ;; (insert "\n") | |
5849 ;; (forward-char -1) | |
5850 ;; (ange-ftp-real-dired-insert-headerline dir)) | |
5851 | |
5852 ;;(or (assq 'cms ange-ftp-dired-insert-headerline-alist) | |
5853 ;; (setq ange-ftp-dired-insert-headerline-alist | |
5854 ;; (cons '(cms . ange-ftp-dired-cms-insert-headerline) | |
5855 ;; ange-ftp-dired-insert-headerline-alist))) | |
5856 | |
5857 ;;(defun ange-ftp-dired-cms-move-to-filename (&optional raise-error eol) | |
5858 ;; "In dired, move to the first char of filename on this line." | |
5859 ;; ;; This is the CMS version. | |
5860 ;; (or eol (setq eol (progn (end-of-line) (point)))) | |
5861 ;; (let (case-fold-search) | |
5862 ;; (beginning-of-line) | |
5863 ;; (if (re-search-forward " [-A-Z0-9$_]+ +[-A-Z0-9$_]+ +[VF] +[0-9]+ " eol t) | |
5864 ;; (goto-char (1+ (match-beginning 0))) | |
5865 ;; (if raise-error | |
5866 ;; (error "No file on this line") | |
5867 ;; nil)))) | |
5868 | |
5869 ;;(or (assq 'cms ange-ftp-dired-move-to-filename-alist) | |
5870 ;; (setq ange-ftp-dired-move-to-filename-alist | |
5871 ;; (cons '(cms . ange-ftp-dired-cms-move-to-filename) | |
5872 ;; ange-ftp-dired-move-to-filename-alist))) | |
5873 | |
5874 ;;(defun ange-ftp-dired-cms-move-to-end-of-filename (&optional no-error eol) | |
5875 ;; ;; Assumes point is at beginning of filename. | |
5876 ;; ;; So, it should be called only after (dired-move-to-filename t). | |
5877 ;; ;; case-fold-search must be nil, at least for VMS. | |
5878 ;; ;; On failure, signals an error or returns nil. | |
5879 ;; ;; This is the CMS version. | |
5880 ;; (let ((opoint (point)) | |
5881 ;; case-fold-search hidden) | |
5882 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) | |
5883 ;; (setq hidden (and selective-display | |
5884 ;; (save-excursion | |
5885 ;; (search-forward "\r" eol t)))) | |
5886 ;; (if hidden | |
5887 ;; (if no-error | |
5888 ;; nil | |
5889 ;; (error | |
5890 ;; (substitute-command-keys | |
5891 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) | |
5892 ;; (skip-chars-forward "-A-Z0-9$_" eol) | |
5893 ;; (skip-chars-forward " " eol) | |
5894 ;; (skip-chars-forward "-A-Z0-9$_" eol) | |
5895 ;; (if (eq opoint (point)) | |
5896 ;; (if no-error | |
5897 ;; nil | |
5898 ;; (error "No file on this line")) | |
5899 ;; (point))))) | |
5900 | |
5901 ;;(or (assq 'cms ange-ftp-dired-move-to-end-of-filename-alist) | |
5902 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist | |
5903 ;; (cons '(cms . ange-ftp-dired-cms-move-to-end-of-filename) | |
5904 ;; ange-ftp-dired-move-to-end-of-filename-alist))) | |
5905 | |
5906 (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
|
5907 (if (string-match "-Z\\'" name) |
28210 | 5908 (list nil (substring name 0 -2)) |
5909 (list t (concat name "-Z")))) | |
5910 | |
5911 (or (assq 'cms ange-ftp-make-compressed-filename-alist) | |
5912 (setq ange-ftp-make-compressed-filename-alist | |
5913 (cons '(cms . ange-ftp-cms-make-compressed-filename) | |
5914 ange-ftp-make-compressed-filename-alist))) | |
5915 | |
5916 ;;(defun ange-ftp-dired-cms-get-filename (&optional localp no-error-if-not-filep) | |
5917 ;; (let ((name (ange-ftp-real-dired-get-filename localp no-error-if-not-filep))) | |
5918 ;; (and name | |
5919 ;; (if (string-match "^\\([^ ]+\\) +\\([^ ]+\\)$" name) | |
5920 ;; (concat (substring name 0 (match-end 1)) | |
5921 ;; "." | |
5922 ;; (substring name (match-beginning 2) (match-end 2))) | |
5923 ;; name)))) | |
5924 | |
5925 ;;(or (assq 'cms ange-ftp-dired-get-filename-alist) | |
5926 ;; (setq ange-ftp-dired-get-filename-alist | |
5927 ;; (cons '(cms . ange-ftp-dired-cms-get-filename) | |
5928 ;; ange-ftp-dired-get-filename-alist))) | |
5929 | |
5930 ;;;; ------------------------------------------------------------ | |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5931 ;;;; BS2000 support |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5932 ;;;; ------------------------------------------------------------ |
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 ;; 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
|
5935 ;; 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
|
5936 (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
|
5937 "[-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
|
5938 "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
|
5939 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5940 (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
|
5941 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5942 "^\\(" 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
|
5943 "\\(" 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
|
5944 "\\(" 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
|
5945 "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
|
5946 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5947 (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
|
5948 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5949 "/?\\(" 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
|
5950 "\\(\\$[A-Z0-9]*/\\)?" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5951 "\\(" 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
|
5952 "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
|
5953 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5954 (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
|
5955 "X" |
99602
c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
Juanma Barranquero <lekktu@gmail.com>
parents:
98390
diff
changeset
|
5956 "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
|
5957 :group 'ange-ftp |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5958 :type 'string) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5959 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5960 ;; 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
|
5961 ;; BS2000 to UNIX-ish. |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5962 (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
|
5963 (save-match-data |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5964 (if reverse |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5965 (if (string-match |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5966 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
|
5967 name) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5968 (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
|
5969 (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
|
5970 (userid (if (match-beginning 2) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5971 (substring name |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5972 (match-beginning 2) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5973 (1- (match-end 2))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5974 (filename (if (match-beginning 3) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5975 (substring name (match-beginning 3))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5976 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5977 "/" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5978 ;; 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
|
5979 ;; 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
|
5980 (and pubset (concat "_/" pubset "/")) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5981 (and userid (concat userid "/")) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5982 filename)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5983 (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
|
5984 ;; 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
|
5985 ;; 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
|
5986 (if (string-match (concat "^/_/") name) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5987 (setq name (substring name 2))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5988 (if (string-match |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5989 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
|
5990 name) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5991 (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
|
5992 (substring name |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5993 (match-beginning 1) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5994 (1- (match-end 1))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5995 (userid (if (match-beginning 2) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5996 (substring name |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5997 (match-beginning 2) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5998 (1- (match-end 2))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
5999 (filename (if (match-beginning 3) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6000 (substring name (match-beginning 3))))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6001 (if (and (boundp 'filename) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6002 (stringp filename) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6003 (string-match "[#@].+" filename)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6004 (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
|
6005 (substring filename 1)))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6006 (upcase |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6007 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6008 pubset |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6009 (and userid (concat userid ".")) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6010 ;; 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
|
6011 (and filename |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
6012 (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
|
6013 ;; 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
|
6014 name)))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6015 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6016 (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
|
6017 (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
|
6018 (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
|
6019 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
|
6020 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6021 ;; 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
|
6022 ;; 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
|
6023 (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
|
6024 (if (string-equal dir-name "/") |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6025 "*" ;; 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
|
6026 (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
|
6027 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6028 (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
|
6029 (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
|
6030 (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
|
6031 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
|
6032 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6033 (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
|
6034 (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
|
6035 (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
|
6036 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6037 (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
|
6038 (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
|
6039 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6040 ;; 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
|
6041 (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
|
6042 (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
|
6043 (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
|
6044 ;; 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
|
6045 (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
|
6046 (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
|
6047 (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
|
6048 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6049 (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
|
6050 "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
|
6051 (interactive |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6052 (list (read-string "Host: " |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6053 (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
|
6054 (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
|
6055 (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
|
6056 (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
|
6057 (concat "^" (regexp-quote host) "$" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6058 (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
|
6059 ange-ftp-bs2000-host-regexp) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6060 ange-ftp-host-cache nil))) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6061 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6062 (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
|
6063 "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
|
6064 (interactive |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6065 (list (read-string "Host: " |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6066 (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
|
6067 (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
|
6068 (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
|
6069 (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
|
6070 (concat "^" (regexp-quote host) "$" |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6071 (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
|
6072 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
|
6073 ange-ftp-host-cache nil)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6074 ;; 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
|
6075 (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
|
6076 host) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6077 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6078 (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
|
6079 (concat |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6080 "\\(" 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
|
6081 "\\(" 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
|
6082 "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
|
6083 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6084 (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
|
6085 nil |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6086 "*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
|
6087 :group 'ange-ftp |
44953
edd77d3b9898
(ange-ftp-passive-host-alist)
Richard M. Stallman <rms@gnu.org>
parents:
43187
diff
changeset
|
6088 :type '(repeat string)) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6089 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6090 ;; 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
|
6091 ;; 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
|
6092 ;; 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
|
6093 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6094 ;; 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
|
6095 (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
|
6096 (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
|
6097 (match-string 2))) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6098 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6099 ;; 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
|
6100 ;; 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
|
6101 (defun ange-ftp-parse-bs2000-listing () |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
6102 (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
|
6103 pubset |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6104 file) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6105 ;; get current pubset |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6106 (goto-char (point-min)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6107 (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
|
6108 (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
|
6109 ;; add files to hashtable |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6110 (goto-char (point-min)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6111 (save-match-data |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6112 (while (setq file (ange-ftp-parse-bs2000-filename)) |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
6113 (puthash file nil tbl))) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6114 ;; add . and .. |
46355
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
6115 (puthash "." t tbl) |
2ecef3663b04
Use hash-tables.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46349
diff
changeset
|
6116 (puthash ".." t tbl) |
42861
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6117 ;; 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
|
6118 (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
|
6119 (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
|
6120 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
|
6121 tbl)) |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6122 |
47113
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
6123 (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
|
6124 '(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
|
6125 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6126 (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
|
6127 "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
|
6128 `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
|
6129 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
|
6130 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
|
6131 (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
|
6132 (progn |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6133 ;; change to POSIX: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6134 ; (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
|
6135 (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
|
6136 ;; 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
|
6137 ;; `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
|
6138 ;; ange-ftp-get-process. |
72b3185698c4
Use match-string and drop useless `function's.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47068
diff
changeset
|
6139 (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
|
6140 (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
|
6141 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
|
6142 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6143 ;; Not available yet: |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6144 ;; 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
|
6145 ;; 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
|
6146 ;; 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
|
6147 ;; 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
|
6148 ;; 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
|
6149 |
3ee90bcdf67d
Added support for BS2000, and for raw ftp
Richard M. Stallman <rms@gnu.org>
parents:
42801
diff
changeset
|
6150 ;;;; ------------------------------------------------------------ |
28210 | 6151 ;;;; Finally provide package. |
6152 ;;;; ------------------------------------------------------------ | |
6153 | |
6154 (provide 'ange-ftp) | |
6155 | |
64906
63dd464bce2d
Use \\` and \\' instead of ^ and $ in regexps.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64862
diff
changeset
|
6156 ;; arch-tag: 2987ef88-cb56-4ec1-87a9-79132572e316 |
28210 | 6157 ;;; ange-ftp.el ends here |