Mercurial > emacs
annotate lisp/net/ange-ftp.el @ 37678:ebec0594dece
(compile-files): Redirect output of chmod to
/dev/null.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Fri, 11 May 2001 10:53:56 +0000 |
| parents | ac44722a4f19 |
| children | a3b587b05ab3 |
| rev | line source |
|---|---|
| 28210 | 1 ;;; ange-ftp.el --- transparent FTP support for GNU Emacs |
| 2 | |
|
33539
ac44722a4f19
(ange-ftp-file-modtime): Don't use `caddr'.
Miles Bader <miles@gnu.org>
parents:
33533
diff
changeset
|
3 ;; Copyright (C) 1989,90,91,92,93,94,95,96,98, 00 Free Software Foundation, Inc. |
| 28210 | 4 |
| 5 ;; Author: Andy Norman (ange@hplb.hpl.hp.com) | |
| 6 ;; Maintainer: FSF | |
| 7 ;; Keywords: comm | |
| 8 | |
| 9 ;; This file is part of GNU Emacs. | |
| 10 | |
| 11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
| 12 ;; it under the terms of the GNU General Public License as published by | |
| 13 ;; the Free Software Foundation; either version 2, or (at your option) | |
| 14 ;; any later version. | |
| 15 | |
| 16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
| 17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 19 ;; GNU General Public License for more details. | |
| 20 | |
| 21 ;; You should have received a copy of the GNU General Public License | |
| 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
| 23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
| 24 ;; Boston, MA 02111-1307, USA. | |
| 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 ;; | |
| 299 ;; A legal VMS filename is of the form: FILE.TYPE;## | |
| 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 ;; | |
| 387 ;; ------------------------------------------------------------------ | |
| 388 ;; Bugs: | |
| 389 ;; ------------------------------------------------------------------ | |
| 30459 | 390 ;; |
| 28210 | 391 ;; 1. Umask problems: |
| 392 ;; Be warned that files created by using ange-ftp will take account of the | |
| 393 ;; umask of the ftp daemon process rather than the umask of the creating | |
| 394 ;; user. This is particularly important when logging in as the root user. | |
| 395 ;; The way that I tighten up the ftp daemon's umask under HP-UX is to make | |
| 396 ;; sure that the umask is changed to 027 before I spawn /etc/inetd. I | |
| 397 ;; suspect that there is something similar on other systems. | |
| 398 ;; | |
| 399 ;; 2. Some combinations of FTP clients and servers break and get out of sync | |
| 400 ;; when asked to list a non-existent directory. Some of the ai.mit.edu | |
| 401 ;; machines cause this problem for some FTP clients. Using | |
| 402 ;; ange-ftp-kill-ftp-process can restart the ftp process, which | |
| 403 ;; should get things back in sync. | |
| 404 ;; | |
| 405 ;; 3. Ange-ftp does not check to make sure that when creating a new file, | |
| 406 ;; you provide a valid filename for the remote operating system. | |
| 407 ;; If you do not, then the remote FTP server will most likely | |
| 408 ;; translate your filename in some way. This may cause ange-ftp to | |
| 409 ;; get confused about what exactly is the name of the file. The | |
| 410 ;; most common causes of this are using lower case filenames on systems | |
| 411 ;; which support only upper case, and using filenames which are too | |
| 412 ;; long. | |
| 413 ;; | |
| 414 ;; 4. Null (blank) passwords confuse both ange-ftp and some FTP daemons. | |
| 415 ;; | |
| 416 ;; 5. Ange-ftp likes to use pty's to talk to its FTP processes. If GNU Emacs | |
| 417 ;; for some reason creates a FTP process that only talks via pipes then | |
| 418 ;; ange-ftp won't be getting the information it requires at the time that | |
| 419 ;; it wants it since pipes flush at different times to pty's. One | |
| 420 ;; disgusting way around this problem is to talk to the FTP process via | |
| 421 ;; rlogin which does the 'right' things with pty's. | |
| 422 ;; | |
| 423 ;; 6. For CMS support, we send too many cd's. Since cd's are cheap, I haven't | |
| 424 ;; worried about this too much. Eventually, we should have some caching | |
| 425 ;; of the current minidisk. | |
| 30459 | 426 ;; |
| 28210 | 427 ;; 7. Some CMS machines do not assign a default minidisk when you ftp them as |
| 428 ;; anonymous. It is then necessary to guess a valid minidisk name, and cd | |
| 429 ;; to it. This is (understandably) beyond ange-ftp. | |
| 430 ;; | |
| 431 ;; 8. Remote to remote copying of files on non-Unix machines can be risky. | |
| 432 ;; Depending on the variable ange-ftp-binary-file-name-regexp, ange-ftp | |
| 433 ;; will use binary mode for the copy. Between systems of different | |
| 434 ;; architecture, this still may not be enough to guarantee the integrity | |
| 435 ;; of binary files. Binary file transfers from VMS machines are | |
| 436 ;; particularly problematical. Should ange-ftp-binary-file-name-regexp be | |
| 437 ;; an alist of OS type, regexp pairs? | |
| 438 ;; | |
| 439 ;; 9. The code to do compression of files over ftp is not as careful as it | |
| 440 ;; should be. It deletes the old remote version of the file, before | |
| 441 ;; actually checking if the local to remote transfer of the compressed | |
| 442 ;; file succeeds. Of course to delete the original version of the file | |
| 443 ;; after transferring the compressed version back is also dangerous, | |
| 444 ;; because some OS's have severe restrictions on the length of filenames, | |
| 445 ;; and when the compressed version is copied back the "-Z" or ".Z" may be | |
| 446 ;; truncated. Then, ange-ftp would delete the only remaining version of | |
| 447 ;; the file. Maybe ange-ftp should make backups when it compresses files | |
| 448 ;; (of course, the backup "~" could also be truncated off, sigh...). | |
| 449 ;; Suggestions? | |
| 450 ;; | |
| 451 ;; 10. If a dir listing is attempted for an empty directory on (at least | |
| 452 ;; some) VMS hosts, an ftp error is given. This is really an ftp bug, and | |
| 453 ;; I don't know how to get ange-ftp work to around it. | |
| 454 ;; | |
| 455 ;; 11. Bombs on filenames that start with a space. Deals well with filenames | |
| 456 ;; containing spaces, but beware that the remote ftpd may not like them | |
| 457 ;; much. | |
| 458 ;; | |
| 459 ;; 12. The dired support for non-Unix-like systems does not currently work. | |
| 460 ;; It needs to be reimplemented by modifying the parse-...-listing | |
| 461 ;; functions to convert the directory listing to ls -l format. | |
| 30459 | 462 ;; |
| 28210 | 463 ;; 13. The famous @ bug. As mentioned above in TIPS, ULTRIX marks symlinks |
| 464 ;; with a trailing @ in a ls -alF listing. In order to account for this | |
| 465 ;; ange-ftp looks to chop trailing @'s off of symlink names when it is | |
| 466 ;; parsing a listing with the F switch. This will cause ange-ftp to | |
| 467 ;; incorrectly get the name of a symlink on a non-ULTRIX host if its name | |
| 468 ;; ends in an @. ange-ftp will correct itself if you take F out of the | |
| 469 ;; dired ls switches (C-u s will allow you to edit the switches). The | |
| 470 ;; dired buffer will be automatically reverted, which will allow ange-ftp | |
| 471 ;; to fix its files hashtable. A cookie to anyone who can think of a | |
| 472 ;; fast, sure-fire way to recognize ULTRIX over ftp. | |
| 473 | |
| 474 ;; If you find any bugs or problems with this package, PLEASE either e-mail | |
| 475 ;; the above author, or send a message to the ange-ftp-lovers mailing list | |
| 476 ;; below. Ideas and constructive comments are especially welcome. | |
| 477 | |
| 478 ;; ange-ftp-lovers: | |
| 479 ;; | |
| 480 ;; ange-ftp has its own mailing list modestly called ange-ftp-lovers. All | |
| 481 ;; users of ange-ftp are welcome to subscribe (see below) and to discuss | |
| 482 ;; aspects of ange-ftp. New versions of ange-ftp are posted periodically to | |
| 483 ;; the mailing list. | |
| 484 | |
| 485 ;; [The following information about lists may be obsolete.] | |
| 486 | |
| 487 ;; To [un]subscribe to ange-ftp-lovers, or to report mailer problems with the | |
| 488 ;; list, please mail one of the following addresses: | |
| 489 ;; | |
| 490 ;; ange-ftp-lovers-request@anorman.hpl.hp.com | |
| 491 ;; or | |
| 492 ;; ange-ftp-lovers-request%anorman.hpl.hp.com@hplb.hpl.hp.com | |
| 493 ;; | |
| 494 ;; Please don't forget the -request part. | |
| 495 ;; | |
| 496 ;; For mail to be posted directly to ange-ftp-lovers, send to one of the | |
| 497 ;; following addresses: | |
| 30459 | 498 ;; |
| 28210 | 499 ;; ange-ftp-lovers@anorman.hpl.hp.com |
| 500 ;; or | |
| 501 ;; ange-ftp-lovers%anorman.hpl.hp.com@hplb.hpl.hp.com | |
| 502 ;; | |
| 503 ;; Alternatively, there is a mailing list that only gets announcements of new | |
| 504 ;; ange-ftp releases. This is called ange-ftp-lovers-announce, and can be | |
| 505 ;; subscribed to by e-mailing to the -request address as above. Please make | |
| 506 ;; it clear in the request which mailing list you wish to join. | |
| 507 | |
| 508 ;; The archives for ange-ftp-lovers can be found via anonymous ftp under: | |
| 509 ;; | |
| 510 ;; ftp.reed.edu:pub/mailing-lists/ange-ftp/ | |
| 511 | |
| 512 ;; ----------------------------------------------------------- | |
| 513 ;; Technical information on this package: | |
| 514 ;; ----------------------------------------------------------- | |
| 515 | |
| 516 ;; ange-ftp works by putting a handler on file-name-handler-alist | |
| 517 ;; which is called by many primitives, and a few non-primitives, | |
| 518 ;; whenever they see a file name of the appropriate sort. | |
| 519 | |
| 520 ;; Checklist for adding non-UNIX support for TYPE | |
| 30459 | 521 ;; |
| 28210 | 522 ;; The following functions may need TYPE versions: |
| 523 ;; (not all functions will be needed for every OS) | |
| 524 ;; | |
| 525 ;; ange-ftp-fix-name-for-TYPE | |
| 526 ;; ange-ftp-fix-dir-name-for-TYPE | |
| 527 ;; ange-ftp-TYPE-host | |
| 528 ;; ange-ftp-TYPE-add-host | |
| 529 ;; ange-ftp-parse-TYPE-listing | |
| 530 ;; ange-ftp-TYPE-delete-file-entry | |
| 531 ;; ange-ftp-TYPE-add-file-entry | |
| 532 ;; ange-ftp-TYPE-file-name-as-directory | |
| 533 ;; ange-ftp-TYPE-make-compressed-filename | |
| 534 ;; ange-ftp-TYPE-file-name-sans-versions | |
| 535 ;; | |
| 536 ;; Variables: | |
| 537 ;; | |
| 538 ;; ange-ftp-TYPE-host-regexp | |
| 539 ;; May need to add TYPE to ange-ftp-dumb-host-types | |
| 540 ;; | |
| 541 ;; Check the following functions for OS dependent coding: | |
| 542 ;; | |
| 543 ;; ange-ftp-host-type | |
| 544 ;; ange-ftp-guess-host-type | |
| 545 ;; ange-ftp-allow-child-lookup | |
| 546 | |
| 547 ;; Host type conventions: | |
| 548 ;; | |
| 549 ;; The function ange-ftp-host-type and the variable ange-ftp-dired-host-type | |
| 550 ;; (mostly) follow the following conventions for remote host types. At | |
| 551 ;; least, I think that future code should try to follow these conventions, | |
| 552 ;; and the current code should eventually be made compliant. | |
| 553 ;; | |
| 554 ;; nil = local host type, whatever that is (probably unix). | |
| 555 ;; Think nil as in "not a remote host". This value is used by | |
| 556 ;; ange-ftp-dired-host-type for local buffers. | |
| 557 ;; | |
| 558 ;; t = a remote host of unknown type. Think t as in true, it's remote. | |
| 559 ;; Currently, `unix' is used as the default remote host type. | |
| 560 ;; Maybe we should use t. | |
| 561 ;; | |
| 562 ;; TYPE = a remote host of TYPE type. | |
| 563 ;; | |
| 564 ;; TYPE:LIST = a remote host of TYPE type, using a specialized ftp listing | |
| 565 ;; program called list. This is currently only used for Unix | |
| 566 ;; dl (descriptive listings), when ange-ftp-dired-host-type | |
| 567 ;; is set to `unix:dl'. | |
| 568 | |
| 569 ;; Bug report codes: | |
| 570 ;; | |
| 571 ;; Because of their naive faith in this code, there are certain situations | |
| 572 ;; which the writers of this program believe could never happen. However, | |
| 573 ;; being realists they have put calls to `error' in the program at these | |
| 574 ;; points. These errors provide a code, which is an integer, greater than 1. | |
| 575 ;; To aid debugging. the error codes, and the functions in which they reside | |
| 576 ;; are listed below. | |
| 30459 | 577 ;; |
| 28210 | 578 ;; 1: See ange-ftp-ls |
| 579 ;; | |
| 580 | |
| 581 ;; ----------------------------------------------------------- | |
| 582 ;; Hall of fame: | |
| 583 ;; ----------------------------------------------------------- | |
| 30459 | 584 ;; |
| 28210 | 585 ;; Thanks to Roland McGrath for improving the filename syntax handling, |
| 586 ;; for suggesting many enhancements and for numerous cleanups to the code. | |
| 587 ;; | |
| 588 ;; Thanks to Jamie Zawinski for bugfixes and for ideas such as gateways. | |
| 589 ;; | |
| 590 ;; Thanks to Ken Laprade for improved .netrc parsing, password reading, and | |
| 591 ;; dired / shell auto-loading. | |
| 592 ;; | |
| 593 ;; Thanks to Sebastian Kremer for dired support and for many ideas and | |
| 594 ;; bugfixes. | |
| 595 ;; | |
| 596 ;; Thanks to Joe Wells for bugfixes, the original non-UNIX system support, | |
| 597 ;; VOS support, and hostname completion. | |
| 598 ;; | |
| 599 ;; Thanks to Nakagawa Takayuki for many good ideas, filename-completion, help | |
| 600 ;; with file-name expansion, efficiency worries, stylistic concerns and many | |
| 601 ;; bugfixes. | |
| 602 ;; | |
| 603 ;; Thanks to Sandy Rutherford who re-wrote most of ange-ftp to support VMS, | |
| 604 ;; MTS, CMS and UNIX-dls. Sandy also added dired-support for non-UNIX OS and | |
| 605 ;; auto-recognition of the host type. | |
| 606 ;; | |
| 607 ;; Thanks to Dave Smith who wrote the info file for ange-ftp. | |
| 608 ;; | |
| 609 ;; Finally, thanks to Keith Waclena, Mark D. Baushke, Terence Kelleher, Ping | |
| 610 ;; Zhou, Edward Vielmetti, Jack Repenning, Mike Balenger, Todd Kaufmann, | |
| 611 ;; Kjetil Svarstad, Tom Wurgler, Linus Tolke, Niko Makila, Carl Edman, Bill | |
| 612 ;; Trost, Dave Brennan, Dan Jacobson, Andy Scott, Steve Anderson, Sanjay | |
| 613 ;; Mathur, the folks on the ange-ftp-lovers mailing list and many others | |
| 614 ;; whose names I've forgotten who have helped to debug and fix problems with | |
| 615 ;; ange-ftp.el. | |
| 616 | |
| 617 ;;; Code: | |
| 618 | |
| 619 (require 'comint) | |
| 620 ;; Silence compiler: | |
| 621 (eval-when-compile | |
| 622 (require 'dired) | |
| 623 (defvar comint-last-output-start nil) | |
| 624 (defvar comint-last-input-start nil) | |
| 625 (defvar comint-last-input-end nil)) | |
| 626 | |
| 627 ;;;; ------------------------------------------------------------ | |
| 628 ;;;; User customization variables. | |
| 629 ;;;; ------------------------------------------------------------ | |
| 630 | |
| 631 (defgroup ange-ftp nil | |
| 30459 | 632 "Accessing remote files and directories using FTP |
| 28210 | 633 made as simple and transparent as possible." |
| 634 :group 'files | |
| 635 :prefix "ange-ftp-") | |
| 636 | |
| 637 (defcustom ange-ftp-name-format | |
| 638 '("^/\\(\\([^@/:]*\\)@\\)?\\([^@/:]*[^@/:.]\\):\\(.*\\)" . (3 2 4)) | |
| 639 "*Format of a fully expanded remote file name. | |
| 640 | |
| 641 This is a list of the form \(REGEXP HOST USER NAME\), | |
| 642 where REGEXP is a regular expression matching | |
| 643 the full remote name, and HOST, USER, and NAME are the numbers of | |
| 644 parenthesized expressions in REGEXP for the components (in that order)." | |
| 645 :group 'ange-ftp | |
| 30459 | 646 :type '(list regexp |
| 28210 | 647 (integer :tag "Host group") |
| 648 (integer :tag "User group") | |
| 649 (integer :tag "Name group"))) | |
| 650 | |
| 651 ;; ange-ftp-multi-skip-msgs should only match ###-, where ### is one of | |
| 652 ;; the number codes corresponding to ange-ftp-good-msgs or ange-ftp-fatal-msgs. | |
| 653 ;; Otherwise, ange-ftp will go into multi-skip mode, and never come out. | |
| 654 | |
| 655 (defvar ange-ftp-multi-msgs | |
| 656 "^220-\\|^230-\\|^226\\|^25.-\\|^221-\\|^200-\\|^331-\\|^4[25]1-\\|^530-" | |
| 657 "*Regular expression matching the start of a multiline ftp reply.") | |
| 658 | |
| 659 (defvar ange-ftp-good-msgs | |
| 660 "^220 \\|^230 \\|^226 \\|^25. \\|^221 \\|^200 \\|^[Hh]ash mark" | |
| 661 "*Regular expression matching ftp \"success\" messages.") | |
| 662 | |
| 663 ;; CMS and the odd VMS machine say 200 Port rather than 200 PORT. | |
| 664 ;; Also CMS machines use a multiline 550- reply to say that you | |
| 665 ;; don't have write permission. ange-ftp gets into multi-line skip | |
| 666 ;; mode and hangs. Have it ignore 550- instead. It will then barf | |
| 667 ;; when it gets the 550 line, as it should. | |
| 668 | |
|
28892
19ae39682b38
(ange-ftp-skip-msgs): Include 500 code.for
Gerd Moellmann <gerd@gnu.org>
parents:
28210
diff
changeset
|
669 ;; 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
|
670 ;; 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
|
671 ;; 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
|
672 ;; 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
|
673 ;; which we ignore. |
| 28210 | 674 (defcustom ange-ftp-skip-msgs |
| 675 (concat "^200 \\(PORT\\|Port\\) \\|^331 \\|^150 \\|^350 \\|^[0-9]+ bytes \\|" | |
| 676 "^Connected \\|^$\\|^Remote system\\|^Using\\|^ \\|Password:\\|" | |
| 677 "^Data connection \\|" | |
| 678 "^local:\\|^Trying\\|^125 \\|^550-\\|^221 .*oodbye\\|" | |
|
28892
19ae39682b38
(ange-ftp-skip-msgs): Include 500 code.for
Gerd Moellmann <gerd@gnu.org>
parents:
28210
diff
changeset
|
679 "^500 .*AUTH \\(KERBEROS\\|GSSAPI\\)\\|^KERBEROS\\|" |
| 28210 | 680 "^227 .*[Pp]assive\\|^200 EPRT\\|^500 .*EPRT") |
| 681 "*Regular expression matching ftp messages that can be ignored." | |
| 682 :group 'ange-ftp | |
| 683 :type 'regexp) | |
| 684 | |
| 685 (defcustom ange-ftp-fatal-msgs | |
| 686 (concat "^ftp: \\|^Not connected\\|^530 \\|^4[25]1 \\|rcmd: \\|" | |
| 687 "^No control connection\\|unknown host\\|^lost connection") | |
| 688 "*Regular expression matching ftp messages that indicate serious errors. | |
| 689 | |
| 690 These mean that the FTP process should (or already has) been killed." | |
| 691 :group 'ange-ftp | |
| 692 :type 'regexp) | |
| 693 | |
| 694 (defcustom ange-ftp-gateway-fatal-msgs | |
| 695 "No route to host\\|Connection closed\\|No such host\\|Login incorrect" | |
| 696 "*Regular expression matching login failure messages from rlogin/telnet." | |
| 697 :group 'ange-ftp | |
| 698 :type 'regexp) | |
| 699 | |
| 700 (defcustom ange-ftp-xfer-size-msgs | |
| 701 "^150 .* connection for .* (\\([0-9]+\\) bytes)" | |
| 702 "*Regular expression used to determine the number of bytes in a FTP transfer." | |
| 703 :group 'ange-ftp | |
| 704 :type 'regexp) | |
| 705 | |
| 30459 | 706 (defcustom ange-ftp-tmp-name-template |
| 28210 | 707 (expand-file-name "ange-ftp" temporary-file-directory) |
| 708 "*Template used to create temporary files." | |
| 709 :group 'ange-ftp | |
| 710 :type 'directory) | |
| 711 | |
| 712 (defcustom ange-ftp-gateway-tmp-name-template "/tmp/ange-ftp" | |
| 713 "*Template used to create temporary files when ftp-ing through a gateway. | |
| 714 | |
| 715 Files starting with this prefix need to be accessible from BOTH the local | |
| 716 machine and the gateway machine, and need to have the SAME name on both | |
| 717 machines, that is, /tmp is probably NOT what you want, since that is rarely | |
| 718 cross-mounted." | |
| 719 :group 'ange-ftp | |
| 720 :type 'directory) | |
| 721 | |
| 722 (defcustom ange-ftp-netrc-filename "~/.netrc" | |
| 723 "*File in .netrc format to search for passwords." | |
| 724 :group 'ange-ftp | |
| 725 :type 'file) | |
| 726 | |
| 727 (defcustom ange-ftp-disable-netrc-security-check (eq system-type 'windows-nt) | |
| 728 "*If non-nil avoid checking permissions on the .netrc file." | |
| 729 :group 'ange-ftp | |
| 730 :type 'boolean) | |
| 731 | |
| 732 (defcustom ange-ftp-default-user nil | |
| 733 "*User name to use when none is specified in a file name. | |
| 734 | |
| 735 If non-nil but not a string, you are prompted for the name. | |
| 736 If nil, the value of `ange-ftp-netrc-default-user' is used. | |
| 737 If that is nil too, then your login name is used. | |
| 738 | |
| 739 Once a connection to a given host has been initiated, the user name | |
| 740 and password information for that host are cached and re-used by | |
| 741 ange-ftp. Use \\[ange-ftp-set-user] to change the cached values, | |
| 742 since setting `ange-ftp-default-user' directly does not affect | |
| 743 the cached information." | |
| 744 :group 'ange-ftp | |
| 745 :type '(choice (const :tag "Default" nil) | |
| 746 string | |
| 747 (other :tag "Prompt" t))) | |
| 748 | |
| 749 (defcustom ange-ftp-netrc-default-user nil | |
| 750 "Alternate default user name to use when none is specified. | |
| 751 | |
| 752 This variable is set from the `default' command in your `.netrc' file, | |
| 753 if there is one." | |
| 754 :group 'ange-ftp | |
| 755 :type '(choice (const :tag "Default" nil) | |
| 756 string)) | |
| 757 | |
| 758 (defcustom ange-ftp-default-password nil | |
| 759 "*Password to use when the user name equals `ange-ftp-default-user'." | |
| 760 :group 'ange-ftp | |
| 761 :type '(choice (const :tag "Default" nil) | |
| 762 string)) | |
| 763 | |
| 764 (defcustom ange-ftp-default-account nil | |
| 765 "*Account to use when the user name equals `ange-ftp-default-user'." | |
| 766 :group 'ange-ftp | |
| 767 :type '(choice (const :tag "Default" nil) | |
| 768 string)) | |
| 769 | |
| 770 (defcustom ange-ftp-netrc-default-password nil | |
| 771 "*Password to use when the user name equals `ange-ftp-netrc-default-user'." | |
| 772 :group 'ange-ftp | |
| 773 :type '(choice (const :tag "Default" nil) | |
| 774 string)) | |
| 775 | |
| 776 (defcustom ange-ftp-netrc-default-account nil | |
| 777 "*Account to use when the user name equals `ange-ftp-netrc-default-user'." | |
| 778 :group 'ange-ftp | |
| 779 :type '(choice (const :tag "Default" nil) | |
| 780 string)) | |
| 781 | |
| 782 (defcustom ange-ftp-generate-anonymous-password t | |
| 783 "*If t, use value of `user-mail-address' as password for anonymous ftp. | |
| 784 | |
| 785 If a string, then use that string as the password. | |
| 786 If nil, prompt the user for a password." | |
| 787 :group 'ange-ftp | |
| 788 :type '(choice (const :tag "Prompt" nil) | |
| 789 string | |
| 790 (other :tag "User address" t))) | |
| 791 | |
| 792 (defcustom ange-ftp-dumb-unix-host-regexp nil | |
| 793 "*If non-nil, regexp matching hosts on which `dir' command lists directory." | |
| 794 :group 'ange-ftp | |
| 795 :type '(choice (const :tag "Default" nil) | |
| 796 string)) | |
| 797 | |
| 798 (defcustom ange-ftp-binary-file-name-regexp | |
| 799 (concat "\\.[zZ]$\\|\\.lzh$\\|\\.arc$\\|\\.zip$\\|\\.zoo$\\|\\.tar$\\|" | |
| 800 "\\.dvi$\\|\\.ps$\\|\\.elc$\\|TAGS$\\|\\.gif$\\|" | |
| 801 "\\.EXE\\(;[0-9]+\\)?$\\|\\.[zZ]-part-..$\\|\\.gz$\\|" | |
| 802 "\\.taz$\\|\\.tgz$") | |
| 803 "*If a file matches this regexp then it is transferred in binary mode." | |
| 804 :group 'ange-ftp | |
| 805 :type 'regexp) | |
| 806 | |
| 807 (defcustom ange-ftp-gateway-host nil | |
| 808 "*Name of host to use as gateway machine when local FTP isn't possible." | |
| 809 :group 'ange-ftp | |
| 810 :type '(choice (const :tag "Default" nil) | |
| 811 string)) | |
| 812 | |
| 813 (defcustom ange-ftp-local-host-regexp ".*" | |
| 814 "*Regexp selecting hosts which can be reached directly with ftp. | |
| 815 | |
| 816 For other hosts the FTP process is started on \`ange-ftp-gateway-host\' | |
| 817 instead, and/or reached via \`ange-ftp-gateway-ftp-program-name\'." | |
| 818 :group 'ange-ftp | |
| 819 :type 'regexp) | |
| 820 | |
| 821 (defcustom ange-ftp-gateway-program-interactive nil | |
| 822 "*If non-nil then the gateway program should give a shell prompt. | |
| 823 | |
| 824 Both telnet and rlogin do something like this." | |
| 825 :group 'ange-ftp | |
| 826 :type 'boolean) | |
| 827 | |
| 828 (defcustom ange-ftp-gateway-program remote-shell-program | |
| 829 "*Name of program to spawn a shell on the gateway machine. | |
| 830 | |
| 831 Valid candidates are rsh (remsh on some systems), telnet and rlogin. See | |
| 832 also the gateway variable above." | |
| 833 :group 'ange-ftp | |
| 834 :type '(choice (const "rsh") | |
| 835 (const "telnet") | |
| 836 (const "rlogin") | |
| 837 string)) | |
| 838 | |
| 839 (defcustom ange-ftp-gateway-prompt-pattern "^[^#$%>;\n]*[#$%>;] *" | |
| 840 "*Regexp matching prompt after complete login sequence on gateway machine. | |
| 841 | |
| 842 A match for this means the shell is now awaiting input. Make this regexp as | |
| 843 strict as possible; it shouldn't match *anything* at all except the user's | |
| 844 initial prompt. The above string will fail under most SUN-3's since it | |
| 845 matches the login banner." | |
| 846 :group 'ange-ftp | |
| 847 :type 'regexp) | |
| 848 | |
| 849 (defvar ange-ftp-gateway-setup-term-command | |
| 850 (if (eq system-type 'hpux) | |
| 851 "stty -onlcr -echo\n" | |
| 852 "stty -echo nl\n") | |
| 853 "*Set up terminal after logging in to the gateway machine. | |
| 854 This command should stop the terminal from echoing each command, and | |
| 855 arrange to strip out trailing ^M characters.") | |
| 856 | |
| 857 (defcustom ange-ftp-smart-gateway nil | |
| 858 "*Non-nil means the ftp gateway and/or the gateway ftp program is smart. | |
| 859 | |
| 860 Don't bother telnetting, etc., already connected to desired host transparently, | |
| 861 or just issue a user@host command in case \`ange-ftp-gateway-host\' is non-nil." | |
| 862 :group 'ange-ftp | |
| 863 :type 'boolean) | |
| 864 | |
| 865 (defcustom ange-ftp-smart-gateway-port "21" | |
| 866 "*Port on gateway machine to use when smart gateway is in operation." | |
| 867 :group 'ange-ftp | |
| 868 :type 'string) | |
| 869 | |
| 870 (defcustom ange-ftp-send-hash t | |
| 871 "*If non-nil, send the HASH command to the FTP client." | |
| 872 :group 'ange-ftp | |
| 873 :type 'boolean) | |
| 874 | |
| 875 (defcustom ange-ftp-binary-hash-mark-size nil | |
| 876 "*Default size, in bytes, between hash-marks when transferring a binary file. | |
| 877 If nil, this variable will be locally overridden if the FTP client outputs a | |
| 878 suitable response to the HASH command. If non-nil, this value takes | |
| 879 precedence over the local value." | |
| 880 :group 'ange-ftp | |
| 881 :type '(choice (const :tag "Overridden" nil) | |
| 882 integer)) | |
| 883 | |
| 884 (defcustom ange-ftp-ascii-hash-mark-size 1024 | |
| 885 "*Default size, in bytes, between hash-marks when transferring an ASCII file. | |
| 886 This variable is buffer-local and will be locally overridden if the FTP client | |
| 887 outputs a suitable response to the HASH command." | |
| 888 :group 'ange-ftp | |
| 889 :type 'integer) | |
| 890 | |
| 891 (defcustom ange-ftp-process-verbose t | |
| 892 "*If non-nil then be chatty about interaction with the FTP process." | |
| 893 :group 'ange-ftp | |
| 894 :type 'boolean) | |
| 895 | |
| 896 (defcustom ange-ftp-ftp-program-name "ftp" | |
| 897 "*Name of FTP program to run." | |
| 898 :group 'ange-ftp | |
| 899 :type 'string) | |
| 900 | |
| 901 (defcustom ange-ftp-gateway-ftp-program-name "ftp" | |
| 902 "*Name of FTP program to run when accessing non-local hosts. | |
| 903 | |
| 904 Some AT&T folks claim to use something called `pftp' here." | |
| 905 :group 'ange-ftp | |
| 906 :type 'string) | |
| 907 | |
| 908 (defcustom ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v") | |
| 909 "*A list of arguments passed to the FTP program when started." | |
| 910 :group 'ange-ftp | |
| 911 :type '(repeat string)) | |
| 912 | |
| 913 (defcustom ange-ftp-nslookup-program nil | |
| 30459 | 914 "*If non-nil, this is a string naming the nslookup program." |
| 28210 | 915 :group 'ange-ftp |
| 916 :type '(choice (const :tag "None" nil) | |
| 917 string)) | |
| 918 | |
| 919 (defcustom ange-ftp-make-backup-files () | |
| 920 "*Non-nil means make backup files for \"magic\" remote files." | |
| 921 :group 'ange-ftp | |
| 922 :type 'boolean) | |
| 923 | |
| 924 (defcustom ange-ftp-retry-time 5 | |
| 925 "*Number of seconds to wait before retry if file or listing doesn't arrive. | |
| 926 This might need to be increased for very slow connections." | |
| 927 :group 'ange-ftp | |
| 928 :type 'integer) | |
| 929 | |
| 930 (defcustom ange-ftp-auto-save 0 | |
| 931 "If 1, allow ange-ftp files to be auto-saved. | |
| 932 If 0, inhibit auto-saving of ange-ftp files. | |
| 933 Don't use any other value." | |
| 934 :group 'ange-ftp | |
| 935 :type '(choice (const :tag "Suppress" 0) | |
| 936 (const :tag "Allow" 1))) | |
| 937 | |
| 938 (defcustom ange-ftp-try-passive-mode nil | |
| 939 "It t, try to use passive mode in ftp, if the client program | |
| 940 supports the `passive' command." | |
| 941 :group 'ange-ftp | |
| 942 :type 'boolean | |
| 943 :version 21.1) | |
| 944 | |
| 945 | |
| 946 ;;;; ------------------------------------------------------------ | |
| 947 ;;;; Hash table support. | |
| 948 ;;;; ------------------------------------------------------------ | |
| 949 | |
| 950 (require 'backquote) | |
| 951 | |
| 952 (defun ange-ftp-make-hashtable (&optional size) | |
| 953 "Make an obarray suitable for use as a hashtable. | |
| 954 SIZE, if supplied, should be a prime number." | |
| 955 (make-vector (or size 31) 0)) | |
| 956 | |
| 957 (defun ange-ftp-map-hashtable (fun tbl) | |
| 958 "Call FUNCTION on each key and value in HASHTABLE." | |
| 959 (mapatoms | |
| 30459 | 960 (function |
| 28210 | 961 (lambda (sym) |
| 962 (funcall fun (get sym 'key) (get sym 'val)))) | |
| 963 tbl)) | |
| 964 | |
| 965 (defmacro ange-ftp-make-hash-key (key) | |
| 966 "Convert KEY into a suitable key for a hashtable." | |
| 30459 | 967 `(if (stringp ,key) |
| 968 ,key | |
| 969 (prin1-to-string ,key))) | |
| 28210 | 970 |
| 971 (defun ange-ftp-get-hash-entry (key tbl) | |
| 972 "Return the value associated with KEY in HASHTABLE." | |
| 973 (let ((sym (intern-soft (ange-ftp-make-hash-key key) tbl))) | |
| 974 (and sym (get sym 'val)))) | |
| 975 | |
| 976 (defun ange-ftp-put-hash-entry (key val tbl) | |
| 977 "Record an association between KEY and VALUE in HASHTABLE." | |
| 978 (let ((sym (intern (ange-ftp-make-hash-key key) tbl))) | |
| 979 (put sym 'val val) | |
| 980 (put sym 'key key))) | |
| 981 | |
| 982 (defun ange-ftp-del-hash-entry (key tbl) | |
| 983 "Copy all symbols except KEY in HASHTABLE and return modified hashtable." | |
| 984 (let* ((len (length tbl)) | |
| 985 (new-tbl (ange-ftp-make-hashtable len)) | |
| 986 (i (1- len))) | |
| 987 (ange-ftp-map-hashtable | |
| 988 (function | |
| 989 (lambda (k v) | |
| 990 (or (equal k key) | |
| 991 (ange-ftp-put-hash-entry k v new-tbl)))) | |
| 992 tbl) | |
| 993 (while (>= i 0) | |
| 994 (aset tbl i (aref new-tbl i)) | |
| 995 (setq i (1- i))) | |
| 996 tbl)) | |
| 997 | |
| 998 (defun ange-ftp-hash-entry-exists-p (key tbl) | |
| 999 "Return whether there is an association for KEY in TABLE." | |
| 1000 (intern-soft (ange-ftp-make-hash-key key) tbl)) | |
| 1001 | |
| 1002 (defun ange-ftp-hash-table-keys (tbl) | |
| 1003 "Return a sorted list of all the active keys in TABLE, as strings." | |
| 1004 (sort (all-completions "" tbl) | |
| 1005 (function string-lessp))) | |
| 1006 | |
| 1007 ;;;; ------------------------------------------------------------ | |
| 1008 ;;;; Internal variables. | |
| 1009 ;;;; ------------------------------------------------------------ | |
| 1010 | |
| 1011 (defvar ange-ftp-data-buffer-name " *ftp data*" | |
| 1012 "Buffer name to hold directory listing data received from ftp process.") | |
| 1013 | |
| 1014 (defvar ange-ftp-netrc-modtime nil | |
| 1015 "Last modified time of the netrc file from file-attributes.") | |
| 1016 | |
| 1017 (defvar ange-ftp-user-hashtable (ange-ftp-make-hashtable) | |
| 1018 "Hash table holding associations between HOST, USER pairs.") | |
| 1019 | |
| 1020 (defvar ange-ftp-passwd-hashtable (ange-ftp-make-hashtable) | |
| 1021 "Mapping between a HOST, USER pair and a PASSWORD for them. | |
| 1022 All HOST values should be in lower case.") | |
| 1023 | |
| 1024 (defvar ange-ftp-account-hashtable (ange-ftp-make-hashtable) | |
| 1025 "Mapping between a HOST, USER pair and a ACCOUNT password for them.") | |
| 1026 | |
| 1027 (defvar ange-ftp-files-hashtable (ange-ftp-make-hashtable 97) | |
| 1028 "Hash table for storing directories and their respective files.") | |
| 1029 | |
| 1030 (defvar ange-ftp-inodes-hashtable (ange-ftp-make-hashtable 97) | |
| 1031 "Hash table for storing file names and their \"inode numbers\".") | |
| 1032 | |
| 1033 (defvar ange-ftp-next-inode-number 1 | |
| 1034 "Next \"inode number\" value. We give each file name a unique number.") | |
| 1035 | |
| 1036 (defvar ange-ftp-ls-cache-lsargs nil | |
| 1037 "Last set of args used by ange-ftp-ls.") | |
| 1038 | |
| 1039 (defvar ange-ftp-ls-cache-file nil | |
| 1040 "Last file passed to ange-ftp-ls.") | |
| 1041 | |
| 1042 (defvar ange-ftp-ls-cache-res nil | |
| 1043 "Last result returned from ange-ftp-ls.") | |
| 1044 | |
| 1045 (defconst ange-ftp-expand-dir-hashtable (ange-ftp-make-hashtable)) | |
| 1046 | |
| 1047 (defconst ange-ftp-expand-dir-regexp "^5.0 \\([^: ]+\\):") | |
| 1048 | |
| 1049 ;; These are local variables in each FTP process buffer. | |
| 1050 (defvar ange-ftp-hash-mark-unit nil) | |
| 1051 (defvar ange-ftp-hash-mark-count nil) | |
| 1052 (defvar ange-ftp-xfer-size nil) | |
| 1053 (defvar ange-ftp-process-string nil) | |
| 1054 (defvar ange-ftp-process-result-line nil) | |
| 1055 (defvar ange-ftp-process-busy nil) | |
| 1056 (defvar ange-ftp-process-result nil) | |
| 1057 (defvar ange-ftp-process-multi-skip nil) | |
| 1058 (defvar ange-ftp-process-msg nil) | |
| 1059 (defvar ange-ftp-process-continue nil) | |
| 1060 (defvar ange-ftp-last-percent nil) | |
| 1061 | |
| 1062 ;; These variables are bound by one function and examined by another. | |
| 1063 ;; Leave them void globally for error checking. | |
| 1064 (defvar ange-ftp-this-file) | |
| 1065 (defvar ange-ftp-this-dir) | |
| 1066 (defvar ange-ftp-this-user) | |
| 1067 (defvar ange-ftp-this-host) | |
| 1068 (defvar ange-ftp-this-msg) | |
| 1069 (defvar ange-ftp-completion-ignored-pattern) | |
| 1070 (defvar ange-ftp-trample-marker) | |
| 1071 | |
| 1072 ;; New error symbols. | |
| 1073 (put 'ftp-error 'error-conditions '(ftp-error file-error error)) | |
| 1074 ;; (put 'ftp-error 'error-message "FTP error") | |
| 1075 | |
| 1076 ;;; ------------------------------------------------------------ | |
| 1077 ;;; Enhanced message support. | |
| 1078 ;;; ------------------------------------------------------------ | |
| 1079 | |
| 1080 (defun ange-ftp-message (fmt &rest args) | |
| 1081 "Display message in echo area, but indicate if truncated. | |
| 1082 Args are as in `message': a format string, plus arguments to be formatted." | |
| 1083 (let ((msg (apply (function format) fmt args)) | |
| 1084 (max (window-width (minibuffer-window)))) | |
| 1085 (if noninteractive | |
| 1086 msg | |
| 1087 (if (>= (length msg) max) | |
| 1088 ;; Take just the last MAX - 3 chars of the string. | |
| 1089 (setq msg (concat "> " (substring msg (- 3 max))))) | |
| 1090 (message "%s" msg)))) | |
| 1091 | |
| 1092 (defun ange-ftp-abbreviate-filename (file &optional new) | |
| 30459 | 1093 "Abbreviate the file name FILE relative to the `default-directory'. |
| 28210 | 1094 If the optional parameter NEW is given and the non-directory parts match, |
| 1095 only return the directory part of FILE." | |
| 1096 (save-match-data | |
| 1097 (if (and default-directory | |
| 1098 (string-match (concat "^" | |
| 1099 (regexp-quote default-directory) | |
| 1100 ".") file)) | |
| 1101 (setq file (substring file (1- (match-end 0))))) | |
| 1102 (if (and new | |
| 1103 (string-equal (file-name-nondirectory file) | |
| 1104 (file-name-nondirectory new))) | |
| 1105 (setq file (file-name-directory file))) | |
| 1106 (or file "./"))) | |
| 1107 | |
| 1108 ;;;; ------------------------------------------------------------ | |
| 1109 ;;;; User / Host mapping support. | |
| 1110 ;;;; ------------------------------------------------------------ | |
| 1111 | |
| 1112 (defun ange-ftp-set-user (host user) | |
| 1113 "For a given HOST, set or change the default USER." | |
| 1114 (interactive "sHost: \nsUser: ") | |
| 1115 (ange-ftp-put-hash-entry host user ange-ftp-user-hashtable)) | |
| 1116 | |
| 1117 (defun ange-ftp-get-user (host) | |
| 1118 "Given a HOST, return the default USER." | |
| 1119 (ange-ftp-parse-netrc) | |
| 1120 (let ((user (ange-ftp-get-hash-entry host ange-ftp-user-hashtable))) | |
| 1121 (or user | |
| 1122 (prog1 | |
| 1123 (setq user | |
| 1124 (cond ((stringp ange-ftp-default-user) | |
| 1125 ;; We have a default name. Use it. | |
| 1126 ange-ftp-default-user) | |
| 1127 (ange-ftp-default-user | |
| 1128 ;; Ask the user. | |
| 1129 (let ((enable-recursive-minibuffers t)) | |
| 1130 (read-string (format "User for %s: " host) | |
| 1131 (user-login-name)))) | |
| 1132 (ange-ftp-netrc-default-user) | |
| 1133 ;; Default to the user's login name. | |
| 1134 (t | |
| 1135 (user-login-name)))) | |
| 1136 (ange-ftp-set-user host user))))) | |
| 1137 | |
| 1138 ;;;; ------------------------------------------------------------ | |
| 1139 ;;;; Password support. | |
| 1140 ;;;; ------------------------------------------------------------ | |
| 1141 | |
| 1142 (defmacro ange-ftp-generate-passwd-key (host user) | |
| 30459 | 1143 `(concat (downcase ,host) "/" ,user)) |
| 28210 | 1144 |
| 1145 (defmacro ange-ftp-lookup-passwd (host user) | |
| 30459 | 1146 `(ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key ,host ,user) |
| 1147 ange-ftp-passwd-hashtable)) | |
| 28210 | 1148 |
| 1149 (defun ange-ftp-set-passwd (host user passwd) | |
| 1150 "For a given HOST and USER, set or change the associated PASSWORD." | |
| 1151 (interactive (list (read-string "Host: ") | |
| 1152 (read-string "User: ") | |
| 1153 (read-passwd "Password: "))) | |
| 1154 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) | |
| 1155 passwd | |
| 1156 ange-ftp-passwd-hashtable)) | |
| 1157 | |
| 1158 (defun ange-ftp-get-host-with-passwd (user) | |
| 1159 "Given a USER, return a host we know the password for." | |
| 1160 (ange-ftp-parse-netrc) | |
| 1161 (catch 'found-one | |
| 1162 (ange-ftp-map-hashtable | |
| 1163 (function (lambda (host val) | |
| 1164 (if (ange-ftp-lookup-passwd host user) | |
| 1165 (throw 'found-one host)))) | |
| 1166 ange-ftp-user-hashtable) | |
| 1167 (save-match-data | |
| 1168 (ange-ftp-map-hashtable | |
| 1169 (function | |
| 1170 (lambda (key value) | |
| 1171 (if (string-match "^[^/]*\\(/\\).*$" key) | |
| 1172 (let ((host (substring key 0 (match-beginning 1)))) | |
| 1173 (if (and (string-equal user (substring key (match-end 1))) | |
| 1174 value) | |
| 1175 (throw 'found-one host)))))) | |
| 1176 ange-ftp-passwd-hashtable)) | |
| 1177 nil)) | |
| 1178 | |
| 1179 (defun ange-ftp-get-passwd (host user) | |
| 1180 "Return the password for specified HOST and USER, asking user if necessary." | |
| 1181 (ange-ftp-parse-netrc) | |
| 1182 | |
| 1183 ;; look up password in the hash table first; user might have overridden the | |
| 1184 ;; defaults. | |
| 1185 (cond ((ange-ftp-lookup-passwd host user)) | |
| 30459 | 1186 |
| 28210 | 1187 ;; See if default user and password set. |
| 1188 ((and (stringp ange-ftp-default-user) | |
| 1189 ange-ftp-default-password | |
| 1190 (string-equal user ange-ftp-default-user)) | |
| 1191 ange-ftp-default-password) | |
| 30459 | 1192 |
| 28210 | 1193 ;; See if default user and password set from .netrc file. |
| 1194 ((and (stringp ange-ftp-netrc-default-user) | |
| 1195 ange-ftp-netrc-default-password | |
| 1196 (string-equal user ange-ftp-netrc-default-user)) | |
| 1197 ange-ftp-netrc-default-password) | |
| 30459 | 1198 |
| 28210 | 1199 ;; anonymous ftp password is handled specially since there is an |
| 1200 ;; unwritten rule about how that is used on the Internet. | |
| 1201 ((and (or (string-equal user "anonymous") | |
| 1202 (string-equal user "ftp")) | |
| 1203 ange-ftp-generate-anonymous-password) | |
| 1204 (if (stringp ange-ftp-generate-anonymous-password) | |
| 1205 ange-ftp-generate-anonymous-password | |
| 1206 user-mail-address)) | |
| 30459 | 1207 |
| 28210 | 1208 ;; see if same user has logged in to other hosts; if so then prompt |
| 1209 ;; with the password that was used there. | |
| 1210 (t | |
| 1211 (let* ((other (ange-ftp-get-host-with-passwd user)) | |
| 1212 (passwd (if other | |
| 30459 | 1213 |
| 28210 | 1214 ;; found another machine with the same user. |
| 1215 ;; Try that account. | |
| 1216 (read-passwd | |
| 1217 (format "passwd for %s@%s (default same as %s@%s): " | |
| 1218 user host user other) | |
| 1219 nil | |
| 1220 (ange-ftp-lookup-passwd other user)) | |
| 30459 | 1221 |
| 28210 | 1222 ;; I give up. Ask the user for the password. |
| 1223 (read-passwd | |
| 1224 (format "Password for %s@%s: " user host))))) | |
| 1225 (ange-ftp-set-passwd host user passwd) | |
| 1226 passwd)))) | |
| 1227 | |
| 1228 ;;;; ------------------------------------------------------------ | |
| 1229 ;;;; Account support | |
| 1230 ;;;; ------------------------------------------------------------ | |
| 1231 | |
| 1232 ;; Account passwords must be either specified in the .netrc file, or set | |
| 1233 ;; manually by calling ange-ftp-set-account. For the moment, ange-ftp doesn't | |
| 1234 ;; check to see whether the FTP process is actually prompting for an account | |
| 1235 ;; password. | |
| 30459 | 1236 |
| 28210 | 1237 (defun ange-ftp-set-account (host user account) |
| 1238 "For a given HOST and USER, set or change the associated ACCOUNT password." | |
| 1239 (interactive (list (read-string "Host: ") | |
| 1240 (read-string "User: ") | |
| 1241 (read-passwd "Account password: "))) | |
| 1242 (ange-ftp-put-hash-entry (ange-ftp-generate-passwd-key host user) | |
| 1243 account | |
| 1244 ange-ftp-account-hashtable)) | |
| 1245 | |
| 1246 (defun ange-ftp-get-account (host user) | |
| 1247 "Given a HOST and USER, return the FTP account." | |
| 1248 (ange-ftp-parse-netrc) | |
| 1249 (or (ange-ftp-get-hash-entry (ange-ftp-generate-passwd-key host user) | |
| 1250 ange-ftp-account-hashtable) | |
| 1251 (and (stringp ange-ftp-default-user) | |
| 1252 (string-equal user ange-ftp-default-user) | |
| 1253 ange-ftp-default-account) | |
| 1254 (and (stringp ange-ftp-netrc-default-user) | |
| 1255 (string-equal user ange-ftp-netrc-default-user) | |
| 1256 ange-ftp-netrc-default-account))) | |
| 1257 | |
| 1258 ;;;; ------------------------------------------------------------ | |
| 1259 ;;;; ~/.netrc support | |
| 1260 ;;;; ------------------------------------------------------------ | |
| 1261 | |
| 1262 (defun ange-ftp-chase-symlinks (file) | |
| 1263 "Return the filename that FILE references, following all symbolic links." | |
| 1264 (let (temp) | |
| 1265 (while (setq temp (ange-ftp-real-file-symlink-p file)) | |
| 1266 (setq file | |
| 1267 (if (file-name-absolute-p temp) | |
| 1268 temp | |
| 1269 (concat (file-name-directory file) temp))))) | |
| 1270 file) | |
| 1271 | |
| 1272 ;; Move along current line looking for the value of the TOKEN. | |
| 1273 ;; Valid separators between TOKEN and its value are commas and | |
| 1274 ;; whitespace. Second arg LIMIT is a limit for the search. | |
| 1275 | |
| 1276 (defun ange-ftp-parse-netrc-token (token limit) | |
| 1277 (if (search-forward token limit t) | |
| 1278 (let (beg) | |
| 1279 (skip-chars-forward ", \t\r\n" limit) | |
| 1280 (if (eq (following-char) ?\") ;quoted token value | |
| 1281 (progn (forward-char 1) | |
| 1282 (setq beg (point)) | |
| 1283 (skip-chars-forward "^\"" limit) | |
| 1284 (forward-char 1) | |
| 1285 (buffer-substring beg (1- (point)))) | |
| 1286 (setq beg (point)) | |
| 1287 (skip-chars-forward "^, \t\r\n" limit) | |
| 1288 (buffer-substring beg (point)))))) | |
| 1289 | |
| 1290 ;; Extract the values for the tokens `machine', `login', | |
| 1291 ;; `password' and `account' in the current buffer. If successful, | |
| 1292 ;; record the information found. | |
| 1293 | |
| 1294 (defun ange-ftp-parse-netrc-group () | |
| 1295 (let ((start (point)) | |
| 1296 (end (save-excursion | |
| 1297 (if (looking-at "machine\\>") | |
| 1298 ;; Skip `machine' and the machine name that follows. | |
| 1299 (progn | |
| 1300 (skip-chars-forward "^ \t\r\n") | |
| 1301 (skip-chars-forward " \t\r\n") | |
| 1302 (skip-chars-forward "^ \t\r\n")) | |
| 1303 ;; Skip `default'. | |
| 1304 (skip-chars-forward "^ \t\r\n")) | |
| 1305 ;; Find start of the next `machine' or `default' | |
| 1306 ;; or the end of the buffer. | |
| 1307 (if (re-search-forward "machine\\>\\|default\\>" nil t) | |
| 1308 (match-beginning 0) | |
| 1309 (point-max)))) | |
| 1310 machine login password account) | |
| 1311 (setq machine (ange-ftp-parse-netrc-token "machine" end) | |
| 1312 login (ange-ftp-parse-netrc-token "login" end) | |
| 1313 password (ange-ftp-parse-netrc-token "password" end) | |
| 1314 account (ange-ftp-parse-netrc-token "account" end)) | |
| 1315 (if (and machine login) | |
| 1316 ;; found a `machine` token. | |
| 1317 (progn | |
| 1318 (ange-ftp-set-user machine login) | |
| 1319 (ange-ftp-set-passwd machine login password) | |
| 1320 (and account | |
| 1321 (ange-ftp-set-account machine login account))) | |
| 1322 (goto-char start) | |
| 1323 (if (search-forward "default" end t) | |
| 1324 ;; found a `default' token | |
| 1325 (progn | |
| 1326 (setq login (ange-ftp-parse-netrc-token "login" end) | |
| 1327 password (ange-ftp-parse-netrc-token "password" end) | |
| 1328 account (ange-ftp-parse-netrc-token "account" end)) | |
| 1329 (and login | |
| 1330 (setq ange-ftp-netrc-default-user login)) | |
| 1331 (and password | |
| 1332 (setq ange-ftp-netrc-default-password password)) | |
| 1333 (and account | |
| 1334 (setq ange-ftp-netrc-default-account account))))) | |
| 1335 (goto-char end))) | |
| 1336 | |
| 1337 ;; Read in ~/.netrc, if one exists. If ~/.netrc file exists and has | |
| 1338 ;; the correct permissions then extract the \`machine\', \`login\', | |
| 1339 ;; \`password\' and \`account\' information from within. | |
| 1340 | |
| 1341 (defun ange-ftp-parse-netrc () | |
| 1342 ;; We set this before actually doing it to avoid the possibility | |
| 1343 ;; of an infinite loop if ange-ftp-netrc-filename is an FTP file. | |
| 1344 (interactive) | |
| 1345 (let (file attr) | |
| 1346 (let ((default-directory "/")) | |
| 1347 (setq file (ange-ftp-chase-symlinks | |
| 1348 (ange-ftp-real-expand-file-name ange-ftp-netrc-filename))) | |
| 1349 (setq attr (ange-ftp-real-file-attributes file))) | |
| 1350 (if (and attr ; file exists. | |
| 1351 (not (equal (nth 5 attr) ange-ftp-netrc-modtime))) ; file changed | |
| 1352 (save-match-data | |
| 1353 (if (or ange-ftp-disable-netrc-security-check | |
| 1354 (and (eq (nth 2 attr) (user-uid)) ; Same uids. | |
| 1355 (string-match ".r..------" (nth 8 attr)))) | |
| 1356 (save-excursion | |
| 1357 ;; we are cheating a bit here. I'm trying to do the equivalent | |
| 1358 ;; of find-file on the .netrc file, but then nuke it afterwards. | |
| 1359 ;; with the bit of logic below we should be able to have | |
| 1360 ;; encrypted .netrc files. | |
| 1361 (set-buffer (generate-new-buffer "*ftp-.netrc*")) | |
| 1362 (ange-ftp-real-insert-file-contents file) | |
| 1363 (setq buffer-file-name file) | |
| 1364 (setq default-directory (file-name-directory file)) | |
| 1365 (normal-mode t) | |
| 1366 (mapcar 'funcall find-file-hooks) | |
| 1367 (setq buffer-file-name nil) | |
| 1368 (goto-char (point-min)) | |
| 1369 (skip-chars-forward " \t\r\n") | |
| 1370 (while (not (eobp)) | |
| 1371 (ange-ftp-parse-netrc-group)) | |
| 1372 (kill-buffer (current-buffer))) | |
| 1373 (ange-ftp-message "%s either not owned by you or badly protected." | |
| 1374 ange-ftp-netrc-filename) | |
| 1375 (sit-for 1)) | |
| 1376 (setq ange-ftp-netrc-modtime (nth 5 attr)))))) | |
| 1377 | |
| 1378 ;; Return a list of prefixes of the form 'user@host:' to be used when | |
| 1379 ;; completion is done in the root directory. | |
| 1380 | |
| 1381 (defun ange-ftp-generate-root-prefixes () | |
| 1382 (ange-ftp-parse-netrc) | |
| 1383 (save-match-data | |
| 1384 (let (res) | |
| 1385 (ange-ftp-map-hashtable | |
| 1386 (function | |
| 1387 (lambda (key value) | |
| 1388 (if (string-match "^[^/]*\\(/\\).*$" key) | |
| 1389 (let ((host (substring key 0 (match-beginning 1))) | |
| 1390 (user (substring key (match-end 1)))) | |
| 1391 (setq res (cons (list (concat user "@" host ":")) | |
| 1392 res)))))) | |
| 1393 ange-ftp-passwd-hashtable) | |
| 1394 (ange-ftp-map-hashtable | |
| 1395 (function (lambda (host user) | |
| 1396 (setq res (cons (list (concat host ":")) | |
| 1397 res)))) | |
| 1398 ange-ftp-user-hashtable) | |
| 1399 (or res (list nil))))) | |
| 1400 | |
| 1401 ;;;; ------------------------------------------------------------ | |
| 1402 ;;;; Remote file name syntax support. | |
| 1403 ;;;; ------------------------------------------------------------ | |
| 1404 | |
| 1405 (defmacro ange-ftp-ftp-name-component (n ns name) | |
| 1406 "Extract the Nth ftp file name component from NS." | |
| 30459 | 1407 `(let ((elt (nth ,n ,ns))) |
| 1408 (if (match-beginning elt) | |
| 1409 (substring ,name (match-beginning elt) (match-end elt))))) | |
| 28210 | 1410 |
| 1411 (defvar ange-ftp-ftp-name-arg "") | |
| 1412 (defvar ange-ftp-ftp-name-res nil) | |
| 1413 | |
| 1414 ;; Parse NAME according to `ange-ftp-name-format' (which see). | |
| 1415 ;; Returns a list (HOST USER NAME), or nil if NAME does not match the format. | |
| 1416 (defun ange-ftp-ftp-name (name) | |
| 1417 (if (string-equal name ange-ftp-ftp-name-arg) | |
| 1418 ange-ftp-ftp-name-res | |
| 1419 (setq ange-ftp-ftp-name-arg name | |
| 1420 ange-ftp-ftp-name-res | |
| 1421 (save-match-data | |
| 1422 (if (posix-string-match (car ange-ftp-name-format) name) | |
| 1423 (let* ((ns (cdr ange-ftp-name-format)) | |
| 1424 (host (ange-ftp-ftp-name-component 0 ns name)) | |
| 1425 (user (ange-ftp-ftp-name-component 1 ns name)) | |
| 1426 (name (ange-ftp-ftp-name-component 2 ns name))) | |
| 1427 (if (zerop (length user)) | |
| 1428 (setq user (ange-ftp-get-user host))) | |
| 1429 (list host user name)) | |
| 1430 nil))))) | |
| 1431 | |
| 1432 ;; Take a FULLNAME that matches according to ange-ftp-name-format and | |
| 1433 ;; replace the name component with NAME. | |
| 1434 (defun ange-ftp-replace-name-component (fullname name) | |
| 1435 (save-match-data | |
| 1436 (if (posix-string-match (car ange-ftp-name-format) fullname) | |
| 1437 (let* ((ns (cdr ange-ftp-name-format)) | |
| 1438 (elt (nth 2 ns))) | |
| 1439 (concat (substring fullname 0 (match-beginning elt)) | |
| 1440 name | |
| 1441 (substring fullname (match-end elt))))))) | |
| 1442 | |
| 1443 ;;;; ------------------------------------------------------------ | |
| 1444 ;;;; Miscellaneous utils. | |
| 1445 ;;;; ------------------------------------------------------------ | |
| 1446 | |
| 1447 ;; (setq ange-ftp-tmp-keymap (make-sparse-keymap)) | |
| 1448 ;; (define-key ange-ftp-tmp-keymap "\C-m" 'exit-minibuffer) | |
| 1449 | |
| 1450 (defun ange-ftp-repaint-minibuffer () | |
| 1451 "Clear any existing minibuffer message; let the minibuffer contents show." | |
| 1452 (message nil)) | |
| 1453 | |
| 1454 ;; Return the name of the buffer that collects output from the ftp process | |
| 1455 ;; connected to the given HOST and USER pair. | |
| 1456 (defun ange-ftp-ftp-process-buffer (host user) | |
| 1457 (concat "*ftp " user "@" host "*")) | |
| 1458 | |
| 1459 ;; Display the last chunk of output from the ftp process for the given HOST | |
| 1460 ;; USER pair, and signal an error including MSG in the text. | |
| 1461 (defun ange-ftp-error (host user msg) | |
| 1462 (let ((cur (selected-window)) | |
| 1463 (pop-up-windows t)) | |
| 1464 (pop-to-buffer | |
| 1465 (get-buffer-create | |
| 1466 (ange-ftp-ftp-process-buffer host user))) | |
| 1467 (goto-char (point-max)) | |
| 1468 (select-window cur)) | |
| 1469 (signal 'ftp-error (list (format "FTP Error: %s" msg)))) | |
| 1470 | |
| 1471 (defun ange-ftp-set-buffer-mode () | |
| 1472 "Set correct modes for the current buffer if visiting a remote file." | |
| 1473 (if (and (stringp buffer-file-name) | |
| 1474 (ange-ftp-ftp-name buffer-file-name)) | |
| 1475 (auto-save-mode ange-ftp-auto-save))) | |
| 1476 | |
| 1477 (defun ange-ftp-kill-ftp-process (&optional buffer) | |
| 1478 "Kill the FTP process associated with BUFFER (the current buffer, if nil). | |
| 1479 If the BUFFER's visited filename or default-directory is an ftp filename | |
| 1480 then kill the related ftp process." | |
| 1481 (interactive "bKill FTP process associated with buffer: ") | |
| 1482 (if (null buffer) | |
| 1483 (setq buffer (current-buffer)) | |
| 1484 (setq buffer (get-buffer buffer))) | |
| 1485 (let ((file (or (buffer-file-name buffer) | |
| 1486 (save-excursion (set-buffer buffer) default-directory)))) | |
| 1487 (if file | |
| 1488 (let ((parsed (ange-ftp-ftp-name (expand-file-name file)))) | |
| 1489 (if parsed | |
| 1490 (let ((host (nth 0 parsed)) | |
| 1491 (user (nth 1 parsed))) | |
| 1492 (kill-buffer (get-buffer (ange-ftp-ftp-process-buffer host user))))))))) | |
| 1493 | |
| 1494 (defun ange-ftp-quote-string (string) | |
| 1495 "Quote any characters in STRING that may confuse the ftp process." | |
| 1496 (apply (function concat) | |
| 1497 (mapcar (function | |
| 1498 ;; This is said to be wrong; ftp is said to | |
| 1499 ;; need quoting only for ", and that by doubling it. | |
| 1500 ;; But experiment says this kind of quoting is correct | |
| 1501 ;; when talking to ftp on GNU/Linux systems. | |
| 1502 (lambda (char) | |
| 1503 (if (or (<= char ? ) | |
| 1504 (> char ?\~) | |
| 1505 (= char ?\") | |
| 1506 (= char ?\\)) | |
| 1507 (vector ?\\ char) | |
| 1508 (vector char)))) | |
| 1509 string))) | |
| 1510 | |
| 1511 (defun ange-ftp-barf-if-not-directory (directory) | |
| 1512 (or (file-directory-p directory) | |
| 1513 (signal 'file-error | |
| 1514 (list "Opening directory" | |
| 1515 (if (file-exists-p directory) | |
| 1516 "not a directory" | |
| 1517 "no such file or directory") | |
| 1518 directory)))) | |
| 1519 | |
| 1520 ;;;; ------------------------------------------------------------ | |
| 1521 ;;;; FTP process filter support. | |
| 1522 ;;;; ------------------------------------------------------------ | |
| 1523 | |
| 1524 (defun ange-ftp-process-handle-line (line proc) | |
| 1525 "Look at the given LINE from the ftp process PROC. | |
| 1526 Try to categorize it into one of four categories: | |
| 1527 good, skip, fatal, or unknown." | |
| 1528 (cond ((string-match ange-ftp-xfer-size-msgs line) | |
| 1529 (setq ange-ftp-xfer-size | |
| 1530 (ash (string-to-int (substring line | |
| 1531 (match-beginning 1) | |
| 1532 (match-end 1))) | |
| 1533 -10))) | |
| 1534 ((string-match ange-ftp-skip-msgs line) | |
| 1535 t) | |
| 1536 ((string-match ange-ftp-good-msgs line) | |
| 1537 (setq ange-ftp-process-busy nil | |
| 1538 ange-ftp-process-result t | |
| 1539 ange-ftp-process-result-line line)) | |
| 1540 ;; Check this before checking for errors. | |
| 1541 ;; Otherwise the last line of these three seems to be an error: | |
| 1542 ;; 230-see a significant impact from the move. For those of you who can't | |
| 1543 ;; 230-use DNS to resolve hostnames and get an error message like | |
| 1544 ;; 230-"ftp.stsci.edu: unknown host", the new IP address will be... | |
| 1545 ((string-match ange-ftp-multi-msgs line) | |
| 1546 (setq ange-ftp-process-multi-skip t)) | |
| 1547 ((string-match ange-ftp-fatal-msgs line) | |
| 1548 (delete-process proc) | |
| 1549 (setq ange-ftp-process-busy nil | |
| 1550 ange-ftp-process-result-line line)) | |
| 1551 (ange-ftp-process-multi-skip | |
| 1552 t) | |
| 1553 (t | |
| 1554 (setq ange-ftp-process-busy nil | |
| 1555 ange-ftp-process-result-line line)))) | |
| 1556 | |
| 1557 (defun ange-ftp-set-xfer-size (host user bytes) | |
| 1558 "Set the size of the next FTP transfer in bytes." | |
| 1559 (let ((proc (ange-ftp-get-process host user))) | |
| 1560 (if proc | |
| 1561 (let ((buf (process-buffer proc))) | |
| 1562 (if buf | |
| 1563 (save-excursion | |
| 1564 (set-buffer buf) | |
| 1565 (setq ange-ftp-xfer-size (ash bytes -10)))))))) | |
| 1566 | |
| 1567 (defun ange-ftp-process-handle-hash (str) | |
| 1568 "Remove hash marks from STRING and display count so far." | |
| 1569 (setq str (concat (substring str 0 (match-beginning 0)) | |
| 1570 (substring str (match-end 0))) | |
| 1571 ange-ftp-hash-mark-count (+ (- (match-end 0) | |
| 1572 (match-beginning 0)) | |
| 1573 ange-ftp-hash-mark-count)) | |
| 1574 (and ange-ftp-hash-mark-unit | |
| 1575 ange-ftp-process-msg | |
| 1576 ange-ftp-process-verbose | |
| 1577 (not (eq (selected-window) (minibuffer-window))) | |
| 1578 (not (boundp 'search-message)) ;screws up isearch otherwise | |
| 1579 (not cursor-in-echo-area) ;screws up y-or-n-p otherwise | |
| 1580 (let ((kbytes (ash (* ange-ftp-hash-mark-unit | |
| 1581 ange-ftp-hash-mark-count) | |
| 1582 -6))) | |
| 1583 (if (zerop ange-ftp-xfer-size) | |
| 1584 (ange-ftp-message "%s...%dk" ange-ftp-process-msg kbytes) | |
| 1585 (let ((percent (/ (* 100 kbytes) ange-ftp-xfer-size))) | |
| 1586 ;; cut out the redisplay of identical %-age messages. | |
| 1587 (if (not (eq percent ange-ftp-last-percent)) | |
| 1588 (progn | |
| 1589 (setq ange-ftp-last-percent percent) | |
| 1590 (ange-ftp-message "%s...%d%%" ange-ftp-process-msg percent))))))) | |
| 1591 str) | |
| 1592 | |
| 1593 ;; Call the function specified by CONT. CONT can be either a function | |
| 1594 ;; or a list of a function and some args. The first two parameters | |
| 1595 ;; passed to the function will be RESULT and LINE. The remaining args | |
| 1596 ;; will be taken from CONT if a list was passed. | |
| 1597 | |
| 1598 (defun ange-ftp-call-cont (cont result line) | |
| 1599 (if cont | |
| 1600 (if (and (listp cont) | |
| 1601 (not (eq (car cont) 'lambda))) | |
| 1602 (apply (car cont) result line (cdr cont)) | |
| 1603 (funcall cont result line)))) | |
| 1604 | |
| 1605 ;; Build up a complete line of output from the ftp PROCESS and pass it | |
| 1606 ;; on to ange-ftp-process-handle-line to deal with. | |
| 1607 | |
| 1608 (defun ange-ftp-process-filter (proc str) | |
| 1609 (let ((buffer (process-buffer proc)) | |
| 1610 (old-buffer (current-buffer))) | |
| 1611 | |
| 1612 ;; Eliminate nulls. | |
| 1613 (while (string-match "\000+" str) | |
| 30459 | 1614 (setq str (replace-match "" nil nil str))) |
| 28210 | 1615 |
| 1616 ;; see if the buffer is still around... it could have been deleted. | |
| 1617 (if (buffer-name buffer) | |
| 1618 (unwind-protect | |
| 1619 (progn | |
| 1620 (set-buffer (process-buffer proc)) | |
| 30459 | 1621 |
| 28210 | 1622 ;; handle hash mark printing |
| 1623 (and ange-ftp-process-busy | |
| 1624 (string-match "^#+$" str) | |
| 1625 (setq str (ange-ftp-process-handle-hash str))) | |
| 1626 (comint-output-filter proc str) | |
| 1627 ;; Replace STR by the result of the comint processing. | |
| 1628 (setq str (buffer-substring comint-last-output-start | |
| 1629 (process-mark proc))) | |
| 1630 (if ange-ftp-process-busy | |
| 1631 (progn | |
| 1632 (setq ange-ftp-process-string (concat ange-ftp-process-string | |
| 1633 str)) | |
| 30459 | 1634 |
| 28210 | 1635 ;; if we gave an empty password to the USER command earlier |
| 1636 ;; then we should send a null password now. | |
| 1637 (if (string-match "Password: *$" ange-ftp-process-string) | |
| 1638 (send-string proc "\n")))) | |
| 1639 (while (and ange-ftp-process-busy | |
| 1640 (string-match "\n" ange-ftp-process-string)) | |
| 1641 (let ((line (substring ange-ftp-process-string | |
| 1642 0 | |
| 1643 (match-beginning 0)))) | |
| 1644 (setq ange-ftp-process-string (substring ange-ftp-process-string | |
| 1645 (match-end 0))) | |
| 1646 (while (string-match "^ftp> *" line) | |
| 1647 (setq line (substring line (match-end 0)))) | |
| 1648 (ange-ftp-process-handle-line line proc))) | |
| 1649 | |
| 1650 ;; has the ftp client finished? if so then do some clean-up | |
| 1651 ;; actions. | |
| 1652 (if (not ange-ftp-process-busy) | |
| 1653 (progn | |
| 1654 ;; reset the xfer size | |
| 1655 (setq ange-ftp-xfer-size 0) | |
| 1656 | |
| 1657 ;; issue the "done" message since we've finished. | |
| 1658 (if (and ange-ftp-process-msg | |
| 1659 ange-ftp-process-verbose | |
| 1660 ange-ftp-process-result) | |
| 1661 (progn | |
| 1662 (ange-ftp-message "%s...done" ange-ftp-process-msg) | |
| 1663 (ange-ftp-repaint-minibuffer) | |
| 1664 (setq ange-ftp-process-msg nil))) | |
| 30459 | 1665 |
| 28210 | 1666 ;; is there a continuation we should be calling? if so, |
| 1667 ;; we'd better call it, making sure we only call it once. | |
| 1668 (if ange-ftp-process-continue | |
| 1669 (let ((cont ange-ftp-process-continue)) | |
| 1670 (setq ange-ftp-process-continue nil) | |
| 1671 (ange-ftp-call-cont cont | |
| 1672 ange-ftp-process-result | |
| 1673 ange-ftp-process-result-line)))))) | |
| 1674 (set-buffer old-buffer))))) | |
| 1675 | |
| 1676 (defun ange-ftp-process-sentinel (proc str) | |
| 1677 "When ftp process changes state, nuke all file-entries in cache." | |
| 1678 (let ((name (process-name proc))) | |
| 1679 (if (string-match "\\*ftp \\([^@]+\\)@\\([^*]+\\)\\*" name) | |
| 1680 (let ((user (substring name (match-beginning 1) (match-end 1))) | |
| 1681 (host (substring name (match-beginning 2) (match-end 2)))) | |
| 1682 (ange-ftp-wipe-file-entries host user)))) | |
| 1683 (setq ange-ftp-ls-cache-file nil)) | |
| 1684 | |
| 1685 ;;;; ------------------------------------------------------------ | |
| 1686 ;;;; Gateway support. | |
| 1687 ;;;; ------------------------------------------------------------ | |
| 1688 | |
| 1689 (defun ange-ftp-use-gateway-p (host) | |
| 1690 "Returns whether to access this host via a normal (non-smart) gateway." | |
| 1691 ;; yes, I know that I could simplify the following expression, but it is | |
| 1692 ;; clearer (to me at least) this way. | |
| 1693 (and (not ange-ftp-smart-gateway) | |
| 1694 (save-match-data | |
| 1695 (not (string-match ange-ftp-local-host-regexp host))))) | |
| 1696 | |
| 1697 (defun ange-ftp-use-smart-gateway-p (host) | |
| 1698 "Returns whether to access this host via a smart gateway." | |
| 1699 (and ange-ftp-smart-gateway | |
| 1700 (save-match-data | |
| 1701 (not (string-match ange-ftp-local-host-regexp host))))) | |
| 1702 | |
| 1703 | |
| 1704 ;;; ------------------------------------------------------------ | |
| 1705 ;;; Temporary file location and deletion... | |
| 1706 ;;; ------------------------------------------------------------ | |
| 1707 | |
| 1708 (defun ange-ftp-make-tmp-name (host) | |
| 1709 "This routine will return the name of a new file." | |
| 1710 (make-temp-file (if (ange-ftp-use-gateway-p host) | |
| 1711 ange-ftp-gateway-tmp-name-template | |
| 1712 ange-ftp-tmp-name-template))) | |
| 1713 | |
| 1714 (defalias 'ange-ftp-del-tmp-name 'delete-file) | |
| 1715 | |
| 1716 ;;;; ------------------------------------------------------------ | |
| 1717 ;;;; Interactive gateway program support. | |
| 1718 ;;;; ------------------------------------------------------------ | |
| 1719 | |
| 1720 (defvar ange-ftp-gwp-running t) | |
| 1721 (defvar ange-ftp-gwp-status nil) | |
| 1722 | |
| 1723 (defun ange-ftp-gwp-sentinel (proc str) | |
| 1724 (setq ange-ftp-gwp-running nil)) | |
| 1725 | |
| 1726 (defun ange-ftp-gwp-filter (proc str) | |
| 1727 (comint-output-filter proc str) | |
| 1728 (save-excursion | |
| 1729 (set-buffer (process-buffer proc)) | |
| 1730 ;; Replace STR by the result of the comint processing. | |
| 1731 (setq str (buffer-substring comint-last-output-start (process-mark proc)))) | |
| 1732 (cond ((string-match "login: *$" str) | |
| 1733 (send-string proc | |
| 1734 (concat | |
| 1735 (let ((ange-ftp-default-user t)) | |
| 1736 (ange-ftp-get-user ange-ftp-gateway-host)) | |
| 1737 "\n"))) | |
| 1738 ((string-match "Password: *$" str) | |
| 1739 (send-string proc | |
| 1740 (concat | |
| 1741 (ange-ftp-get-passwd ange-ftp-gateway-host | |
| 1742 (ange-ftp-get-user | |
| 1743 ange-ftp-gateway-host)) | |
| 1744 "\n"))) | |
| 1745 ((string-match ange-ftp-gateway-fatal-msgs str) | |
| 1746 (delete-process proc) | |
| 1747 (setq ange-ftp-gwp-running nil)) | |
| 1748 ((string-match ange-ftp-gateway-prompt-pattern str) | |
| 1749 (setq ange-ftp-gwp-running nil | |
| 1750 ange-ftp-gwp-status t)))) | |
| 1751 | |
| 1752 (defun ange-ftp-gwp-start (host user name args) | |
| 1753 "Login to the gateway machine and fire up an ftp process." | |
| 1754 (let* ((gw-user (ange-ftp-get-user ange-ftp-gateway-host)) | |
| 1755 ;; It would be nice to make process-connection-type nil, | |
| 1756 ;; but that doesn't work: ftp never responds. | |
| 1757 ;; Can anyone find a fix for that? | |
| 1758 (proc (let ((process-connection-type t)) | |
| 1759 (start-process name name | |
| 1760 ange-ftp-gateway-program | |
| 1761 ange-ftp-gateway-host))) | |
| 1762 (ftp (mapconcat (function identity) args " "))) | |
| 1763 (process-kill-without-query proc) | |
| 1764 (set-process-sentinel proc (function ange-ftp-gwp-sentinel)) | |
| 1765 (set-process-filter proc (function ange-ftp-gwp-filter)) | |
| 1766 (save-excursion | |
| 1767 (set-buffer (process-buffer proc)) | |
| 1768 (goto-char (point-max)) | |
| 1769 (set-marker (process-mark proc) (point))) | |
| 1770 (setq ange-ftp-gwp-running t | |
| 1771 ange-ftp-gwp-status nil) | |
| 1772 (ange-ftp-message "Connecting to gateway %s..." ange-ftp-gateway-host) | |
| 1773 (while ange-ftp-gwp-running ;perform login sequence | |
| 1774 (accept-process-output proc)) | |
| 1775 (if (not ange-ftp-gwp-status) | |
| 1776 (ange-ftp-error host user "unable to login to gateway")) | |
| 1777 (ange-ftp-message "Connecting to gateway %s...done" ange-ftp-gateway-host) | |
| 1778 (setq ange-ftp-gwp-running t | |
| 1779 ange-ftp-gwp-status nil) | |
| 1780 (process-send-string proc ange-ftp-gateway-setup-term-command) | |
| 1781 (while ange-ftp-gwp-running ;zap ^M's and double echoing. | |
| 1782 (accept-process-output proc)) | |
| 1783 (if (not ange-ftp-gwp-status) | |
| 1784 (ange-ftp-error host user "unable to set terminal modes on gateway")) | |
| 1785 (setq ange-ftp-gwp-running t | |
| 1786 ange-ftp-gwp-status nil) | |
| 1787 (process-send-string proc (concat "exec " ftp "\n")) ;spawn ftp process | |
| 1788 proc)) | |
| 1789 | |
| 1790 ;;;; ------------------------------------------------------------ | |
| 1791 ;;;; Support for sending commands to the ftp process. | |
| 1792 ;;;; ------------------------------------------------------------ | |
| 1793 | |
| 1794 (defun ange-ftp-raw-send-cmd (proc cmd &optional msg cont nowait) | |
| 1795 "Low-level routine to send the given ftp CMD to the ftp PROCESS. | |
| 1796 MSG is an optional message to output before and after the command. | |
| 30459 | 1797 If CONT is non-nil then it is either a function or a list of function |
| 1798 and some arguments. The function will be called when the ftp command | |
| 1799 has completed. | |
| 1800 If CONT is nil then this routine will return \(RESULT . LINE\) where RESULT | |
| 28210 | 1801 is whether the command was successful, and LINE is the line from the FTP |
| 1802 process that caused the command to complete. | |
| 1803 If NOWAIT is given then the routine will return immediately the command has | |
| 1804 been queued with no result. CONT will still be called, however." | |
| 1805 (if (memq (process-status proc) '(run open)) | |
| 1806 (save-excursion | |
| 1807 (set-buffer (process-buffer proc)) | |
| 1808 (ange-ftp-wait-not-busy proc) | |
| 1809 (setq ange-ftp-process-string "" | |
| 1810 ange-ftp-process-result-line "" | |
| 1811 ange-ftp-process-busy t | |
| 1812 ange-ftp-process-result nil | |
| 1813 ange-ftp-process-multi-skip nil | |
| 1814 ange-ftp-process-msg msg | |
| 1815 ange-ftp-process-continue cont | |
| 1816 ange-ftp-hash-mark-count 0 | |
| 1817 ange-ftp-last-percent -1 | |
| 1818 cmd (concat cmd "\n")) | |
| 1819 (and msg ange-ftp-process-verbose (ange-ftp-message "%s..." msg)) | |
| 1820 (goto-char (point-max)) | |
| 1821 (move-marker comint-last-input-start (point)) | |
| 1822 ;; don't insert the password into the buffer on the USER command. | |
| 1823 (save-match-data | |
| 1824 (if (string-match "^user \"[^\"]*\"" cmd) | |
| 1825 (insert (substring cmd 0 (match-end 0)) " Turtle Power!\n") | |
| 1826 (insert cmd))) | |
| 1827 (move-marker comint-last-input-end (point)) | |
| 1828 (send-string proc cmd) | |
| 1829 (set-marker (process-mark proc) (point)) | |
| 1830 (if nowait | |
| 1831 nil | |
| 1832 (ange-ftp-wait-not-busy proc) | |
| 1833 (if cont | |
| 1834 nil ;cont has already been called | |
| 1835 (cons ange-ftp-process-result ange-ftp-process-result-line)))))) | |
| 1836 | |
| 1837 ;; Wait for the ange-ftp process PROC not to be busy. | |
| 1838 (defun ange-ftp-wait-not-busy (proc) | |
| 1839 (save-excursion | |
| 1840 (set-buffer (process-buffer proc)) | |
| 1841 (condition-case nil | |
| 1842 ;; This is a kludge to let user quit in case ftp gets hung. | |
| 1843 ;; It matters because this function can be called from the filter. | |
| 1844 ;; It is bad to allow quitting in a filter, but getting hung | |
| 1845 ;; is worse. By binding quit-flag to nil, we might avoid | |
| 1846 ;; most of the probability of getting screwed because the user | |
| 1847 ;; wants to quit some command. | |
| 1848 (let ((quit-flag nil) | |
| 1849 (inhibit-quit nil)) | |
| 1850 (while ange-ftp-process-busy | |
| 1851 (accept-process-output proc))) | |
| 1852 (quit | |
| 1853 ;; If the user does quit out of this, | |
| 1854 ;; kill the process. That stops any transfer in progress. | |
| 1855 ;; The next operation will open a new ftp connection. | |
| 1856 (delete-process proc) | |
| 1857 (signal 'quit nil))))) | |
| 1858 | |
| 1859 (defun ange-ftp-nslookup-host (host) | |
| 1860 "Attempt to resolve the given HOSTNAME using nslookup if possible." | |
| 1861 (interactive "sHost: ") | |
| 1862 (if ange-ftp-nslookup-program | |
| 1863 (let ((default-directory | |
| 1864 (if (file-accessible-directory-p default-directory) | |
| 1865 default-directory | |
| 1866 exec-directory)) | |
| 1867 ;; It would be nice to make process-connection-type nil, | |
| 1868 ;; but that doesn't work: ftp never responds. | |
| 1869 ;; Can anyone find a fix for that? | |
| 1870 (proc (let ((process-connection-type t)) | |
| 1871 (start-process " *nslookup*" " *nslookup*" | |
| 1872 ange-ftp-nslookup-program host))) | |
| 1873 (res host)) | |
| 1874 (process-kill-without-query proc) | |
| 1875 (save-excursion | |
| 1876 (set-buffer (process-buffer proc)) | |
| 1877 (while (memq (process-status proc) '(run open)) | |
| 1878 (accept-process-output proc)) | |
| 1879 (goto-char (point-min)) | |
| 1880 (if (re-search-forward "Name:.*\nAddress: *\\(.*\\)$" nil t) | |
| 1881 (setq res (buffer-substring (match-beginning 1) | |
| 1882 (match-end 1)))) | |
| 1883 (kill-buffer (current-buffer))) | |
| 1884 res) | |
| 1885 host)) | |
| 1886 | |
| 1887 (defun ange-ftp-start-process (host user name) | |
| 1888 "Spawn a new ftp process ready to connect to machine HOST and give it NAME. | |
| 1889 If HOST is only ftp-able through a gateway machine then spawn a shell | |
| 1890 on the gateway machine to do the ftp instead." | |
| 1891 (let* ((use-gateway (ange-ftp-use-gateway-p host)) | |
| 1892 (use-smart-ftp (and (not ange-ftp-gateway-host) | |
| 1893 (ange-ftp-use-smart-gateway-p host))) | |
| 1894 (ftp-prog (if (or use-gateway | |
| 30459 | 1895 use-smart-ftp) |
| 28210 | 1896 ange-ftp-gateway-ftp-program-name |
| 1897 ange-ftp-ftp-program-name)) | |
| 1898 (args (append (list ftp-prog) ange-ftp-ftp-program-args)) | |
| 1899 ;; Without the following binding, ange-ftp-start-process | |
| 1900 ;; recurses on file-accessible-directory-p, since it needs to | |
| 1901 ;; restart its process in order to determine anything about | |
| 1902 ;; default-directory. | |
| 1903 (file-name-handler-alist) | |
| 1904 (default-directory | |
| 1905 (if (file-accessible-directory-p default-directory) | |
| 1906 default-directory | |
| 1907 exec-directory)) | |
| 1908 proc) | |
| 1909 ;; It would be nice to make process-connection-type nil, | |
| 1910 ;; but that doesn't work: ftp never responds. | |
| 1911 ;; Can anyone find a fix for that? | |
| 1912 (let ((process-connection-type t) | |
| 1913 (process-environment process-environment) | |
| 1914 (buffer (get-buffer-create name))) | |
| 1915 (save-excursion | |
| 1916 (set-buffer buffer) | |
| 1917 (internal-ange-ftp-mode)) | |
| 1918 ;; This tells GNU ftp not to output any fancy escape sequences. | |
| 1919 (setenv "TERM" "dumb") | |
| 1920 (if use-gateway | |
| 1921 (if ange-ftp-gateway-program-interactive | |
| 1922 (setq proc (ange-ftp-gwp-start host user name args)) | |
| 1923 (setq proc (apply 'start-process name name | |
| 1924 (append (list ange-ftp-gateway-program | |
| 1925 ange-ftp-gateway-host) | |
| 1926 args)))) | |
| 1927 (setq proc (apply 'start-process name name args)))) | |
| 1928 (save-excursion | |
| 1929 (set-buffer (process-buffer proc)) | |
| 1930 (goto-char (point-max)) | |
| 1931 (set-marker (process-mark proc) (point))) | |
| 1932 (process-kill-without-query proc) | |
| 1933 (set-process-sentinel proc (function ange-ftp-process-sentinel)) | |
| 1934 (set-process-filter proc (function ange-ftp-process-filter)) | |
| 1935 ;; On Windows, the standard ftp client buffers its output (because | |
| 1936 ;; stdout is a pipe handle) so the startup message may never appear: | |
| 1937 ;; `accept-process-output' at this point would hang indefinitely. | |
| 1938 ;; However, sending an innocuous command ("help foo") forces some | |
| 1939 ;; output that will be ignored, which is just as good. Once we | |
| 1940 ;; start sending normal commands, the output no longer appears to be | |
| 1941 ;; buffered, and everything works correctly. My guess is that the | |
| 1942 ;; output of interest is being sent to stderr which is not buffered. | |
| 1943 (when (eq system-type 'windows-nt) | |
| 1944 ;; force ftp output to be treated as DOS text, otherwise the | |
| 1945 ;; output of "help foo" confuses the EOL detection logic. | |
| 1946 (set-process-coding-system proc 'raw-text-dos) | |
| 1947 (process-send-string proc "help foo\n")) | |
| 1948 (accept-process-output proc) ;wait for ftp startup message | |
| 1949 proc)) | |
| 1950 | |
| 1951 (put 'internal-ange-ftp-mode 'mode-class 'special) | |
| 1952 | |
| 1953 (defun internal-ange-ftp-mode () | |
| 1954 "Major mode for interacting with the FTP process. | |
| 1955 | |
| 1956 \\{comint-mode-map}" | |
| 1957 (interactive) | |
| 1958 (comint-mode) | |
| 1959 (setq major-mode 'internal-ange-ftp-mode) | |
| 1960 (setq mode-name "Internal Ange-ftp") | |
| 1961 (let ((proc (get-buffer-process (current-buffer)))) | |
| 1962 (make-local-variable 'ange-ftp-process-string) | |
| 1963 (setq ange-ftp-process-string "") | |
| 1964 (make-local-variable 'ange-ftp-process-busy) | |
| 1965 (make-local-variable 'ange-ftp-process-result) | |
| 1966 (make-local-variable 'ange-ftp-process-msg) | |
| 1967 (make-local-variable 'ange-ftp-process-multi-skip) | |
| 1968 (make-local-variable 'ange-ftp-process-result-line) | |
| 1969 (make-local-variable 'ange-ftp-process-continue) | |
| 1970 (make-local-variable 'ange-ftp-hash-mark-count) | |
| 1971 (make-local-variable 'ange-ftp-binary-hash-mark-size) | |
| 1972 (make-local-variable 'ange-ftp-ascii-hash-mark-size) | |
| 1973 (make-local-variable 'ange-ftp-hash-mark-unit) | |
| 1974 (make-local-variable 'ange-ftp-xfer-size) | |
| 1975 (make-local-variable 'ange-ftp-last-percent) | |
| 1976 (setq ange-ftp-hash-mark-count 0) | |
| 1977 (setq ange-ftp-xfer-size 0) | |
| 1978 (setq ange-ftp-process-result-line "") | |
| 1979 | |
| 1980 (setq comint-prompt-regexp "^ftp> ") | |
| 1981 (make-local-variable 'comint-password-prompt-regexp) | |
| 1982 ;; This is a regexp that can't match anything. | |
| 1983 ;; ange-ftp has its own ways of handling passwords. | |
| 1984 (setq comint-password-prompt-regexp "^a\\'z") | |
| 1985 (make-local-variable 'paragraph-start) | |
| 1986 (setq paragraph-start comint-prompt-regexp))) | |
| 1987 | |
| 1988 (defun ange-ftp-smart-login (host user pass account proc) | |
| 1989 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
| 1990 PROC is the FTP-client's process. This routine uses the smart-gateway | |
| 30459 | 1991 host specified in `ange-ftp-gateway-host'." |
| 28210 | 1992 (let ((result (ange-ftp-raw-send-cmd |
| 1993 proc | |
| 1994 (format "open %s %s" | |
| 1995 (ange-ftp-nslookup-host ange-ftp-gateway-host) | |
| 1996 ange-ftp-smart-gateway-port) | |
| 1997 (format "Opening FTP connection to %s via %s" | |
| 1998 host | |
| 1999 ange-ftp-gateway-host)))) | |
| 2000 (or (car result) | |
| 30459 | 2001 (ange-ftp-error host user |
| 28210 | 2002 (concat "OPEN request failed: " |
| 2003 (cdr result)))) | |
| 2004 (setq result (ange-ftp-raw-send-cmd | |
| 2005 proc (format "user \"%s\"@%s %s %s" | |
| 2006 user | |
| 2007 (ange-ftp-nslookup-host host) | |
| 2008 pass | |
| 2009 account) | |
| 2010 (format "Logging in as user %s@%s" | |
| 2011 user host))) | |
| 2012 (or (car result) | |
| 2013 (progn | |
| 2014 (ange-ftp-set-passwd host user nil) ; reset password | |
| 2015 (ange-ftp-set-account host user nil) ; reset account | |
| 2016 (ange-ftp-error host user | |
| 2017 (concat "USER request failed: " | |
| 2018 (cdr result))))))) | |
| 2019 | |
| 2020 (defun ange-ftp-normal-login (host user pass account proc) | |
| 2021 "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT. | |
| 2022 PROC is the process to the FTP-client. HOST may have an optional | |
| 2023 suffix of the form #PORT to specify a non-default port" | |
| 2024 (save-match-data | |
| 2025 (string-match "^\\([^#]+\\)\\(#\\([0-9]+\\)\\)?\\'" host) | |
| 2026 (let* ((nshost (ange-ftp-nslookup-host (match-string 1 host))) | |
| 2027 (port (match-string 3 host)) | |
| 2028 (result (ange-ftp-raw-send-cmd | |
| 2029 proc | |
| 2030 (if port | |
| 2031 (format "open %s %s" nshost port) | |
| 2032 (format "open %s" nshost)) | |
| 2033 (format "Opening FTP connection to %s" host)))) | |
| 2034 (or (car result) | |
| 2035 (ange-ftp-error host user | |
| 2036 (concat "OPEN request failed: " | |
| 2037 (cdr result)))) | |
| 2038 (setq result (ange-ftp-raw-send-cmd | |
| 2039 proc | |
| 2040 (if (and (ange-ftp-use-smart-gateway-p host) | |
| 2041 ange-ftp-gateway-host) | |
| 2042 (format "user \"%s\"@%s %s %s" user nshost pass account) | |
| 2043 (format "user \"%s\" %s %s" user pass account)) | |
| 2044 (format "Logging in as user %s@%s" user host))) | |
| 2045 (or (car result) | |
| 2046 (progn | |
| 2047 (ange-ftp-set-passwd host user nil) ;reset password. | |
| 2048 (ange-ftp-set-account host user nil) ;reset account. | |
| 2049 (ange-ftp-error host user | |
| 2050 (concat "USER request failed: " | |
| 2051 (cdr result)))))))) | |
| 2052 | |
| 2053 ;; ange@hplb.hpl.hp.com says this should not be changed. | |
| 2054 (defvar ange-ftp-hash-mark-msgs | |
| 2055 "[hH]ash mark [^0-9]*\\([0-9]+\\)" | |
| 2056 "*Regexp matching the FTP client's output upon doing a HASH command.") | |
| 2057 | |
| 2058 (defun ange-ftp-guess-hash-mark-size (proc) | |
| 2059 (if ange-ftp-send-hash | |
| 2060 (save-excursion | |
| 2061 (set-buffer (process-buffer proc)) | |
| 2062 (let* ((status (ange-ftp-raw-send-cmd proc "hash")) | |
| 2063 (result (car status)) | |
| 2064 (line (cdr status))) | |
| 2065 (save-match-data | |
| 2066 (if (string-match ange-ftp-hash-mark-msgs line) | |
| 2067 (let ((size (string-to-int | |
| 2068 (substring line | |
| 2069 (match-beginning 1) | |
| 2070 (match-end 1))))) | |
| 2071 (setq ange-ftp-ascii-hash-mark-size size | |
| 2072 ange-ftp-hash-mark-unit (ash size -4)) | |
| 2073 | |
| 2074 ;; if a default value for this is set, use that value. | |
| 2075 (or ange-ftp-binary-hash-mark-size | |
| 2076 (setq ange-ftp-binary-hash-mark-size size))))))))) | |
| 2077 | |
| 2078 (defun ange-ftp-get-process (host user) | |
| 2079 "Return an FTP subprocess connected to HOST and logged in as USER. | |
| 2080 Create a new process if needed." | |
| 2081 (let* ((name (ange-ftp-ftp-process-buffer host user)) | |
| 2082 (proc (get-process name))) | |
| 2083 (if (and proc (memq (process-status proc) '(run open))) | |
| 2084 proc | |
| 2085 ;; Must delete dead process so that new process can reuse the name. | |
| 2086 (if proc (delete-process proc)) | |
| 2087 (let ((pass (ange-ftp-quote-string | |
| 2088 (ange-ftp-get-passwd host user))) | |
| 2089 (account (ange-ftp-quote-string | |
| 2090 (ange-ftp-get-account host user)))) | |
| 2091 ;; grab a suitable process. | |
| 2092 (setq proc (ange-ftp-start-process host user name)) | |
| 30459 | 2093 |
| 28210 | 2094 ;; login to FTP server. |
| 2095 (if (and (ange-ftp-use-smart-gateway-p host) | |
| 2096 ange-ftp-gateway-host) | |
| 2097 (ange-ftp-smart-login host user pass account proc) | |
| 2098 (ange-ftp-normal-login host user pass account proc)) | |
| 30459 | 2099 |
| 28210 | 2100 ;; Tell client to send back hash-marks as progress. It isn't usually |
| 2101 ;; fatal if this command fails. | |
| 2102 (ange-ftp-guess-hash-mark-size proc) | |
| 2103 | |
| 2104 ;; Guess at the host type. | |
| 2105 (ange-ftp-guess-host-type host user) | |
| 2106 | |
| 2107 ;; Try to use passive mode if asked to. | |
| 2108 (when ange-ftp-try-passive-mode | |
| 2109 (let ((answer (cdr (ange-ftp-raw-send-cmd | |
| 2110 proc "passive" "Trying passive mode..." nil)))) | |
| 2111 (if (string-match "\\?\\|refused" answer) | |
| 2112 (message "Trying passive mode...ok") | |
| 2113 (message "Trying passive mode...failed")))) | |
| 2114 | |
| 2115 ;; Run any user-specified hooks. Note that proc, host and user are | |
| 2116 ;; dynamically bound at this point. | |
| 2117 (run-hooks 'ange-ftp-process-startup-hook)) | |
| 2118 proc))) | |
| 2119 | |
| 2120 ;; Variables for caching host and host-type | |
| 2121 (defvar ange-ftp-host-cache nil) | |
| 2122 (defvar ange-ftp-host-type-cache nil) | |
| 2123 | |
| 2124 ;; If ange-ftp-host-type is called with the optional user | |
| 2125 ;; argument, it will attempt to guess the host type by connecting | |
| 2126 ;; as user, if necessary. For efficiency, I have tried to give this | |
| 2127 ;; optional second argument only when necessary. Have I missed any calls | |
| 2128 ;; to ange-ftp-host-type where it should have been supplied? | |
| 2129 | |
| 2130 (defun ange-ftp-host-type (host &optional user) | |
| 2131 "Return a symbol which represents the type of the HOST given. | |
| 2132 If the optional argument USER is given, attempts to guess the | |
| 2133 host-type by logging in as USER." | |
| 2134 (cond ((null host) 'unix) | |
| 2135 ;; Return `unix' if HOST is nil, since that's the most vanilla | |
| 2136 ;; possible return value. | |
| 2137 ((eq host ange-ftp-host-cache) | |
| 2138 ange-ftp-host-type-cache) | |
| 2139 ;; Trigger an ftp connection, in case we need to guess at the host type. | |
| 2140 ((and user (ange-ftp-get-process host user) (eq host ange-ftp-host-cache)) | |
| 2141 ange-ftp-host-type-cache) | |
| 2142 (t | |
| 2143 (setq ange-ftp-host-cache host | |
| 2144 ange-ftp-host-type-cache | |
| 2145 (cond ((ange-ftp-dumb-unix-host host) | |
| 2146 'dumb-unix) | |
| 2147 ;; ((and (fboundp 'ange-ftp-vos-host) | |
| 2148 ;; (ange-ftp-vos-host host)) | |
| 2149 ;; 'vos) | |
| 2150 ((and (fboundp 'ange-ftp-vms-host) | |
| 2151 (ange-ftp-vms-host host)) | |
| 2152 'vms) | |
| 2153 ((and (fboundp 'ange-ftp-mts-host) | |
| 2154 (ange-ftp-mts-host host)) | |
| 2155 'mts) | |
| 2156 ((and (fboundp 'ange-ftp-cms-host) | |
| 2157 (ange-ftp-cms-host host)) | |
| 2158 'cms) | |
| 2159 (t | |
| 2160 'unix)))))) | |
| 2161 | |
| 2162 ;; It would be nice to abstract the functions ange-ftp-TYPE-host and | |
| 2163 ;; ange-ftp-add-TYPE-host. The trick is to abstract these functions | |
| 2164 ;; without sacrificing speed. Also, having separate variables | |
| 2165 ;; ange-ftp-TYPE-regexp is more user friendly then requiring the user to | |
| 2166 ;; set an alist to indicate that a host is of a given type. Even with | |
| 2167 ;; automatic host type recognition, setting a regexp is still a good idea | |
| 2168 ;; (for efficiency) if you log into a particular non-UNIX host frequently. | |
| 2169 | |
| 2170 (defvar ange-ftp-fix-name-func-alist nil | |
| 2171 "Alist saying how to convert file name to the host's syntax. | |
| 2172 Association list of \( TYPE \. FUNC \) pairs, where FUNC is a routine | |
| 2173 which can change a UNIX file name into a name more suitable for a host of type | |
| 2174 TYPE.") | |
| 2175 | |
| 2176 (defvar ange-ftp-fix-dir-name-func-alist nil | |
| 2177 "Alist saying how to convert directory name to the host's syntax. | |
| 2178 Association list of \( TYPE \. FUNC \) pairs, where FUNC is a routine | |
| 2179 which can change UNIX directory name into a directory name more suitable | |
| 2180 for a host of type TYPE.") | |
| 2181 | |
| 2182 ;; *** Perhaps the sense of this variable should be inverted, since there | |
| 2183 ;; *** is only 1 host type that can take ls-style listing options. | |
| 2184 (defvar ange-ftp-dumb-host-types '(dumb-unix) | |
| 2185 "List of host types that can't take UNIX ls-style listing options.") | |
| 2186 | |
| 2187 (defun ange-ftp-send-cmd (host user cmd &optional msg cont nowait) | |
| 2188 "Find an ftp process connected to HOST logged in as USER and send it CMD. | |
| 2189 MSG is an optional status message to be output before and after issuing the | |
| 2190 command. | |
| 30459 | 2191 See the documentation for `ange-ftp-raw-send-cmd' for a description of CONT |
| 28210 | 2192 and NOWAIT." |
| 2193 ;; Handle conversion to remote file name syntax and remote ls option | |
| 2194 ;; capability. | |
| 2195 (let ((cmd0 (car cmd)) | |
| 2196 (cmd1 (nth 1 cmd)) | |
| 2197 (ange-ftp-this-user user) | |
| 2198 (ange-ftp-this-host host) | |
| 2199 (ange-ftp-this-msg msg) | |
| 2200 cmd2 cmd3 host-type fix-name-func) | |
| 2201 | |
| 2202 (cond | |
| 30459 | 2203 |
| 28210 | 2204 ;; pwd case (We don't care what host-type.) |
| 2205 ((null cmd1)) | |
| 30459 | 2206 |
| 28210 | 2207 ;; cmd == 'dir "remote-name" "local-name" "ls-switches" |
| 2208 ((progn | |
| 2209 (setq cmd2 (nth 2 cmd) | |
| 2210 host-type (ange-ftp-host-type host user)) | |
| 2211 ;; This will trigger an FTP login, if one doesn't exist | |
| 2212 (eq cmd0 'dir)) | |
| 2213 (setq cmd1 (funcall | |
| 2214 (or (cdr (assq host-type ange-ftp-fix-dir-name-func-alist)) | |
| 2215 'identity) | |
| 2216 cmd1) | |
| 2217 cmd3 (nth 3 cmd)) | |
| 2218 ;; Need to deal with the HP-UX ftp bug. This should also allow | |
| 2219 ;; us to resolve symlinks to directories on SysV machines. (Sebastian will | |
| 2220 ;; be happy.) | |
| 2221 (and (eq host-type 'unix) | |
| 2222 (string-match "/$" cmd1) | |
| 2223 (not (string-match "R" cmd3)) | |
| 2224 (setq cmd1 (concat cmd1 "."))) | |
| 2225 | |
| 2226 ;; If the dir name contains a space, some ftp servers will | |
| 2227 ;; refuse to list it. We instead change directory to the | |
| 2228 ;; directory in question and ls ".". | |
| 2229 (when (string-match " " cmd1) | |
| 2230 (ange-ftp-cd host user (nth 1 cmd)) | |
| 2231 (setq cmd1 ".")) | |
| 2232 | |
| 2233 ;; If the remote ls can take switches, put them in | |
| 2234 (or (memq host-type ange-ftp-dumb-host-types) | |
| 2235 (setq cmd0 'ls | |
| 2236 cmd1 (format "\"%s %s\"" cmd3 cmd1)))) | |
| 30459 | 2237 |
| 28210 | 2238 ;; First argument is the remote name |
| 2239 ((progn | |
| 2240 (setq fix-name-func (or (cdr (assq host-type | |
| 2241 ange-ftp-fix-name-func-alist)) | |
| 2242 'identity)) | |
| 2243 (memq cmd0 '(get delete mkdir rmdir cd))) | |
| 2244 (setq cmd1 (funcall fix-name-func cmd1))) | |
| 2245 | |
| 2246 ;; Second argument is the remote name | |
| 2247 ((memq cmd0 '(append put chmod)) | |
| 2248 (setq cmd2 (funcall fix-name-func cmd2))) | |
| 2249 | |
| 2250 ;; Both arguments are remote names | |
| 2251 ((eq cmd0 'rename) | |
| 2252 (setq cmd1 (funcall fix-name-func cmd1) | |
| 2253 cmd2 (funcall fix-name-func cmd2)))) | |
| 30459 | 2254 |
| 2255 ;; Turn the command into one long string | |
| 28210 | 2256 (setq cmd0 (symbol-name cmd0)) |
| 2257 (setq cmd (concat cmd0 | |
| 2258 (and cmd1 (concat " " cmd1)) | |
| 2259 (and cmd2 (concat " " cmd2)))) | |
| 2260 | |
| 2261 ;; Actually send the resulting command. | |
| 2262 (let (afsc-result | |
| 2263 afsc-line) | |
| 2264 (ange-ftp-raw-send-cmd | |
| 2265 (ange-ftp-get-process host user) | |
| 2266 cmd | |
| 2267 msg | |
| 30459 | 2268 (list (lambda (result line host user cmd msg cont nowait) |
| 2269 (or cont (setq afsc-result result | |
| 2270 afsc-line line)) | |
| 2271 (if result (ange-ftp-call-cont cont result line) | |
| 2272 (ange-ftp-raw-send-cmd | |
| 2273 (ange-ftp-get-process host user) | |
| 2274 cmd | |
| 2275 msg | |
| 2276 (list (lambda (result line cont) | |
| 2277 (or cont (setq afsc-result result | |
| 2278 afsc-line line)) | |
| 2279 (ange-ftp-call-cont cont result line)) | |
| 2280 cont)) | |
| 2281 nowait)) | |
| 2282 host user cmd msg cont nowait) | |
| 28210 | 2283 nowait) |
| 2284 | |
| 2285 (if nowait | |
| 2286 nil | |
| 2287 (if cont | |
| 2288 nil | |
| 2289 (cons afsc-result afsc-line)))))) | |
| 2290 | |
| 2291 ;; It might be nice to message users about the host type identified, | |
| 2292 ;; but there is so much other messaging going on, it would not be | |
| 2293 ;; seen. No point in slowing things down just so users can read | |
| 2294 ;; a host type message. | |
| 2295 | |
| 2296 (defconst ange-ftp-cms-name-template | |
| 2297 (concat | |
| 2298 "^[-A-Z0-9$*][-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?" | |
| 2299 "[-A-Z0-9$*]?[-A-Z0-9$*]?[-A-Z0-9$*]?\\.[0-9][0-9][0-9A-Z]$")) | |
| 2300 (defconst ange-ftp-vms-name-template | |
| 2301 "^[-A-Z0-9_$]+:\\[[-A-Z0-9_$]+\\(\\.[-A-Z0-9_$]+\\)*\\]$") | |
| 2302 (defconst ange-ftp-mts-name-template | |
| 2303 "^[A-Z0-9._][A-Z0-9._][A-Z0-9._][A-Z0-9._]:$") | |
| 2304 | |
| 2305 (defun ange-ftp-guess-host-type (host user) | |
| 2306 "Guess at the the host type of HOST. | |
| 2307 Works by doing a pwd and examining the directory syntax." | |
| 2308 (let ((host-type (ange-ftp-host-type host)) | |
| 2309 (key (concat host "/" user "/~"))) | |
| 2310 (if (eq host-type 'unix) | |
| 2311 ;; Note that ange-ftp-host-type returns unix as the default value. | |
| 2312 (save-match-data | |
| 2313 (let* ((result (ange-ftp-get-pwd host user)) | |
| 2314 (dir (car result)) | |
| 2315 fix-name-func) | |
| 2316 (cond ((null dir) | |
| 2317 (message "Warning! Unable to get home directory") | |
| 2318 (sit-for 1) | |
| 2319 (if (string-match | |
| 2320 "^450 No current working directory defined$" | |
| 2321 (cdr result)) | |
| 30459 | 2322 |
| 28210 | 2323 ;; We'll assume that if pwd bombs with this |
| 2324 ;; error message, then it's CMS. | |
| 2325 (progn | |
| 2326 (ange-ftp-add-cms-host host) | |
| 2327 (setq ange-ftp-host-cache host | |
| 2328 ange-ftp-host-type-cache 'cms)))) | |
| 2329 | |
| 2330 ;; try for VMS | |
| 2331 ((string-match ange-ftp-vms-name-template dir) | |
| 2332 (ange-ftp-add-vms-host host) | |
| 2333 ;; The add-host functions clear the host type cache. | |
| 2334 ;; Therefore, need to set the cache afterwards. | |
| 2335 (setq ange-ftp-host-cache host | |
| 2336 ange-ftp-host-type-cache 'vms)) | |
| 2337 | |
| 2338 ;; try for MTS | |
| 2339 ((string-match ange-ftp-mts-name-template dir) | |
| 2340 (ange-ftp-add-mts-host host) | |
| 2341 (setq ange-ftp-host-cache host | |
| 2342 ange-ftp-host-type-cache 'mts)) | |
| 30459 | 2343 |
| 28210 | 2344 ;; try for CMS |
| 2345 ((string-match ange-ftp-cms-name-template dir) | |
| 2346 (ange-ftp-add-cms-host host) | |
| 2347 (setq ange-ftp-host-cache host | |
| 2348 ange-ftp-host-type-cache 'cms)) | |
| 2349 | |
| 2350 ;; assume UN*X | |
| 2351 (t | |
| 2352 (setq ange-ftp-host-cache host | |
| 2353 ange-ftp-host-type-cache 'unix))) | |
| 2354 | |
| 2355 ;; Now that we have done a pwd, might as well put it in | |
| 2356 ;; the expand-dir hashtable. | |
| 2357 (let ((ange-ftp-this-user user) | |
| 2358 (ange-ftp-this-host host)) | |
| 2359 (setq fix-name-func (cdr (assq ange-ftp-host-type-cache | |
| 2360 ange-ftp-fix-name-func-alist))) | |
| 2361 (if fix-name-func | |
| 2362 (setq dir (funcall fix-name-func dir 'reverse)))) | |
| 2363 (ange-ftp-put-hash-entry key dir | |
| 2364 ange-ftp-expand-dir-hashtable)))) | |
| 2365 | |
| 2366 ;; In the special case of CMS make sure that know the | |
| 2367 ;; expansion of the home minidisk now, because we will | |
| 2368 ;; be doing a lot of cd's. | |
| 2369 (if (and (eq host-type 'cms) | |
| 2370 (not (ange-ftp-hash-entry-exists-p | |
| 2371 key ange-ftp-expand-dir-hashtable))) | |
| 2372 (let ((dir (car (ange-ftp-get-pwd host user)))) | |
| 2373 (if dir | |
| 2374 (ange-ftp-put-hash-entry key (concat "/" dir) | |
| 2375 ange-ftp-expand-dir-hashtable) | |
| 2376 (message "Warning! Unable to get home directory") | |
| 2377 (sit-for 1)))))) | |
| 2378 | |
| 2379 | |
| 2380 ;;;; ------------------------------------------------------------ | |
| 2381 ;;;; Remote file and directory listing support. | |
| 2382 ;;;; ------------------------------------------------------------ | |
| 2383 | |
| 2384 ;; Returns whether HOST's FTP server doesn't like \'ls\' or \'dir\' commands | |
| 2385 ;; to take switch arguments. | |
| 2386 (defun ange-ftp-dumb-unix-host (host) | |
| 2387 (and host ange-ftp-dumb-unix-host-regexp | |
| 2388 (save-match-data | |
| 2389 (string-match ange-ftp-dumb-unix-host-regexp host)))) | |
| 2390 | |
| 2391 (defun ange-ftp-add-dumb-unix-host (host) | |
| 2392 "Interactively adds a given HOST to ange-ftp-dumb-unix-host-regexp." | |
| 2393 (interactive | |
| 2394 (list (read-string "Host: " | |
| 2395 (let ((name (or (buffer-file-name) default-directory))) | |
| 2396 (and name (car (ange-ftp-ftp-name name))))))) | |
| 2397 (if (not (ange-ftp-dumb-unix-host host)) | |
| 2398 (setq ange-ftp-dumb-unix-host-regexp | |
| 2399 (concat "^" (regexp-quote host) "$" | |
| 2400 (and ange-ftp-dumb-unix-host-regexp "\\|") | |
| 2401 ange-ftp-dumb-unix-host-regexp) | |
| 2402 ange-ftp-host-cache nil))) | |
| 2403 | |
| 2404 (defvar ange-ftp-parse-list-func-alist nil | |
| 2405 "Alist saying how to parse directory listings for certain OS types. | |
| 2406 Association list of \( TYPE \. FUNC \) pairs. The FUNC is a routine | |
| 2407 which can parse the output from a DIR listing for a host of type TYPE.") | |
| 2408 | |
| 2409 ;; With no-error nil, this function returns: | |
| 2410 ;; an error if file is not an ange-ftp-name | |
| 30459 | 2411 ;; (This should never happen.) |
| 28210 | 2412 ;; an error if either the listing is unreadable or there is an ftp error. |
| 2413 ;; the listing (a string), if everything works. | |
| 30459 | 2414 ;; |
| 28210 | 2415 ;; With no-error t, it returns: |
| 2416 ;; an error if not an ange-ftp-name | |
| 2417 ;; error if listing is unreadable (most likely caused by a slow connection) | |
| 2418 ;; nil if ftp error (this is because although asking to list a nonexistent | |
| 2419 ;; directory on a remote unix machine usually (except | |
| 2420 ;; maybe for dumb hosts) returns an ls error, but no | |
| 2421 ;; ftp error, if the same is done on a VMS machine, | |
| 2422 ;; an ftp error is returned. Need to trap the error | |
| 2423 ;; so we can go on and try to list the parent.) | |
| 2424 ;; the listing, if everything works. | |
| 2425 | |
| 2426 ;; If WILDCARD is non-nil, then this implements the guts of insert-directory | |
| 2427 ;; in the wildcard case. Then we make a relative directory listing | |
| 2428 ;; of FILE within the directory specified by `default-directory'. | |
| 2429 | |
| 2430 (defvar ange-ftp-before-parse-ls-hook nil | |
| 2431 "Normal hook run before parsing the text of an ftp directory listing.") | |
| 2432 | |
| 2433 (defun ange-ftp-ls (file lsargs parse &optional no-error wildcard) | |
| 2434 "Return the output of an `DIR' or `ls' command done over ftp. | |
| 2435 FILE is the full name of the remote file, LSARGS is any args to pass to the | |
| 2436 `ls' command, and PARSE specifies that the output should be parsed and stored | |
| 2437 away in the internal cache." | |
| 2438 ;; If parse is t, we assume that file is a directory. i.e. we only parse | |
| 2439 ;; full directory listings. | |
| 2440 (let* ((ange-ftp-this-file (ange-ftp-expand-file-name file)) | |
| 2441 (parsed (ange-ftp-ftp-name ange-ftp-this-file))) | |
| 2442 (if parsed | |
| 2443 (let* ((host (nth 0 parsed)) | |
| 2444 (user (nth 1 parsed)) | |
| 2445 (name (ange-ftp-quote-string (nth 2 parsed))) | |
| 2446 (key (directory-file-name ange-ftp-this-file)) | |
| 2447 (host-type (ange-ftp-host-type host user)) | |
| 2448 (dumb (memq host-type ange-ftp-dumb-host-types)) | |
| 2449 result | |
| 2450 temp | |
| 2451 lscmd parse-func) | |
| 2452 (if (string-equal name "") | |
| 2453 (setq name | |
| 2454 (ange-ftp-real-file-name-as-directory | |
| 2455 (ange-ftp-expand-dir host user "~")))) | |
| 2456 (if (and ange-ftp-ls-cache-file | |
| 2457 (string-equal key ange-ftp-ls-cache-file) | |
| 2458 ;; Don't care about lsargs for dumb hosts. | |
| 2459 (or dumb (string-equal lsargs ange-ftp-ls-cache-lsargs))) | |
| 2460 ange-ftp-ls-cache-res | |
| 2461 (setq temp (ange-ftp-make-tmp-name host)) | |
| 2462 (if wildcard | |
| 2463 (progn | |
| 2464 (ange-ftp-cd host user (file-name-directory name)) | |
| 2465 (setq lscmd (list 'dir file temp lsargs))) | |
| 2466 (setq lscmd (list 'dir name temp lsargs))) | |
| 2467 (unwind-protect | |
| 2468 (if (car (setq result (ange-ftp-send-cmd | |
| 2469 host | |
| 2470 user | |
| 2471 lscmd | |
| 2472 (format "Listing %s" | |
| 2473 (ange-ftp-abbreviate-filename | |
| 2474 ange-ftp-this-file))))) | |
| 2475 (save-excursion | |
| 2476 (set-buffer (get-buffer-create | |
| 2477 ange-ftp-data-buffer-name)) | |
| 2478 (erase-buffer) | |
| 2479 (if (ange-ftp-real-file-readable-p temp) | |
| 2480 (ange-ftp-real-insert-file-contents temp) | |
| 2481 (sleep-for ange-ftp-retry-time) | |
| 2482 ;wait for file to possibly appear | |
| 2483 (if (ange-ftp-real-file-readable-p temp) | |
| 2484 ;; Try again. | |
| 2485 (ange-ftp-real-insert-file-contents temp) | |
| 2486 (ange-ftp-error host user | |
| 2487 (format | |
| 2488 "list data file %s not readable" | |
| 2489 temp)))) | |
|
30518
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30481
diff
changeset
|
2490 ;; 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
|
2491 (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
|
2492 (replace-match "")) |
|
ba9bd1bf0ef8
Ange-ftp handles the output of the w32-style clients
Sam Steingold <sds@gnu.org>
parents:
30481
diff
changeset
|
2493 (goto-char 1) |
| 28210 | 2494 (run-hooks 'ange-ftp-before-parse-ls-hook) |
| 2495 (if parse | |
| 2496 (ange-ftp-set-files | |
| 2497 ange-ftp-this-file | |
| 2498 (if (setq | |
| 2499 parse-func | |
| 2500 (cdr (assq host-type | |
| 2501 ange-ftp-parse-list-func-alist))) | |
| 2502 (funcall parse-func) | |
| 2503 (ange-ftp-parse-dired-listing lsargs)))) | |
| 2504 (setq ange-ftp-ls-cache-file key | |
| 2505 ange-ftp-ls-cache-lsargs lsargs | |
| 2506 ; For dumb hosts-types this is | |
| 2507 ; meaningless but harmless. | |
| 2508 ange-ftp-ls-cache-res (buffer-string)) | |
| 2509 ;; (kill-buffer (current-buffer)) | |
| 2510 ange-ftp-ls-cache-res) | |
| 2511 (if no-error | |
| 2512 nil | |
| 2513 (ange-ftp-error host user | |
| 2514 (concat "DIR failed: " (cdr result))))) | |
| 2515 (ange-ftp-del-tmp-name temp)))) | |
| 2516 (error "Should never happen. Please report. Bug ref. no.: 1")))) | |
| 2517 | |
| 2518 ;;;; ------------------------------------------------------------ | |
| 2519 ;;;; Directory information caching support. | |
| 2520 ;;;; ------------------------------------------------------------ | |
| 2521 | |
| 2522 (defconst ange-ftp-date-regexp | |
| 2523 (let* ((l "\\([A-Za-z]\\|[^\0-\177]\\)") | |
| 2524 ;; In some locales, month abbreviations are as short as 2 letters, | |
| 2525 ;; and they can be padded on the right with spaces. | |
| 2526 ;; weiand: changed: month ends with . or , or ., | |
| 2527 ;;old (month (concat l l "+ *")) | |
| 2528 (month (concat l l "+[.]?,? *")) | |
| 30459 | 2529 ;; Recognize any non-ASCII character. |
| 28210 | 2530 ;; The purpose is to match a Kanji character. |
| 2531 (k "[^\0-\177]") | |
| 2532 (s " ") | |
| 2533 (mm "[ 0-1][0-9]") | |
| 2534 ;; weiand: changed: day ends with . | |
| 2535 ;;old (dd "[ 0-3][0-9]") | |
| 2536 (dd "[ 0-3][0-9][.]?") | |
| 2537 (western (concat "\\(" month s dd "\\|" dd s month "\\)")) | |
| 2538 (japanese (concat mm k s dd k))) | |
| 2539 ;; Require the previous column to end in a digit. | |
| 2540 ;; This avoids recognizing `1 may 1997' as a date in the line: | |
| 2541 ;; -r--r--r-- 1 may 1997 1168 Oct 19 16:49 README | |
| 2542 (concat "[0-9]" s "\\(" western "\\|" japanese "\\)" s)) | |
| 2543 "Regular expression to match up to the column before the file name in a | |
| 2544 directory listing. This regular expression is designed to recognize dates | |
| 2545 regardless of the language.") | |
| 2546 | |
| 2547 (defvar ange-ftp-add-file-entry-alist nil | |
| 2548 "Alist saying how to add file entries on certain OS types. | |
| 2549 Association list of pairs \( TYPE \. FUNC \), where FUNC | |
| 2550 is a function to be used to add a file entry for the OS TYPE. The | |
| 2551 main reason for this alist is to deal with file versions in VMS.") | |
| 2552 | |
| 2553 (defvar ange-ftp-delete-file-entry-alist nil | |
| 2554 "Alist saying how to delete files on certain OS types. | |
| 2555 Association list of pairs \( TYPE \. FUNC \), where FUNC | |
| 2556 is a function to be used to delete a file entry for the OS TYPE. | |
| 2557 The main reason for this alist is to deal with file versions in VMS.") | |
| 2558 | |
| 2559 (defun ange-ftp-add-file-entry (name &optional dir-p) | |
| 2560 "Add a file entry for file NAME, if its directory info exists." | |
| 2561 (funcall (or (cdr (assq (ange-ftp-host-type | |
| 2562 (car (ange-ftp-ftp-name name))) | |
| 2563 ange-ftp-add-file-entry-alist)) | |
| 2564 'ange-ftp-internal-add-file-entry) | |
| 2565 name dir-p) | |
| 2566 (setq ange-ftp-ls-cache-file nil)) | |
| 2567 | |
| 2568 (defun ange-ftp-delete-file-entry (name &optional dir-p) | |
| 2569 "Delete the file entry for file NAME, if its directory info exists." | |
| 2570 (funcall (or (cdr (assq (ange-ftp-host-type | |
| 2571 (car (ange-ftp-ftp-name name))) | |
| 2572 ange-ftp-delete-file-entry-alist)) | |
| 2573 'ange-ftp-internal-delete-file-entry) | |
| 2574 name dir-p) | |
| 2575 (setq ange-ftp-ls-cache-file nil)) | |
| 2576 | |
| 2577 (defmacro ange-ftp-parse-filename () | |
| 2578 ;;Extract the filename from the current line of a dired-like listing. | |
| 30459 | 2579 `(let ((eol (progn (end-of-line) (point)))) |
| 2580 (beginning-of-line) | |
| 2581 (if (re-search-forward ange-ftp-date-regexp eol t) | |
| 2582 (progn | |
| 2583 (skip-chars-forward " ") | |
| 2584 (skip-chars-forward "^ " eol) | |
| 2585 (skip-chars-forward " " eol) | |
| 2586 ;; We bomb on filenames starting with a space. | |
| 2587 (buffer-substring (point) eol))))) | |
| 2588 | |
| 28210 | 2589 ;; This deals with the F switch. Should also do something about |
| 2590 ;; unquoting names obtained with the SysV b switch and the GNU Q | |
| 2591 ;; switch. See Sebastian's dired-get-filename. | |
| 2592 | |
| 2593 (defmacro ange-ftp-ls-parser () | |
| 2594 ;; Note that switches is dynamically bound. | |
| 2595 ;; Meant to be called by ange-ftp-parse-dired-listing | |
| 30459 | 2596 `(let ((tbl (ange-ftp-make-hashtable)) |
| 2597 (used-F (and (stringp switches) | |
| 2598 (string-match "F" switches))) | |
| 2599 file-type symlink directory file) | |
| 2600 (while (setq file (ange-ftp-parse-filename)) | |
| 2601 (beginning-of-line) | |
| 2602 (skip-chars-forward "\t 0-9") | |
| 2603 (setq file-type (following-char) | |
| 2604 directory (eq file-type ?d)) | |
| 2605 (if (eq file-type ?l) | |
| 2606 (if (string-match " -> " file) | |
| 2607 (setq symlink (substring file (match-end 0)) | |
| 2608 file (substring file 0 (match-beginning 0))) | |
| 2609 ;; Shouldn't happen | |
| 2610 (setq symlink "")) | |
| 2611 (setq symlink nil)) | |
| 2612 ;; Only do a costly regexp search if the F switch was used. | |
| 2613 (if (and used-F | |
| 2614 (not (string-equal file "")) | |
| 2615 (looking-at | |
| 2616 ".[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)[-r][-w]\\([^ ]\\)")) | |
| 2617 (let ((socket (eq file-type ?s)) | |
| 2618 (executable | |
| 2619 (and (not symlink) ; x bits don't mean a thing for symlinks | |
| 2620 (string-match | |
| 2621 "[xst]" | |
| 2622 (concat (buffer-substring | |
| 2623 (match-beginning 1) (match-end 1)) | |
| 2624 (buffer-substring | |
| 2625 (match-beginning 2) (match-end 2)) | |
| 2626 (buffer-substring | |
| 2627 (match-beginning 3) (match-end 3))))))) | |
| 2628 ;; Some ls's with the F switch mark symlinks with an @ (ULTRIX) | |
| 2629 ;; and others don't. (sigh...) Beware, that some Unix's don't | |
| 2630 ;; seem to believe in the F-switch | |
| 2631 (if (or (and symlink (string-match "@$" file)) | |
| 2632 (and directory (string-match "/$" file)) | |
| 2633 (and executable (string-match "*$" file)) | |
| 2634 (and socket (string-match "=$" file))) | |
| 2635 (setq file (substring file 0 -1))))) | |
| 2636 (ange-ftp-put-hash-entry file (or symlink directory) tbl) | |
| 2637 (forward-line 1)) | |
| 2638 (ange-ftp-put-hash-entry "." t tbl) | |
| 2639 (ange-ftp-put-hash-entry ".." t tbl) | |
| 2640 tbl)) | |
| 28210 | 2641 |
| 2642 ;;; The dl stuff for descriptive listings | |
| 2643 | |
| 2644 (defvar ange-ftp-dl-dir-regexp nil | |
| 2645 "Regexp matching directories which are listed in dl format. | |
| 2646 This regexp should not be anchored with a trailing `$', because it should | |
| 2647 match subdirectories as well.") | |
| 2648 | |
| 2649 (defun ange-ftp-add-dl-dir (dir) | |
| 2650 "Interactively adds a DIR to ange-ftp-dl-dir-regexp." | |
| 2651 (interactive | |
| 2652 (list (read-string "Directory: " | |
| 2653 (let ((name (or (buffer-file-name) default-directory))) | |
| 2654 (and name (ange-ftp-ftp-name name) | |
| 2655 (file-name-directory name)))))) | |
| 2656 (if (not (and ange-ftp-dl-dir-regexp | |
| 2657 (string-match ange-ftp-dl-dir-regexp dir))) | |
| 2658 (setq ange-ftp-dl-dir-regexp | |
| 2659 (concat "^" (regexp-quote dir) | |
| 2660 (and ange-ftp-dl-dir-regexp "\\|") | |
| 2661 ange-ftp-dl-dir-regexp)))) | |
| 2662 | |
| 2663 (defmacro ange-ftp-dl-parser () | |
| 2664 ;; Parse the current buffer, which is assumed to be a descriptive | |
| 2665 ;; listing, and return a hashtable. | |
| 30459 | 2666 `(let ((tbl (ange-ftp-make-hashtable))) |
| 2667 (while (not (eobp)) | |
| 2668 (ange-ftp-put-hash-entry | |
| 2669 (buffer-substring (point) | |
| 2670 (progn | |
| 2671 (skip-chars-forward "^ /\n") | |
| 2672 (point))) | |
| 2673 (eq (following-char) ?/) | |
| 2674 tbl) | |
| 2675 (forward-line 1)) | |
| 2676 (ange-ftp-put-hash-entry "." t tbl) | |
| 2677 (ange-ftp-put-hash-entry ".." t tbl) | |
| 2678 tbl)) | |
| 28210 | 2679 |
| 2680 ;; Parse the current buffer which is assumed to be in a dired-like listing | |
| 2681 ;; format, and return a hashtable as the result. If the listing is not really | |
| 2682 ;; a listing, then return nil. | |
| 2683 | |
| 2684 (defun ange-ftp-parse-dired-listing (&optional switches) | |
| 2685 (save-match-data | |
| 2686 (cond | |
| 2687 ((looking-at "^total [0-9]+$") | |
| 2688 (forward-line 1) | |
| 2689 ;; Some systems put in a blank line here. | |
| 2690 (if (eolp) (forward-line 1)) | |
| 2691 (ange-ftp-ls-parser)) | |
| 2692 ((looking-at "[^\n]+\\( not found\\|: Not a directory\\)\n\\'") | |
| 2693 ;; It's an ls error message. | |
| 2694 nil) | |
| 2695 ((eobp) ; i.e. (zerop (buffer-size)) | |
| 2696 ;; This could be one of: | |
| 2697 ;; (1) An Ultrix ls error message | |
| 2698 ;; (2) A listing with the A switch of an empty directory | |
| 2699 ;; on a machine which doesn't give a total line. | |
| 2700 ;; (3) The twilight zone. | |
| 2701 ;; We'll assume (1) for now. | |
| 2702 nil) | |
| 2703 ((re-search-forward ange-ftp-date-regexp nil t) | |
| 2704 (beginning-of-line) | |
| 2705 (ange-ftp-ls-parser)) | |
| 2706 ((re-search-forward "^[^ \n\t]+ +\\([0-9]+\\|-\\|=\\) " nil t) | |
| 2707 ;; It's a dl listing (I hope). | |
| 2708 ;; file is bound by the call to ange-ftp-ls | |
| 2709 (ange-ftp-add-dl-dir ange-ftp-this-file) | |
| 2710 (beginning-of-line) | |
| 2711 (ange-ftp-dl-parser)) | |
| 2712 (t nil)))) | |
| 2713 | |
| 2714 (defun ange-ftp-set-files (directory files) | |
| 2715 "For a given DIRECTORY, set or change the associated FILES hashtable." | |
| 2716 (and files (ange-ftp-put-hash-entry (file-name-as-directory directory) | |
| 2717 files ange-ftp-files-hashtable))) | |
| 2718 | |
| 2719 (defun ange-ftp-get-files (directory &optional no-error) | |
| 2720 "Given a given DIRECTORY, return a hashtable of file entries. | |
| 2721 This will give an error or return nil, depending on the value of | |
| 2722 NO-ERROR, if a listing for DIRECTORY cannot be obtained." | |
| 2723 (setq directory (file-name-as-directory directory)) ;normalize | |
| 2724 (or (ange-ftp-get-hash-entry directory ange-ftp-files-hashtable) | |
| 2725 (save-match-data | |
| 2726 (and (ange-ftp-ls directory | |
| 2727 ;; This is an efficiency hack. We try to | |
| 2728 ;; anticipate what sort of listing dired | |
| 2729 ;; might want, and cache just such a listing. | |
| 2730 (if (and (boundp 'dired-actual-switches) | |
| 2731 (stringp dired-actual-switches) | |
| 2732 ;; We allow the A switch, which lists | |
| 2733 ;; all files except "." and "..". | |
| 2734 ;; This is OK because we manually | |
| 2735 ;; insert these entries | |
| 2736 ;; in the hash table. | |
| 2737 (string-match | |
| 2738 "[aA]" dired-actual-switches) | |
| 2739 (string-match | |
| 2740 "l" dired-actual-switches) | |
| 2741 (not (string-match | |
| 2742 "R" dired-actual-switches))) | |
| 2743 dired-actual-switches | |
| 2744 (if (and (boundp 'dired-listing-switches) | |
| 2745 (stringp dired-listing-switches) | |
| 2746 (string-match | |
| 2747 "[aA]" dired-listing-switches) | |
| 2748 (string-match | |
| 2749 "l" dired-listing-switches) | |
| 2750 (not (string-match | |
| 2751 "R" dired-listing-switches))) | |
| 2752 dired-listing-switches | |
| 2753 "-al")) | |
| 2754 t no-error) | |
| 2755 (ange-ftp-get-hash-entry | |
| 2756 directory ange-ftp-files-hashtable))))) | |
| 2757 | |
| 2758 ;; Given NAME, return the file part that can be used for looking up the | |
| 2759 ;; file's entry in a hashtable. | |
| 2760 (defmacro ange-ftp-get-file-part (name) | |
| 30459 | 2761 `(let ((file (file-name-nondirectory ,name))) |
| 2762 (if (string-equal file "") | |
| 2763 "." | |
| 2764 file))) | |
| 28210 | 2765 |
| 2766 ;; Return whether ange-ftp-file-entry-p and ange-ftp-get-file-entry are | |
| 2767 ;; allowed to determine if NAME is a sub-directory by listing it directly, | |
| 2768 ;; rather than listing its parent directory. This is used for efficiency so | |
| 2769 ;; that a wasted listing is not done: | |
| 2770 ;; 1. When looking for a .dired file in dired-x.el. | |
| 2771 ;; 2. The syntax of FILE and DIR make it impossible that FILE could be a valid | |
| 2772 ;; subdirectory. This is of course an OS dependent judgement. | |
| 2773 | |
| 2774 (defmacro ange-ftp-allow-child-lookup (dir file) | |
| 30459 | 2775 `(not |
| 2776 (let* ((efile ,file) ; expand once. | |
| 2777 (edir ,dir) | |
| 2778 (parsed (ange-ftp-ftp-name edir)) | |
| 2779 (host-type (ange-ftp-host-type | |
| 2780 (car parsed)))) | |
| 2781 (or | |
| 2782 ;; Deal with dired | |
| 2783 (and (boundp 'dired-local-variables-file) ; in the dired-x package | |
| 2784 (stringp dired-local-variables-file) | |
| 2785 (string-equal dired-local-variables-file efile)) | |
| 2786 ;; No dots in dir names in vms. | |
| 2787 (and (eq host-type 'vms) | |
| 2788 (string-match "\\." efile)) | |
| 2789 ;; No subdirs in mts of cms. | |
| 2790 (and (memq host-type '(mts cms)) | |
| 2791 (not (string-equal "/" (nth 2 parsed)))))))) | |
| 28210 | 2792 |
| 2793 (defun ange-ftp-file-entry-p (name) | |
| 2794 "Given NAME, return whether there is a file entry for it." | |
| 2795 (let* ((name (directory-file-name name)) | |
| 2796 (dir (file-name-directory name)) | |
| 2797 (ent (ange-ftp-get-hash-entry dir ange-ftp-files-hashtable)) | |
| 2798 (file (ange-ftp-get-file-part name))) | |
| 2799 (if ent | |
| 2800 (ange-ftp-hash-entry-exists-p file ent) | |
| 2801 (or (and (ange-ftp-allow-child-lookup dir file) | |
| 2802 (setq ent (ange-ftp-get-files name t)) | |
| 2803 ;; Try a child lookup. i.e. try to list file as a | |
| 2804 ;; subdirectory of dir. This is a good idea because | |
| 2805 ;; we may not have read permission for file's parent. Also, | |
| 2806 ;; people tend to work down directory trees anyway. We use | |
| 2807 ;; no-error ;; because if file does not exist as a subdir., | |
| 2808 ;; then dumb hosts will give an ftp error. Smart unix hosts | |
| 2809 ;; will simply send back the ls | |
| 2810 ;; error message. | |
| 2811 (ange-ftp-get-hash-entry "." ent)) | |
| 2812 ;; Child lookup failed, so try the parent. | |
| 2813 (let ((table (ange-ftp-get-files dir))) | |
| 2814 ;; If the dir doesn't exist, don't use it as a hash table. | |
| 2815 (and table | |
| 2816 (ange-ftp-hash-entry-exists-p file | |
| 2817 table))))))) | |
| 2818 | |
| 2819 (defun ange-ftp-get-file-entry (name) | |
| 2820 "Given NAME, return the given file entry. | |
| 2821 The entry will be either t for a directory, nil for a normal file, | |
| 2822 or a string for a symlink. If the file isn't in the hashtable, | |
| 2823 this also returns nil." | |
| 2824 (let* ((name (directory-file-name name)) | |
| 2825 (dir (file-name-directory name)) | |
| 2826 (ent (ange-ftp-get-hash-entry dir ange-ftp-files-hashtable)) | |
| 2827 (file (ange-ftp-get-file-part name))) | |
| 2828 (if ent | |
| 2829 (ange-ftp-get-hash-entry file ent) | |
| 2830 (or (and (ange-ftp-allow-child-lookup dir file) | |
| 2831 (setq ent (ange-ftp-get-files name t)) | |
| 2832 (ange-ftp-get-hash-entry "." ent)) | |
| 2833 ;; i.e. it's a directory by child lookup | |
| 2834 (ange-ftp-get-hash-entry file | |
| 2835 (ange-ftp-get-files dir)))))) | |
| 2836 | |
| 2837 (defun ange-ftp-internal-delete-file-entry (name &optional dir-p) | |
| 2838 (if dir-p | |
| 30459 | 2839 (progn |
| 28210 | 2840 (setq name (file-name-as-directory name)) |
| 2841 (ange-ftp-del-hash-entry name ange-ftp-files-hashtable) | |
| 2842 (setq name (directory-file-name name)))) | |
| 2843 ;; Note that file-name-as-directory followed by directory-file-name | |
| 2844 ;; serves to canonicalize directory file names to their unix form. | |
| 2845 ;; i.e. in VMS, FOO.DIR -> FOO/ -> FOO | |
| 2846 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) | |
| 2847 ange-ftp-files-hashtable))) | |
| 2848 (if files | |
| 2849 (ange-ftp-del-hash-entry (ange-ftp-get-file-part name) | |
| 2850 files)))) | |
| 2851 | |
| 2852 (defun ange-ftp-internal-add-file-entry (name &optional dir-p) | |
| 2853 (and dir-p | |
| 2854 (setq name (directory-file-name name))) | |
| 2855 (let ((files (ange-ftp-get-hash-entry (file-name-directory name) | |
| 2856 ange-ftp-files-hashtable))) | |
| 2857 (if files | |
| 2858 (ange-ftp-put-hash-entry (ange-ftp-get-file-part name) | |
| 2859 dir-p | |
| 2860 files)))) | |
| 2861 | |
| 2862 (defun ange-ftp-wipe-file-entries (host user) | |
| 2863 "Get rid of entry for HOST, USER pair from file entry information hashtable." | |
| 2864 (let ((new-tbl (ange-ftp-make-hashtable (length ange-ftp-files-hashtable)))) | |
| 2865 (ange-ftp-map-hashtable | |
| 30459 | 2866 (lambda (key val) |
| 2867 (let ((parsed (ange-ftp-ftp-name key))) | |
| 2868 (if parsed | |
| 2869 (let ((h (nth 0 parsed)) | |
| 2870 (u (nth 1 parsed))) | |
| 2871 (or (and (equal host h) (equal user u)) | |
| 2872 (ange-ftp-put-hash-entry key val new-tbl)))))) | |
| 28210 | 2873 ange-ftp-files-hashtable) |
| 2874 (setq ange-ftp-files-hashtable new-tbl))) | |
| 2875 | |
| 2876 ;;;; ------------------------------------------------------------ | |
| 2877 ;;;; File transfer mode support. | |
| 2878 ;;;; ------------------------------------------------------------ | |
| 2879 | |
| 2880 (defun ange-ftp-set-binary-mode (host user) | |
| 2881 "Tell the ftp process for the given HOST & USER to switch to binary mode." | |
| 2882 (let ((result (ange-ftp-send-cmd host user '(type "binary")))) | |
| 2883 (if (not (car result)) | |
| 2884 (ange-ftp-error host user (concat "BINARY failed: " (cdr result))) | |
| 2885 (save-excursion | |
| 2886 (set-buffer (process-buffer (ange-ftp-get-process host user))) | |
| 2887 (and ange-ftp-binary-hash-mark-size | |
| 2888 (setq ange-ftp-hash-mark-unit | |
| 2889 (ash ange-ftp-binary-hash-mark-size -4))))))) | |
| 2890 | |
| 2891 (defun ange-ftp-set-ascii-mode (host user) | |
| 2892 "Tell the ftp process for the given HOST & USER to switch to ascii mode." | |
| 2893 (let ((result (ange-ftp-send-cmd host user '(type "ascii")))) | |
| 2894 (if (not (car result)) | |
| 2895 (ange-ftp-error host user (concat "ASCII failed: " (cdr result))) | |
| 2896 (save-excursion | |
| 2897 (set-buffer (process-buffer (ange-ftp-get-process host user))) | |
| 2898 (and ange-ftp-ascii-hash-mark-size | |
| 2899 (setq ange-ftp-hash-mark-unit | |
| 2900 (ash ange-ftp-ascii-hash-mark-size -4))))))) | |
| 2901 | |
| 2902 (defun ange-ftp-cd (host user dir) | |
| 2903 (let ((result (ange-ftp-send-cmd host user (list 'cd dir) "Doing CD"))) | |
| 2904 (or (car result) | |
| 2905 (ange-ftp-error host user (concat "CD failed: " (cdr result)))))) | |
| 2906 | |
| 2907 (defun ange-ftp-get-pwd (host user) | |
| 2908 "Attempts to get the current working directory for the given HOST/USER pair. | |
| 2909 Returns \( DIR . LINE \) where DIR is either the directory or nil if not found, | |
| 2910 and LINE is the relevant success or fail line from the FTP-client." | |
| 2911 (let* ((result (ange-ftp-send-cmd host user '(pwd) "Getting PWD")) | |
| 2912 (line (cdr result)) | |
| 2913 dir) | |
| 2914 (if (car result) | |
| 2915 (save-match-data | |
| 2916 (and (or (string-match "\"\\([^\"]*\\)\"" line) | |
| 2917 (string-match " \\([^ ]+\\) " line)) ; stone-age VMS servers! | |
| 2918 (setq dir (substring line | |
| 2919 (match-beginning 1) | |
| 2920 (match-end 1)))))) | |
| 2921 (cons dir line))) | |
| 2922 | |
| 2923 ;;; ------------------------------------------------------------ | |
| 2924 ;;; expand-file-name and friends...which currently don't work | |
| 2925 ;;; ------------------------------------------------------------ | |
| 2926 | |
| 2927 (defun ange-ftp-expand-dir (host user dir) | |
| 2928 "Return the result of doing a PWD in the current FTP session. | |
| 2929 Use the connection to machine HOST | |
| 2930 logged in as user USER and cd'd to directory DIR." | |
| 2931 (let* ((host-type (ange-ftp-host-type host user)) | |
| 2932 ;; It is more efficient to call ange-ftp-host-type | |
| 2933 ;; before binding res, because ange-ftp-host-type sometimes | |
| 2934 ;; adds to the info in the expand-dir-hashtable. | |
| 2935 (fix-name-func | |
| 2936 (cdr (assq host-type ange-ftp-fix-name-func-alist))) | |
| 2937 (key (concat host "/" user "/" dir)) | |
| 2938 (res (ange-ftp-get-hash-entry key ange-ftp-expand-dir-hashtable))) | |
| 2939 (or res | |
| 2940 (progn | |
| 2941 (or | |
| 2942 (string-equal user "anonymous") | |
| 2943 (string-equal user "ftp") | |
| 2944 (not (eq host-type 'unix)) | |
| 2945 (let* ((ange-ftp-good-msgs (concat ange-ftp-expand-dir-regexp | |
| 2946 "\\|" | |
| 2947 ange-ftp-good-msgs)) | |
| 2948 (result (ange-ftp-send-cmd host user | |
| 2949 (list 'get dir null-device) | |
| 2950 (format "expanding %s" dir))) | |
| 2951 (line (cdr result))) | |
| 2952 (setq res | |
| 2953 (if (string-match ange-ftp-expand-dir-regexp line) | |
| 30459 | 2954 (substring line |
| 28210 | 2955 (match-beginning 1) |
| 2956 (match-end 1)))))) | |
| 2957 (or res | |
| 2958 (if (string-equal dir "~") | |
| 2959 (setq res (car (ange-ftp-get-pwd host user))) | |
| 2960 (let ((home (ange-ftp-expand-dir host user "~"))) | |
| 2961 (unwind-protect | |
| 2962 (and (ange-ftp-cd host user dir) | |
| 2963 (setq res (car (ange-ftp-get-pwd host user)))) | |
| 2964 (ange-ftp-cd host user home))))) | |
| 2965 (if res | |
| 2966 (let ((ange-ftp-this-user user) | |
| 2967 (ange-ftp-this-host host)) | |
| 2968 (if fix-name-func | |
| 2969 (setq res (funcall fix-name-func res 'reverse))) | |
| 2970 (ange-ftp-put-hash-entry | |
| 2971 key res ange-ftp-expand-dir-hashtable))) | |
| 2972 res)))) | |
| 2973 | |
| 2974 (defun ange-ftp-canonize-filename (n) | |
| 2975 "Take a string and short-circuit //, /. and /.." | |
| 2976 (if (string-match "[^:]+//" n) ;don't upset Apollo users | |
| 2977 (setq n (substring n (1- (match-end 0))))) | |
| 2978 (let ((parsed (ange-ftp-ftp-name n))) | |
| 2979 (if parsed | |
| 2980 (let ((host (car parsed)) | |
| 2981 (user (nth 1 parsed)) | |
| 2982 (name (nth 2 parsed))) | |
| 30459 | 2983 |
| 28210 | 2984 ;; See if remote name is absolute. If so then just expand it and |
| 2985 ;; replace the name component of the overall name. | |
| 2986 (cond ((string-match "^/" name) | |
| 2987 name) | |
| 30459 | 2988 |
| 28210 | 2989 ;; Name starts with ~ or ~user. Resolve that part of the name |
| 2990 ;; making it absolute then re-expand it. | |
| 2991 ((string-match "^~[^/]*" name) | |
| 2992 (let* ((tilda (substring name | |
| 30459 | 2993 (match-beginning 0) |
| 28210 | 2994 (match-end 0))) |
| 2995 (rest (substring name (match-end 0))) | |
| 2996 (dir (ange-ftp-expand-dir host user tilda))) | |
| 2997 (if dir | |
| 2998 (setq name (concat dir rest)) | |
| 30459 | 2999 (error "User \"%s\" is not known" |
| 28210 | 3000 (substring tilda 1))))) |
| 30459 | 3001 |
| 28210 | 3002 ;; relative name. Tack on homedir and re-expand. |
| 3003 (t | |
| 3004 (let ((dir (ange-ftp-expand-dir host user "~"))) | |
| 3005 (if dir | |
| 3006 (setq name (concat | |
| 3007 (ange-ftp-real-file-name-as-directory dir) | |
| 3008 name)) | |
| 3009 (error "Unable to obtain CWD"))))) | |
| 30459 | 3010 |
| 28210 | 3011 ;; If name starts with //, preserve that, for apollo system. |
| 3012 (if (not (string-match "^//" name)) | |
| 3013 (progn | |
| 3014 (if (not (eq system-type 'windows-nt)) | |
| 3015 (setq name (ange-ftp-real-expand-file-name name)) | |
| 3016 ;; Windows UNC default dirs do not make sense for ftp. | |
| 3017 (if (string-match "^//" default-directory) | |
| 3018 (setq name (ange-ftp-real-expand-file-name name "c:/")) | |
| 3019 (setq name (ange-ftp-real-expand-file-name name))) | |
| 3020 ;; Strip off possible drive specifier. | |
| 3021 (if (string-match "^[a-zA-Z]:" name) | |
| 3022 (setq name (substring name 2)))) | |
| 3023 (if (string-match "^//" name) | |
| 3024 (setq name (substring name 1))))) | |
| 30459 | 3025 |
| 28210 | 3026 ;; Now substitute the expanded name back into the overall filename. |
| 3027 (ange-ftp-replace-name-component n name)) | |
| 30459 | 3028 |
| 28210 | 3029 ;; non-ange-ftp name. Just expand normally. |
| 3030 (if (eq (string-to-char n) ?/) | |
| 3031 (ange-ftp-real-expand-file-name n) | |
| 3032 (ange-ftp-real-expand-file-name | |
| 3033 (ange-ftp-real-file-name-nondirectory n) | |
| 3034 (ange-ftp-real-file-name-directory n)))))) | |
| 3035 | |
| 3036 (defun ange-ftp-expand-file-name (name &optional default) | |
| 3037 "Documented as original." | |
| 3038 (save-match-data | |
| 3039 (setq default (or default default-directory)) | |
| 3040 (cond ((eq (string-to-char name) ?~) | |
| 3041 (ange-ftp-real-expand-file-name name)) | |
| 3042 ((eq (string-to-char name) ?/) | |
| 3043 (ange-ftp-canonize-filename name)) | |
| 3044 ((and (eq system-type 'windows-nt) | |
| 3045 (eq (string-to-char name) ?\\)) | |
| 3046 (ange-ftp-canonize-filename name)) | |
| 3047 ((and (eq system-type 'windows-nt) | |
| 3048 (or (string-match "^[a-zA-Z]:" name) | |
| 3049 (string-match "^[a-zA-Z]:" default))) | |
| 3050 (ange-ftp-real-expand-file-name name default)) | |
| 3051 ((zerop (length name)) | |
| 3052 (ange-ftp-canonize-filename default)) | |
| 3053 ((ange-ftp-canonize-filename | |
| 3054 (concat (file-name-as-directory default) name)))))) | |
| 3055 | |
| 3056 ;;; These are problems--they are currently not enabled. | |
| 3057 | |
| 3058 (defvar ange-ftp-file-name-as-directory-alist nil | |
| 3059 "Association list of \( TYPE \. FUNC \) pairs. | |
| 3060 FUNC converts a filename to a directory name for the operating | |
| 3061 system TYPE.") | |
| 3062 | |
| 3063 (defun ange-ftp-file-name-as-directory (name) | |
| 3064 "Documented as original." | |
| 3065 (let ((parsed (ange-ftp-ftp-name name))) | |
| 3066 (if parsed | |
| 3067 (if (string-equal (nth 2 parsed) "") | |
| 3068 name | |
| 3069 (funcall (or (cdr (assq | |
| 3070 (ange-ftp-host-type (car parsed)) | |
| 3071 ange-ftp-file-name-as-directory-alist)) | |
| 3072 'ange-ftp-real-file-name-as-directory) | |
| 3073 name)) | |
| 3074 (ange-ftp-real-file-name-as-directory name)))) | |
| 30459 | 3075 |
| 28210 | 3076 (defun ange-ftp-file-name-directory (name) |
| 3077 "Documented as original." | |
| 3078 (let ((parsed (ange-ftp-ftp-name name))) | |
| 3079 (if parsed | |
| 3080 (let ((filename (nth 2 parsed))) | |
| 3081 (if (save-match-data | |
| 3082 (string-match "^~[^/]*$" filename)) | |
| 3083 name | |
| 3084 (ange-ftp-replace-name-component | |
| 3085 name | |
| 3086 (ange-ftp-real-file-name-directory filename)))) | |
| 3087 (ange-ftp-real-file-name-directory name)))) | |
| 3088 | |
| 3089 (defun ange-ftp-file-name-nondirectory (name) | |
| 3090 "Documented as original." | |
| 3091 (let ((parsed (ange-ftp-ftp-name name))) | |
| 3092 (if parsed | |
| 3093 (let ((filename (nth 2 parsed))) | |
| 3094 (if (save-match-data | |
| 3095 (string-match "^~[^/]*$" filename)) | |
| 3096 "" | |
| 3097 (ange-ftp-real-file-name-nondirectory filename))) | |
| 3098 (ange-ftp-real-file-name-nondirectory name)))) | |
| 3099 | |
| 3100 (defun ange-ftp-directory-file-name (dir) | |
| 3101 "Documented as original." | |
| 3102 (let ((parsed (ange-ftp-ftp-name dir))) | |
| 3103 (if parsed | |
| 3104 (ange-ftp-replace-name-component | |
| 3105 dir | |
| 3106 (ange-ftp-real-directory-file-name (nth 2 parsed))) | |
| 3107 (ange-ftp-real-directory-file-name dir)))) | |
| 3108 | |
| 3109 | |
| 3110 ;;; Hooks that handle Emacs primitives. | |
| 3111 | |
| 3112 ;; Returns non-nil if should transfer FILE in binary mode. | |
| 3113 (defun ange-ftp-binary-file (file) | |
| 3114 (save-match-data | |
| 3115 (string-match ange-ftp-binary-file-name-regexp file))) | |
| 3116 | |
| 3117 (defun ange-ftp-write-region (start end filename &optional append visit) | |
| 3118 (setq filename (expand-file-name filename)) | |
| 3119 (let ((parsed (ange-ftp-ftp-name filename))) | |
| 3120 (if parsed | |
| 3121 (let* ((host (nth 0 parsed)) | |
| 3122 (user (nth 1 parsed)) | |
| 3123 (name (ange-ftp-quote-string (nth 2 parsed))) | |
| 3124 (temp (ange-ftp-make-tmp-name host)) | |
| 3125 ;; What we REALLY need here is a way to determine if the mode | |
| 3126 ;; of the transfer is irrelevant, i.e. we can use binary mode | |
| 3127 ;; regardless. Maybe a system-type to host-type lookup? | |
| 3128 (binary (or (ange-ftp-binary-file filename) | |
| 3129 (memq (ange-ftp-host-type host user) | |
| 3130 '(unix dumb-unix)))) | |
| 3131 (cmd (if append 'append 'put)) | |
| 3132 (abbr (ange-ftp-abbreviate-filename filename)) | |
| 3133 ;; we need to reset `last-coding-system-used' to its | |
| 3134 ;; value immediately after calling the real write-region, | |
| 3135 ;; so that `basic-save-buffer' doesn't see whatever value | |
| 3136 ;; might be used when communicating with the ftp process. | |
| 3137 (coding-system-used last-coding-system-used)) | |
| 3138 (unwind-protect | |
| 3139 (progn | |
| 3140 (let ((executing-kbd-macro t) | |
| 3141 (filename (buffer-file-name)) | |
| 3142 (mod-p (buffer-modified-p))) | |
| 3143 (unwind-protect | |
| 3144 (ange-ftp-real-write-region start end temp nil visit) | |
| 3145 ;; cleanup forms | |
| 3146 (setq buffer-file-name filename) | |
| 3147 (set-buffer-modified-p mod-p))) | |
| 3148 ;; save value used by the real write-region | |
| 3149 (setq coding-system-used last-coding-system-used) | |
| 3150 (if binary | |
| 3151 (ange-ftp-set-binary-mode host user)) | |
| 3152 | |
| 3153 ;; tell the process filter what size the transfer will be. | |
| 3154 (let ((attr (file-attributes temp))) | |
| 3155 (if attr | |
| 3156 (ange-ftp-set-xfer-size host user (nth 7 attr)))) | |
| 3157 | |
| 3158 ;; put or append the file. | |
| 3159 (let ((result (ange-ftp-send-cmd host user | |
| 3160 (list cmd temp name) | |
| 3161 (format "Writing %s" abbr)))) | |
| 3162 (or (car result) | |
| 3163 (signal 'ftp-error | |
| 3164 (list | |
| 3165 "Opening output file" | |
| 3166 (format "FTP Error: \"%s\"" (cdr result)) | |
| 3167 filename))))) | |
| 3168 (ange-ftp-del-tmp-name temp) | |
| 30459 | 3169 (if binary |
| 28210 | 3170 (ange-ftp-set-ascii-mode host user))) |
| 3171 (if (eq visit t) | |
| 3172 (progn | |
| 30459 | 3173 (set-visited-file-modtime (ange-ftp-file-modtime filename)) |
| 28210 | 3174 (ange-ftp-set-buffer-mode) |
| 3175 (setq buffer-file-name filename) | |
| 3176 (set-buffer-modified-p nil))) | |
| 3177 ;; ensure `last-coding-system-used' has an appropriate value | |
| 3178 (setq last-coding-system-used coding-system-used) | |
| 3179 (ange-ftp-message "Wrote %s" abbr) | |
| 3180 (ange-ftp-add-file-entry filename)) | |
| 3181 (ange-ftp-real-write-region start end filename append visit)))) | |
| 3182 | |
| 3183 (defun ange-ftp-insert-file-contents (filename &optional visit beg end replace) | |
| 3184 (barf-if-buffer-read-only) | |
| 3185 (setq filename (expand-file-name filename)) | |
| 3186 (let ((parsed (ange-ftp-ftp-name filename))) | |
| 3187 (if parsed | |
| 3188 (progn | |
| 3189 (if visit | |
| 3190 (setq buffer-file-name filename)) | |
| 3191 (if (or (file-exists-p filename) | |
| 3192 (progn | |
| 3193 (setq ange-ftp-ls-cache-file nil) | |
| 3194 (ange-ftp-del-hash-entry (file-name-directory filename) | |
| 3195 ange-ftp-files-hashtable) | |
| 3196 (file-exists-p filename))) | |
| 3197 (let* ((host (nth 0 parsed)) | |
| 3198 (user (nth 1 parsed)) | |
| 3199 (name (ange-ftp-quote-string (nth 2 parsed))) | |
| 3200 (temp (ange-ftp-make-tmp-name host)) | |
| 3201 (binary (or (ange-ftp-binary-file filename) | |
| 3202 (memq (ange-ftp-host-type host user) | |
| 3203 '(unix dumb-unix)))) | |
| 3204 (abbr (ange-ftp-abbreviate-filename filename)) | |
| 3205 (coding-system-used last-coding-system-used) | |
| 3206 size) | |
| 3207 (unwind-protect | |
| 3208 (progn | |
| 3209 (if binary | |
| 3210 (ange-ftp-set-binary-mode host user)) | |
| 3211 (let ((result (ange-ftp-send-cmd host user | |
| 3212 (list 'get name temp) | |
| 3213 (format "Retrieving %s" abbr)))) | |
| 3214 (or (car result) | |
| 3215 (signal 'ftp-error | |
| 3216 (list | |
| 3217 "Opening input file" | |
| 3218 (format "FTP Error: \"%s\"" (cdr result)) | |
| 3219 filename)))) | |
| 3220 (if (or (ange-ftp-real-file-readable-p temp) | |
| 3221 (sleep-for ange-ftp-retry-time) | |
| 3222 ;; Wait for file to hopefully appear. | |
| 3223 (ange-ftp-real-file-readable-p temp)) | |
| 3224 (setq | |
| 3225 size | |
| 3226 (nth 1 (ange-ftp-real-insert-file-contents | |
| 3227 temp visit beg end replace)) | |
| 3228 coding-system-used last-coding-system-used | |
| 3229 ;; override autodetection of buffer file type | |
| 3230 ;; to ensure buffer is saved in DOS format | |
| 3231 buffer-file-type binary) | |
| 3232 (signal 'ftp-error | |
| 3233 (list | |
| 3234 "Opening input file:" | |
| 3235 (format | |
| 3236 "FTP Error: %s not arrived or readable" | |
| 3237 filename))))) | |
| 3238 (if binary | |
| 3239 ;; We must keep `last-coding-system-used' | |
| 3240 ;; unchanged. | |
| 3241 (let (last-coding-system-used) | |
| 3242 (ange-ftp-set-ascii-mode host user))) | |
| 3243 (ange-ftp-del-tmp-name temp)) | |
| 3244 (if visit | |
| 3245 (progn | |
| 30459 | 3246 (set-visited-file-modtime |
| 3247 (ange-ftp-file-modtime filename)) | |
| 28210 | 3248 (setq buffer-file-name filename))) |
| 3249 (setq last-coding-system-used coding-system-used) | |
| 3250 (list filename size)) | |
| 3251 (signal 'file-error | |
| 30459 | 3252 (list |
| 28210 | 3253 "Opening input file" |
| 3254 filename)))) | |
| 3255 (ange-ftp-real-insert-file-contents filename visit beg end replace)))) | |
| 30459 | 3256 |
| 28210 | 3257 (defun ange-ftp-expand-symlink (file dir) |
| 3258 (if (file-name-absolute-p file) | |
| 3259 (ange-ftp-replace-name-component dir file) | |
| 3260 (expand-file-name file dir))) | |
| 3261 | |
| 3262 (defun ange-ftp-file-symlink-p (file) | |
| 3263 ;; call ange-ftp-expand-file-name rather than the normal | |
| 3264 ;; expand-file-name to stop loops when using a package that | |
| 3265 ;; redefines both file-symlink-p and expand-file-name. | |
| 3266 (setq file (ange-ftp-expand-file-name file)) | |
| 3267 (if (ange-ftp-ftp-name file) | |
| 3268 (let ((file-ent | |
| 3269 (ange-ftp-get-hash-entry | |
| 3270 (ange-ftp-get-file-part file) | |
| 3271 (ange-ftp-get-files (file-name-directory file))))) | |
| 3272 (if (stringp file-ent) | |
| 3273 (if (file-name-absolute-p file-ent) | |
| 3274 (ange-ftp-replace-name-component | |
| 3275 (file-name-directory file) file-ent) | |
| 3276 file-ent))) | |
| 3277 (ange-ftp-real-file-symlink-p file))) | |
| 3278 | |
| 3279 (defun ange-ftp-file-exists-p (name) | |
| 3280 (setq name (expand-file-name name)) | |
| 3281 (if (ange-ftp-ftp-name name) | |
| 3282 (if (ange-ftp-file-entry-p name) | |
| 3283 (let ((file-ent (ange-ftp-get-file-entry name))) | |
| 3284 (if (stringp file-ent) | |
| 3285 (file-exists-p | |
| 3286 (ange-ftp-expand-symlink file-ent | |
| 3287 (file-name-directory | |
| 3288 (directory-file-name name)))) | |
| 3289 t))) | |
| 3290 (ange-ftp-real-file-exists-p name))) | |
| 3291 | |
| 3292 (defun ange-ftp-file-directory-p (name) | |
| 3293 (setq name (expand-file-name name)) | |
| 3294 (if (ange-ftp-ftp-name name) | |
| 3295 ;; We do a file-name-as-directory on name here because some | |
| 3296 ;; machines (VMS) use a .DIR to indicate the filename associated | |
| 3297 ;; with a directory. This needs to be canonicalized. | |
| 3298 (let ((file-ent (ange-ftp-get-file-entry | |
| 3299 (ange-ftp-file-name-as-directory name)))) | |
| 3300 (if (stringp file-ent) | |
| 3301 (file-directory-p | |
| 3302 (ange-ftp-expand-symlink file-ent | |
| 3303 (file-name-directory | |
| 3304 (directory-file-name name)))) | |
| 3305 file-ent)) | |
| 3306 (ange-ftp-real-file-directory-p name))) | |
| 3307 | |
| 3308 (defun ange-ftp-directory-files (directory &optional full match | |
| 3309 &rest v19-args) | |
| 3310 (setq directory (expand-file-name directory)) | |
| 3311 (if (ange-ftp-ftp-name directory) | |
| 3312 (progn | |
| 3313 (ange-ftp-barf-if-not-directory directory) | |
| 3314 (let ((tail (ange-ftp-hash-table-keys | |
| 3315 (ange-ftp-get-files directory))) | |
| 3316 files f) | |
| 3317 (setq directory (file-name-as-directory directory)) | |
| 3318 (save-match-data | |
| 3319 (while tail | |
| 3320 (setq f (car tail) | |
| 3321 tail (cdr tail)) | |
| 3322 (if (or (not match) (string-match match f)) | |
| 3323 (setq files | |
| 3324 (cons (if full (concat directory f) f) files))))) | |
| 3325 (nreverse files))) | |
| 3326 (apply 'ange-ftp-real-directory-files directory full match v19-args))) | |
| 3327 | |
| 3328 (defun ange-ftp-file-attributes (file) | |
| 3329 (setq file (expand-file-name file)) | |
| 3330 (let ((parsed (ange-ftp-ftp-name file))) | |
| 3331 (if parsed | |
| 3332 (let ((part (ange-ftp-get-file-part file)) | |
| 3333 (files (ange-ftp-get-files (file-name-directory file)))) | |
| 3334 (if (ange-ftp-hash-entry-exists-p part files) | |
| 3335 (let ((host (nth 0 parsed)) | |
| 3336 (user (nth 1 parsed)) | |
| 3337 (name (nth 2 parsed)) | |
| 3338 (dirp (ange-ftp-get-hash-entry part files)) | |
| 3339 (inode (ange-ftp-get-hash-entry | |
| 3340 file ange-ftp-inodes-hashtable))) | |
| 3341 (unless inode | |
| 3342 (setq inode ange-ftp-next-inode-number | |
| 3343 ange-ftp-next-inode-number (1+ inode)) | |
| 3344 (ange-ftp-put-hash-entry file inode ange-ftp-inodes-hashtable)) | |
| 3345 (list (if (and (stringp dirp) (file-name-absolute-p dirp)) | |
| 3346 (ange-ftp-expand-symlink dirp | |
| 3347 (file-name-directory file)) | |
| 3348 dirp) ;0 file type | |
| 3349 -1 ;1 link count | |
| 3350 -1 ;2 uid | |
| 3351 -1 ;3 gid | |
| 3352 '(0 0) ;4 atime | |
| 30459 | 3353 (ange-ftp-file-modtime file) ;5 mtime |
| 28210 | 3354 '(0 0) ;6 ctime |
| 3355 -1 ;7 size | |
| 3356 (concat (if (stringp dirp) "l" (if dirp "d" "-")) | |
| 3357 "?????????") ;8 mode | |
| 3358 nil ;9 gid weird | |
| 3359 inode ;10 "inode number". | |
| 3360 -1 ;11 device number [v19 only] | |
| 3361 )))) | |
| 3362 (ange-ftp-real-file-attributes file)))) | |
| 3363 | |
| 30481 | 3364 (defun ange-ftp-file-newer-than-file-p (f1 f2) |
| 3365 (let ((f1-parsed (ange-ftp-ftp-name f1)) | |
| 3366 (f2-parsed (ange-ftp-ftp-name f2))) | |
| 3367 (if (or f1-parsed f2-parsed) | |
| 3368 (let ((f1-mt (nth 5 (file-attributes f1))) | |
| 3369 (f2-mt (nth 5 (file-attributes f2)))) | |
| 3370 (cond ((null f1-mt) nil) | |
| 3371 ((null f2-mt) t) | |
| 3372 (t (> (float-time f1-mt) (float-time f2-mt))))) | |
| 3373 (ange-ftp-real-file-newer-than-file-p f1 f2)))) | |
| 3374 | |
| 28210 | 3375 (defun ange-ftp-file-writable-p (file) |
| 33533 | 3376 (let ((ange-ftp-process-verbose nil)) |
| 3377 (setq file (expand-file-name file)) | |
| 3378 (if (ange-ftp-ftp-name file) | |
| 3379 (or (file-exists-p file) ;guess here for speed | |
| 3380 (file-directory-p (file-name-directory file))) | |
| 3381 (ange-ftp-real-file-writable-p file)))) | |
| 28210 | 3382 |
| 3383 (defun ange-ftp-file-readable-p (file) | |
| 33533 | 3384 (let ((ange-ftp-process-verbose nil)) |
| 3385 (setq file (expand-file-name file)) | |
| 3386 (if (ange-ftp-ftp-name file) | |
| 3387 (file-exists-p file) | |
| 3388 (ange-ftp-real-file-readable-p file)))) | |
| 28210 | 3389 |
| 3390 (defun ange-ftp-file-executable-p (file) | |
| 33533 | 3391 (let ((ange-ftp-process-verbose nil)) |
| 3392 (setq file (expand-file-name file)) | |
| 3393 (if (ange-ftp-ftp-name file) | |
| 3394 (file-exists-p file) | |
| 3395 (ange-ftp-real-file-executable-p file)))) | |
| 28210 | 3396 |
| 3397 (defun ange-ftp-delete-file (file) | |
| 3398 (interactive "fDelete file: ") | |
| 3399 (setq file (expand-file-name file)) | |
| 3400 (let ((parsed (ange-ftp-ftp-name file))) | |
| 3401 (if parsed | |
| 3402 (let* ((host (nth 0 parsed)) | |
| 3403 (user (nth 1 parsed)) | |
| 3404 (name (ange-ftp-quote-string (nth 2 parsed))) | |
| 3405 (abbr (ange-ftp-abbreviate-filename file)) | |
| 3406 (result (ange-ftp-send-cmd host user | |
| 3407 (list 'delete name) | |
| 3408 (format "Deleting %s" abbr)))) | |
| 3409 (or (car result) | |
| 3410 (signal 'ftp-error | |
| 3411 (list | |
| 3412 "Removing old name" | |
| 3413 (format "FTP Error: \"%s\"" (cdr result)) | |
| 3414 file))) | |
| 3415 (ange-ftp-delete-file-entry file)) | |
| 3416 (ange-ftp-real-delete-file file)))) | |
| 3417 | |
| 30459 | 3418 (defun ange-ftp-file-modtime (file) |
| 3419 (let* ((parsed (ange-ftp-ftp-name file)) | |
| 3420 (res (ange-ftp-send-cmd (car parsed) (cadr parsed) | |
|
33539
ac44722a4f19
(ange-ftp-file-modtime): Don't use `caddr'.
Miles Bader <miles@gnu.org>
parents:
33533
diff
changeset
|
3421 (list 'quote "mdtm" (cadr (cdr parsed)))))) |
| 30459 | 3422 (if (= ?5 (aref (cdr res) 0)) '(0 0) |
| 3423 (encode-time ; MDTM returns "YYYYMMDDHHMMSS" GMT | |
| 3424 (string-to-number (substring (cdr res) 16 18)) | |
| 3425 (string-to-number (substring (cdr res) 14 16)) | |
| 3426 (string-to-number (substring (cdr res) 12 14)) | |
| 3427 (string-to-number (substring (cdr res) 10 12)) | |
| 3428 (string-to-number (substring (cdr res) 8 10)) | |
| 3429 (string-to-number (substring (cdr res) 4 8)) | |
| 3430 0)))) | |
| 3431 | |
| 28210 | 3432 (defun ange-ftp-verify-visited-file-modtime (buf) |
| 3433 (let ((name (buffer-file-name buf))) | |
| 3434 (if (and (stringp name) (ange-ftp-ftp-name name)) | |
| 30459 | 3435 (let ((file-mdtm (ange-ftp-file-modtime name)) |
| 3436 (buf-mdtm (with-current-buffer buf (visited-file-modtime)))) | |
| 3437 (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
|
3438 (<= (float-time file-mdtm) (float-time buf-mdtm)))) |
| 28210 | 3439 (ange-ftp-real-verify-visited-file-modtime buf)))) |
| 3440 | |
| 3441 ;;;; ------------------------------------------------------------ | |
| 3442 ;;;; File copying support... totally re-written 6/24/92. | |
| 3443 ;;;; ------------------------------------------------------------ | |
| 3444 | |
| 3445 (defun ange-ftp-barf-or-query-if-file-exists (absname querystring interactive) | |
| 3446 (if (file-exists-p absname) | |
| 3447 (if (not interactive) | |
| 3448 (signal 'file-already-exists (list absname)) | |
| 3449 (if (not (yes-or-no-p (format "File %s already exists; %s anyway? " | |
| 3450 absname querystring))) | |
| 3451 (signal 'file-already-exists (list absname)))))) | |
| 3452 | |
| 3453 ;; async local copy commented out for now since I don't seem to get | |
| 3454 ;; the process sentinel called for some processes. | |
| 3455 ;; | |
| 3456 ;; (defun ange-ftp-copy-file-locally (filename newname ok-if-already-exists | |
| 3457 ;; keep-date cont) | |
| 3458 ;; "Kludge to copy a local file and call a continuation when the copy | |
| 3459 ;; finishes." | |
| 3460 ;; ;; check to see if we can overwrite | |
| 3461 ;; (if (or (not ok-if-already-exists) | |
| 3462 ;; (numberp ok-if-already-exists)) | |
| 30459 | 3463 ;; (ange-ftp-barf-or-query-if-file-exists newname "copy to it" |
| 28210 | 3464 ;; (numberp ok-if-already-exists))) |
| 3465 ;; (let ((proc (start-process " *copy*" | |
| 3466 ;; (generate-new-buffer "*copy*") | |
| 3467 ;; "cp" | |
| 3468 ;; filename | |
| 3469 ;; newname)) | |
| 3470 ;; res) | |
| 3471 ;; (set-process-sentinel proc (function ange-ftp-copy-file-locally-sentinel)) | |
| 3472 ;; (process-kill-without-query proc) | |
| 3473 ;; (save-excursion | |
| 3474 ;; (set-buffer (process-buffer proc)) | |
| 3475 ;; (make-variable-buffer-local 'copy-cont) | |
| 3476 ;; (setq copy-cont cont)))) | |
| 30459 | 3477 ;; |
| 28210 | 3478 ;; (defun ange-ftp-copy-file-locally-sentinel (proc status) |
| 3479 ;; (save-excursion | |
| 3480 ;; (set-buffer (process-buffer proc)) | |
| 3481 ;; (let ((cont copy-cont) | |
| 3482 ;; (result (buffer-string))) | |
| 3483 ;; (unwind-protect | |
| 3484 ;; (if (and (string-equal status "finished\n") | |
| 3485 ;; (zerop (length result))) | |
| 3486 ;; (ange-ftp-call-cont cont t nil) | |
| 3487 ;; (ange-ftp-call-cont cont | |
| 3488 ;; nil | |
| 3489 ;; (if (zerop (length result)) | |
| 3490 ;; (substring status 0 -1) | |
| 3491 ;; (substring result 0 -1)))) | |
| 3492 ;; (kill-buffer (current-buffer)))))) | |
| 3493 | |
| 3494 ;; this is the extended version of ange-ftp-copy-file-internal that works | |
| 3495 ;; asynchronously if asked nicely. | |
| 3496 (defun ange-ftp-copy-file-internal (filename newname ok-if-already-exists | |
| 3497 keep-date &optional msg cont nowait) | |
| 3498 (setq filename (expand-file-name filename) | |
| 3499 newname (expand-file-name newname)) | |
| 3500 | |
| 3501 ;; canonicalize newname if a directory. | |
| 3502 (if (file-directory-p newname) | |
| 3503 (setq newname (expand-file-name (file-name-nondirectory filename) newname))) | |
| 3504 | |
| 3505 (let ((f-parsed (ange-ftp-ftp-name filename)) | |
| 3506 (t-parsed (ange-ftp-ftp-name newname))) | |
| 3507 | |
| 3508 ;; local file to local file copy? | |
| 3509 (if (and (not f-parsed) (not t-parsed)) | |
| 3510 (progn | |
| 3511 (ange-ftp-real-copy-file filename newname ok-if-already-exists | |
| 3512 keep-date) | |
| 3513 (if cont | |
| 3514 (ange-ftp-call-cont cont t "Copied locally"))) | |
| 3515 ;; one or both files are remote. | |
| 3516 (let* ((f-host (and f-parsed (nth 0 f-parsed))) | |
| 3517 (f-user (and f-parsed (nth 1 f-parsed))) | |
| 3518 (f-name (and f-parsed (ange-ftp-quote-string (nth 2 f-parsed)))) | |
| 3519 (f-abbr (ange-ftp-abbreviate-filename filename)) | |
| 3520 (t-host (and t-parsed (nth 0 t-parsed))) | |
| 3521 (t-user (and t-parsed (nth 1 t-parsed))) | |
| 3522 (t-name (and t-parsed (ange-ftp-quote-string (nth 2 t-parsed)))) | |
| 3523 (t-abbr (ange-ftp-abbreviate-filename newname filename)) | |
| 3524 (binary (or (ange-ftp-binary-file filename) | |
| 3525 (ange-ftp-binary-file newname) | |
| 3526 (and (memq (ange-ftp-host-type f-host f-user) | |
| 3527 '(unix dumb-unix)) | |
| 3528 (memq (ange-ftp-host-type t-host t-user) | |
| 3529 '(unix dumb-unix))))) | |
| 3530 temp1 | |
| 3531 temp2) | |
| 3532 | |
| 3533 ;; check to see if we can overwrite | |
| 3534 (if (or (not ok-if-already-exists) | |
| 3535 (numberp ok-if-already-exists)) | |
| 30459 | 3536 (ange-ftp-barf-or-query-if-file-exists newname "copy to it" |
| 28210 | 3537 (numberp ok-if-already-exists))) |
| 3538 | |
| 3539 ;; do the copying. | |
| 3540 (if f-parsed | |
| 30459 | 3541 |
| 28210 | 3542 ;; filename was remote. |
| 3543 (progn | |
| 3544 (if (or (ange-ftp-use-gateway-p f-host) | |
| 3545 t-parsed) | |
| 3546 ;; have to use intermediate file if we are getting via | |
| 3547 ;; gateway machine or we are doing a remote to remote copy. | |
| 3548 (setq temp1 (ange-ftp-make-tmp-name f-host))) | |
| 30459 | 3549 |
| 28210 | 3550 (if binary |
| 3551 (ange-ftp-set-binary-mode f-host f-user)) | |
| 3552 | |
| 3553 (ange-ftp-send-cmd | |
| 3554 f-host | |
| 3555 f-user | |
| 3556 (list 'get f-name (or temp1 (ange-ftp-quote-string newname))) | |
| 3557 (or msg | |
| 3558 (if (and temp1 t-parsed) | |
| 3559 (format "Getting %s" f-abbr) | |
| 3560 (format "Copying %s to %s" f-abbr t-abbr))) | |
| 3561 (list (function ange-ftp-cf1) | |
| 3562 filename newname binary msg | |
| 3563 f-parsed f-host f-user f-name f-abbr | |
| 3564 t-parsed t-host t-user t-name t-abbr | |
| 3565 temp1 temp2 cont nowait) | |
| 3566 nowait)) | |
| 3567 | |
| 3568 ;; filename wasn't remote. newname must be remote. call the | |
| 3569 ;; function which does the remainder of the copying work. | |
| 3570 (ange-ftp-cf1 t nil | |
| 3571 filename newname binary msg | |
| 3572 f-parsed f-host f-user f-name f-abbr | |
| 3573 t-parsed t-host t-user t-name t-abbr | |
| 3574 nil nil cont nowait)))))) | |
| 3575 | |
| 3576 (defvar ange-ftp-waiting-flag nil) | |
| 3577 | |
| 3578 ;; next part of copying routine. | |
| 3579 (defun ange-ftp-cf1 (result line | |
| 3580 filename newname binary msg | |
| 3581 f-parsed f-host f-user f-name f-abbr | |
| 3582 t-parsed t-host t-user t-name t-abbr | |
| 3583 temp1 temp2 cont nowait) | |
| 3584 (if line | |
| 3585 ;; filename must have been remote, and we must have just done a GET. | |
| 3586 (unwind-protect | |
| 3587 (or result | |
| 3588 ;; GET failed for some reason. Clean up and get out. | |
| 3589 (progn | |
| 3590 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
| 3591 (or cont | |
| 3592 (if ange-ftp-waiting-flag | |
| 3593 (throw 'ftp-error t) | |
| 3594 (signal 'ftp-error | |
| 3595 (list "Opening input file" | |
| 3596 (format "FTP Error: \"%s\"" line) | |
| 3597 filename)))))) | |
| 3598 ;; cleanup | |
| 3599 (if binary | |
| 3600 (ange-ftp-set-ascii-mode f-host f-user)))) | |
| 3601 | |
| 3602 (if result | |
| 3603 ;; We now have to copy either temp1 or filename to newname. | |
| 3604 (if t-parsed | |
| 30459 | 3605 |
| 28210 | 3606 ;; newname was remote. |
| 3607 (progn | |
| 3608 (if (ange-ftp-use-gateway-p t-host) | |
| 3609 (setq temp2 (ange-ftp-make-tmp-name t-host))) | |
| 30459 | 3610 |
| 28210 | 3611 ;; make sure data is moved into the right place for the |
| 3612 ;; outgoing transfer. gateway temporary files complicate | |
| 3613 ;; things nicely. | |
| 3614 (if temp1 | |
| 3615 (if temp2 | |
| 3616 (if (string-equal temp1 temp2) | |
| 3617 (setq temp1 nil) | |
| 3618 (ange-ftp-real-copy-file temp1 temp2 t)) | |
| 3619 (setq temp2 temp1 temp1 nil)) | |
| 3620 (if temp2 | |
| 3621 (ange-ftp-real-copy-file filename temp2 t))) | |
| 30459 | 3622 |
| 28210 | 3623 (if binary |
| 3624 (ange-ftp-set-binary-mode t-host t-user)) | |
| 3625 | |
| 3626 ;; tell the process filter what size the file is. | |
| 3627 (let ((attr (file-attributes (or temp2 filename)))) | |
| 3628 (if attr | |
| 3629 (ange-ftp-set-xfer-size t-host t-user (nth 7 attr)))) | |
| 3630 | |
| 3631 (ange-ftp-send-cmd | |
| 3632 t-host | |
| 3633 t-user | |
| 3634 (list 'put (or temp2 filename) t-name) | |
| 3635 (or msg | |
| 3636 (if (and temp2 f-parsed) | |
| 3637 (format "Putting %s" newname) | |
| 3638 (format "Copying %s to %s" f-abbr t-abbr))) | |
| 3639 (list (function ange-ftp-cf2) | |
| 3640 newname t-host t-user binary temp1 temp2 cont) | |
| 3641 nowait)) | |
| 30459 | 3642 |
| 28210 | 3643 ;; newname wasn't remote. |
| 3644 (ange-ftp-cf2 t nil newname t-host t-user binary temp1 temp2 cont)) | |
| 3645 | |
| 3646 ;; first copy failed, tell caller | |
| 3647 (ange-ftp-call-cont cont result line))) | |
| 3648 | |
| 3649 ;; last part of copying routine. | |
| 3650 (defun ange-ftp-cf2 (result line newname t-host t-user binary temp1 temp2 cont) | |
| 3651 (unwind-protect | |
| 3652 (if line | |
| 3653 ;; result from doing a local to remote copy. | |
| 3654 (unwind-protect | |
| 3655 (progn | |
| 3656 (or result | |
| 3657 (or cont | |
| 3658 (if ange-ftp-waiting-flag | |
| 3659 (throw 'ftp-error t) | |
| 3660 (signal 'ftp-error | |
| 3661 (list "Opening output file" | |
| 3662 (format "FTP Error: \"%s\"" line) | |
| 3663 newname))))) | |
| 30459 | 3664 |
| 28210 | 3665 (ange-ftp-add-file-entry newname)) |
| 30459 | 3666 |
| 28210 | 3667 ;; cleanup. |
| 3668 (if binary | |
| 3669 (ange-ftp-set-ascii-mode t-host t-user))) | |
| 30459 | 3670 |
| 28210 | 3671 ;; newname was local. |
| 3672 (if temp1 | |
| 3673 (ange-ftp-real-copy-file temp1 newname t))) | |
| 30459 | 3674 |
| 28210 | 3675 ;; clean up |
| 3676 (and temp1 (ange-ftp-del-tmp-name temp1)) | |
| 3677 (and temp2 (ange-ftp-del-tmp-name temp2)) | |
| 3678 (ange-ftp-call-cont cont result line))) | |
| 3679 | |
| 3680 (defun ange-ftp-copy-file (filename newname &optional ok-if-already-exists | |
| 3681 keep-date) | |
| 3682 (interactive "fCopy file: \nFCopy %s to file: \np") | |
| 3683 (ange-ftp-copy-file-internal filename | |
| 3684 newname | |
| 3685 ok-if-already-exists | |
| 3686 keep-date | |
| 3687 nil | |
| 3688 nil | |
| 3689 (interactive-p))) | |
| 3690 | |
| 3691 ;;;; ------------------------------------------------------------ | |
| 3692 ;;;; File renaming support. | |
| 3693 ;;;; ------------------------------------------------------------ | |
| 3694 | |
| 3695 (defun ange-ftp-rename-remote-to-remote (filename newname f-parsed t-parsed) | |
| 3696 "Rename remote file FILE to remote file NEWNAME." | |
| 3697 (let ((f-host (nth 0 f-parsed)) | |
| 3698 (f-user (nth 1 f-parsed)) | |
| 3699 (t-host (nth 0 t-parsed)) | |
| 3700 (t-user (nth 1 t-parsed))) | |
| 3701 (if (and (string-equal f-host t-host) | |
| 3702 (string-equal f-user t-user)) | |
| 3703 (let* ((f-name (ange-ftp-quote-string (nth 2 f-parsed))) | |
| 3704 (t-name (ange-ftp-quote-string (nth 2 t-parsed))) | |
| 3705 (cmd (list 'rename f-name t-name)) | |
| 3706 (fabbr (ange-ftp-abbreviate-filename filename)) | |
| 3707 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
| 3708 (result (ange-ftp-send-cmd f-host f-user cmd | |
| 3709 (format "Renaming %s to %s" | |
| 3710 fabbr | |
| 3711 nabbr)))) | |
| 3712 (or (car result) | |
| 3713 (signal 'ftp-error | |
| 3714 (list | |
| 3715 "Renaming" | |
| 3716 (format "FTP Error: \"%s\"" (cdr result)) | |
| 3717 filename | |
| 3718 newname))) | |
| 3719 (ange-ftp-add-file-entry newname) | |
| 3720 (ange-ftp-delete-file-entry filename)) | |
| 3721 (ange-ftp-copy-file-internal filename newname t nil) | |
| 3722 (delete-file filename)))) | |
| 3723 | |
| 3724 (defun ange-ftp-rename-local-to-remote (filename newname) | |
| 3725 "Rename local FILENAME to remote file NEWNAME." | |
| 3726 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) | |
| 3727 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
| 3728 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
| 3729 (ange-ftp-copy-file-internal filename newname t nil msg) | |
| 3730 (let (ange-ftp-process-verbose) | |
| 3731 (delete-file filename)))) | |
| 3732 | |
| 3733 (defun ange-ftp-rename-remote-to-local (filename newname) | |
| 3734 "Rename remote file FILENAME to local file NEWNAME." | |
| 3735 (let* ((fabbr (ange-ftp-abbreviate-filename filename)) | |
| 3736 (nabbr (ange-ftp-abbreviate-filename newname filename)) | |
| 3737 (msg (format "Renaming %s to %s" fabbr nabbr))) | |
| 3738 (ange-ftp-copy-file-internal filename newname t nil msg) | |
| 3739 (let (ange-ftp-process-verbose) | |
| 3740 (delete-file filename)))) | |
| 3741 | |
| 3742 (defun ange-ftp-rename-file (filename newname &optional ok-if-already-exists) | |
| 3743 (interactive "fRename file: \nFRename %s to file: \np") | |
| 3744 (setq filename (expand-file-name filename)) | |
| 3745 (setq newname (expand-file-name newname)) | |
| 3746 (let* ((f-parsed (ange-ftp-ftp-name filename)) | |
| 3747 (t-parsed (ange-ftp-ftp-name newname))) | |
| 3748 (if (and (or f-parsed t-parsed) | |
| 3749 (or (not ok-if-already-exists) | |
| 3750 (numberp ok-if-already-exists))) | |
| 3751 (ange-ftp-barf-or-query-if-file-exists | |
| 3752 newname | |
| 3753 "rename to it" | |
| 3754 (numberp ok-if-already-exists))) | |
| 3755 (if f-parsed | |
| 3756 (if t-parsed | |
| 3757 (ange-ftp-rename-remote-to-remote filename newname f-parsed | |
| 3758 t-parsed) | |
| 3759 (ange-ftp-rename-remote-to-local filename newname)) | |
| 3760 (if t-parsed | |
| 3761 (ange-ftp-rename-local-to-remote filename newname) | |
| 3762 (ange-ftp-real-rename-file filename newname ok-if-already-exists))))) | |
| 3763 | |
| 3764 ;;;; ------------------------------------------------------------ | |
| 3765 ;;;; File name completion support. | |
| 3766 ;;;; ------------------------------------------------------------ | |
| 3767 | |
| 3768 ;; If the file entry SYM is a symlink, returns whether its file exists. | |
| 3769 ;; Note that `ange-ftp-this-dir' is used as a free variable. | |
| 3770 (defun ange-ftp-file-entry-active-p (sym) | |
| 3771 (let ((val (get sym 'val))) | |
| 3772 (or (not (stringp val)) | |
| 3773 (file-exists-p (ange-ftp-expand-symlink val ange-ftp-this-dir))))) | |
| 3774 | |
| 3775 ;; If the file entry is not a directory (nor a symlink pointing to a directory) | |
| 3776 ;; returns whether the file (or file pointed to by the symlink) is ignored | |
| 3777 ;; by completion-ignored-extensions. | |
| 3778 ;; Note that `ange-ftp-this-dir' and `ange-ftp-completion-ignored-pattern' | |
| 3779 ;; are used as free variables. | |
| 3780 (defun ange-ftp-file-entry-not-ignored-p (sym) | |
| 3781 (let ((val (get sym 'val)) | |
| 3782 (symname (symbol-name sym))) | |
| 3783 (if (stringp val) | |
| 3784 (let ((file (ange-ftp-expand-symlink val ange-ftp-this-dir))) | |
| 3785 (or (file-directory-p file) | |
| 3786 (and (file-exists-p file) | |
| 3787 (not (string-match ange-ftp-completion-ignored-pattern | |
| 3788 symname))))) | |
| 3789 (or val ; is a directory name | |
| 3790 (not (string-match ange-ftp-completion-ignored-pattern symname)))))) | |
| 3791 | |
| 3792 (defun ange-ftp-file-name-all-completions (file dir) | |
| 3793 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
| 3794 (if (ange-ftp-ftp-name ange-ftp-this-dir) | |
| 3795 (progn | |
| 3796 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
| 3797 (setq ange-ftp-this-dir | |
| 3798 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) | |
| 3799 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
| 3800 (completions | |
| 3801 (all-completions file tbl | |
| 3802 (function ange-ftp-file-entry-active-p)))) | |
| 3803 | |
| 3804 ;; see whether each matching file is a directory or not... | |
| 3805 (mapcar | |
| 30459 | 3806 (lambda (file) |
| 3807 (let ((ent (ange-ftp-get-hash-entry file tbl))) | |
| 3808 (if (and ent | |
| 3809 (or (not (stringp ent)) | |
| 3810 (file-directory-p | |
| 3811 (ange-ftp-expand-symlink ent | |
| 3812 ange-ftp-this-dir)))) | |
| 3813 (concat file "/") | |
| 3814 file))) | |
| 28210 | 3815 completions))) |
| 3816 | |
| 3817 (if (or (and (eq system-type 'windows-nt) | |
| 3818 (string-match "^[a-zA-Z]:[/\\]$" ange-ftp-this-dir)) | |
| 3819 (string-equal "/" ange-ftp-this-dir)) | |
| 3820 (nconc (all-completions file (ange-ftp-generate-root-prefixes)) | |
| 3821 (ange-ftp-real-file-name-all-completions file | |
| 3822 ange-ftp-this-dir)) | |
| 3823 (ange-ftp-real-file-name-all-completions file ange-ftp-this-dir))))) | |
| 3824 | |
| 3825 (defun ange-ftp-file-name-completion (file dir) | |
| 3826 (let ((ange-ftp-this-dir (expand-file-name dir))) | |
| 3827 (if (ange-ftp-ftp-name ange-ftp-this-dir) | |
| 3828 (progn | |
| 3829 (ange-ftp-barf-if-not-directory ange-ftp-this-dir) | |
| 3830 (if (equal file "") | |
| 3831 "" | |
| 3832 (setq ange-ftp-this-dir | |
| 3833 (ange-ftp-real-file-name-as-directory ange-ftp-this-dir)) ;real? | |
| 3834 (let* ((tbl (ange-ftp-get-files ange-ftp-this-dir)) | |
| 3835 (ange-ftp-completion-ignored-pattern | |
| 30459 | 3836 (mapconcat (lambda (s) (if (stringp s) |
| 3837 (concat (regexp-quote s) "$") | |
| 3838 "/")) ; / never in filename | |
| 28210 | 3839 completion-ignored-extensions |
| 3840 "\\|"))) | |
| 3841 (save-match-data | |
| 3842 (or (ange-ftp-file-name-completion-1 | |
| 3843 file tbl ange-ftp-this-dir | |
| 3844 (function ange-ftp-file-entry-not-ignored-p)) | |
| 3845 (ange-ftp-file-name-completion-1 | |
| 3846 file tbl ange-ftp-this-dir | |
| 3847 (function ange-ftp-file-entry-active-p))))))) | |
| 3848 | |
| 3849 (if (or (and (eq system-type 'windows-nt) | |
| 3850 (string-match "^[a-zA-Z]:[/\\]$" ange-ftp-this-dir)) | |
| 3851 (string-equal "/" ange-ftp-this-dir)) | |
| 3852 (try-completion | |
| 3853 file | |
| 3854 (nconc (ange-ftp-generate-root-prefixes) | |
| 3855 (mapcar 'list | |
| 3856 (ange-ftp-real-file-name-all-completions | |
| 3857 file ange-ftp-this-dir)))) | |
| 3858 (ange-ftp-real-file-name-completion file ange-ftp-this-dir))))) | |
| 3859 | |
| 3860 | |
| 3861 (defun ange-ftp-file-name-completion-1 (file tbl dir predicate) | |
| 3862 (let ((bestmatch (try-completion file tbl predicate))) | |
| 3863 (if bestmatch | |
| 3864 (if (eq bestmatch t) | |
| 3865 (if (file-directory-p (expand-file-name file dir)) | |
| 3866 (concat file "/") | |
| 3867 t) | |
| 3868 (if (and (eq (try-completion bestmatch tbl predicate) t) | |
| 3869 (file-directory-p | |
| 3870 (expand-file-name bestmatch dir))) | |
| 3871 (concat bestmatch "/") | |
| 3872 bestmatch))))) | |
| 3873 | |
| 3874 ;; Put these lines uncommmented in your .emacs if you want C-r to refresh | |
| 3875 ;; ange-ftp's cache whilst doing filename completion. | |
| 3876 ;; | |
| 3877 ;;(define-key minibuffer-local-completion-map "\C-r" 'ange-ftp-re-read-dir) | |
| 3878 ;;(define-key minibuffer-local-must-match-map "\C-r" 'ange-ftp-re-read-dir) | |
| 3879 | |
| 3880 ;; The autoload cookie is to make sure the doc is always available. | |
| 3881 ;;;###autoload (defalias 'ange-ftp-re-read-dir 'ange-ftp-reread-dir) | |
| 3882 ;;;###autoload | |
| 3883 (defun ange-ftp-reread-dir (&optional dir) | |
| 3884 "Reread remote directory DIR to update the directory cache. | |
| 3885 The implementation of remote ftp file names caches directory contents | |
| 3886 for speed. Therefore, when new remote files are created, Emacs | |
| 3887 may not know they exist. You can use this command to reread a specific | |
| 3888 directory, so that Emacs will know its current contents." | |
| 3889 (interactive) | |
| 3890 (if dir | |
| 3891 (setq dir (expand-file-name dir)) | |
| 3892 (setq dir (file-name-directory (expand-file-name (buffer-string))))) | |
| 3893 (if (ange-ftp-ftp-name dir) | |
| 3894 (progn | |
| 3895 (setq ange-ftp-ls-cache-file nil) | |
| 3896 (ange-ftp-del-hash-entry dir ange-ftp-files-hashtable) | |
| 3897 (ange-ftp-get-files dir t)))) | |
| 3898 | |
| 3899 (defun ange-ftp-make-directory (dir &optional parents) | |
| 3900 (interactive (list (expand-file-name (read-file-name "Make directory: ")))) | |
| 3901 (if parents | |
| 3902 (let ((parent (file-name-directory (directory-file-name dir)))) | |
| 3903 (or (file-exists-p parent) | |
| 3904 (ange-ftp-make-directory parent parents)))) | |
| 3905 (if (file-exists-p dir) | |
| 3906 (error "Cannot make directory %s: file already exists" dir) | |
| 3907 (let ((parsed (ange-ftp-ftp-name dir))) | |
| 3908 (if parsed | |
| 3909 (let* ((host (nth 0 parsed)) | |
| 3910 (user (nth 1 parsed)) | |
| 3911 ;; Some ftp's on unix machines (at least on Suns) | |
| 3912 ;; insist that mkdir take a filename, and not a | |
| 3913 ;; directory-name name as an arg. Argh!! This is a bug. | |
| 3914 ;; Non-unix machines will probably always insist | |
| 3915 ;; that mkdir takes a directory-name as an arg | |
| 3916 ;; (as the ftp man page says it should). | |
| 3917 (name (ange-ftp-quote-string | |
| 3918 (if (eq (ange-ftp-host-type host) 'unix) | |
| 3919 (ange-ftp-real-directory-file-name (nth 2 parsed)) | |
| 3920 (ange-ftp-real-file-name-as-directory | |
| 3921 (nth 2 parsed))))) | |
| 3922 (abbr (ange-ftp-abbreviate-filename dir)) | |
| 3923 (result (ange-ftp-send-cmd host user | |
| 3924 (list 'mkdir name) | |
| 3925 (format "Making directory %s" | |
| 3926 abbr)))) | |
| 3927 (or (car result) | |
| 3928 (ange-ftp-error host user | |
| 3929 (format "Could not make directory %s: %s" | |
| 3930 dir | |
| 3931 (cdr result)))) | |
| 3932 (ange-ftp-add-file-entry dir t)) | |
| 3933 (ange-ftp-real-make-directory dir))))) | |
| 3934 | |
| 3935 (defun ange-ftp-delete-directory (dir) | |
| 3936 (if (file-directory-p dir) | |
| 3937 (let ((parsed (ange-ftp-ftp-name dir))) | |
| 3938 (if parsed | |
| 3939 (let* ((host (nth 0 parsed)) | |
| 3940 (user (nth 1 parsed)) | |
| 3941 ;; Some ftp's on unix machines (at least on Suns) | |
| 3942 ;; insist that rmdir take a filename, and not a | |
| 3943 ;; directory-name name as an arg. Argh!! This is a bug. | |
| 3944 ;; Non-unix machines will probably always insist | |
| 3945 ;; that rmdir takes a directory-name as an arg | |
| 3946 ;; (as the ftp man page says it should). | |
| 3947 (name (ange-ftp-quote-string | |
| 3948 (if (eq (ange-ftp-host-type host) 'unix) | |
| 3949 (ange-ftp-real-directory-file-name | |
| 3950 (nth 2 parsed)) | |
| 3951 (ange-ftp-real-file-name-as-directory | |
| 3952 (nth 2 parsed))))) | |
| 3953 (abbr (ange-ftp-abbreviate-filename dir)) | |
| 3954 (result (ange-ftp-send-cmd host user | |
| 3955 (list 'rmdir name) | |
| 3956 (format "Removing directory %s" | |
| 3957 abbr)))) | |
| 3958 (or (car result) | |
| 3959 (ange-ftp-error host user | |
| 3960 (format "Could not remove directory %s: %s" | |
| 3961 dir | |
| 3962 (cdr result)))) | |
| 3963 (ange-ftp-delete-file-entry dir t)) | |
| 3964 (ange-ftp-real-delete-directory dir))) | |
| 3965 (error "Not a directory: %s" dir))) | |
| 3966 | |
| 3967 ;; Make a local copy of FILE and return its name. | |
| 3968 | |
| 3969 (defun ange-ftp-file-local-copy (file) | |
| 3970 (let* ((fn1 (expand-file-name file)) | |
| 3971 (pa1 (ange-ftp-ftp-name fn1))) | |
| 3972 (if pa1 | |
| 3973 (let ((tmp1 (ange-ftp-make-tmp-name (car pa1)))) | |
| 3974 (ange-ftp-copy-file-internal fn1 tmp1 t nil | |
| 3975 (format "Getting %s" fn1)) | |
| 3976 tmp1)))) | |
| 3977 | |
| 3978 (defun ange-ftp-load (file &optional noerror nomessage nosuffix) | |
| 3979 (if (ange-ftp-ftp-name file) | |
| 3980 (let ((tryfiles (if nosuffix | |
| 3981 (list file) | |
| 3982 (list (concat file ".elc") (concat file ".el") file))) | |
| 3983 ;; make sure there are no references to temp files | |
| 3984 (load-force-doc-strings t) | |
| 3985 copy) | |
| 3986 (while (and tryfiles (not copy)) | |
| 3987 (catch 'ftp-error | |
| 3988 (let ((ange-ftp-waiting-flag t)) | |
| 3989 (condition-case error | |
| 3990 (setq copy (ange-ftp-file-local-copy (car tryfiles))) | |
| 3991 (ftp-error nil)))) | |
| 3992 (setq tryfiles (cdr tryfiles))) | |
| 3993 (if copy | |
| 3994 (unwind-protect | |
| 3995 (funcall 'load copy noerror nomessage nosuffix) | |
| 3996 (delete-file copy)) | |
| 3997 (or noerror | |
| 3998 (signal 'file-error (list "Cannot open load file" file))) | |
| 3999 nil)) | |
| 4000 (ange-ftp-real-load file noerror nomessage nosuffix))) | |
| 4001 | |
| 4002 ;; Calculate default-unhandled-directory for a given ange-ftp buffer. | |
| 4003 (defun ange-ftp-unhandled-file-name-directory (filename) | |
| 4004 (file-name-directory ange-ftp-tmp-name-template)) | |
| 4005 | |
| 4006 | |
| 4007 ;; Need the following functions for making filenames of compressed | |
| 4008 ;; files, because some OS's (unlike UNIX) do not allow a filename to | |
| 4009 ;; have two extensions. | |
| 4010 | |
| 4011 (defvar ange-ftp-make-compressed-filename-alist nil | |
| 4012 "Alist of host-type-specific functions to process file names for compression. | |
| 4013 Each element has the form (TYPE . FUNC). | |
| 4014 FUNC should take one argument, a file name, and return a list | |
| 4015 of the form (COMPRESSING NEWNAME). | |
| 30459 | 4016 COMPRESSING should be t if the specified file should be compressed, |
| 28210 | 4017 and nil if it should be uncompressed (that is, if it is a compressed file). |
| 4018 NEWNAME should be the name to give the new compressed or uncompressed file.") | |
| 4019 | |
| 4020 (defun ange-ftp-dired-compress-file (name) | |
| 4021 (let ((parsed (ange-ftp-ftp-name name)) | |
| 4022 conversion-func) | |
| 4023 (if (and parsed | |
| 4024 (setq conversion-func | |
| 4025 (cdr (assq (ange-ftp-host-type (car parsed)) | |
| 4026 ange-ftp-make-compressed-filename-alist)))) | |
| 4027 (let* ((decision | |
| 4028 (save-match-data (funcall conversion-func name))) | |
| 4029 (compressing (car decision)) | |
| 4030 (newfile (nth 1 decision))) | |
| 4031 (if compressing | |
| 4032 (ange-ftp-compress name newfile) | |
| 4033 (ange-ftp-uncompress name newfile))) | |
| 4034 (let (file-name-handler-alist) | |
| 4035 (dired-compress-file name))))) | |
| 4036 | |
| 4037 ;; Copy FILE to this machine, compress it, and copy out to NFILE. | |
| 4038 (defun ange-ftp-compress (file nfile) | |
| 4039 (let* ((parsed (ange-ftp-ftp-name file)) | |
| 4040 (tmp1 (ange-ftp-make-tmp-name (car parsed))) | |
| 4041 (tmp2 (ange-ftp-make-tmp-name (car parsed))) | |
| 4042 (abbr (ange-ftp-abbreviate-filename file)) | |
| 4043 (nabbr (ange-ftp-abbreviate-filename nfile)) | |
| 4044 (msg1 (format "Getting %s" abbr)) | |
| 4045 (msg2 (format "Putting %s" nabbr))) | |
| 4046 (unwind-protect | |
| 4047 (progn | |
| 4048 (ange-ftp-copy-file-internal file tmp1 t nil msg1) | |
| 4049 (and ange-ftp-process-verbose | |
| 4050 (ange-ftp-message "Compressing %s..." abbr)) | |
| 4051 (call-process-region (point) | |
| 4052 (point) | |
| 4053 shell-file-name | |
| 4054 nil | |
| 4055 t | |
| 4056 nil | |
| 4057 "-c" | |
| 4058 (format "compress -f -c < %s > %s" tmp1 tmp2)) | |
| 4059 (and ange-ftp-process-verbose | |
| 4060 (ange-ftp-message "Compressing %s...done" abbr)) | |
| 4061 (if (zerop (buffer-size)) | |
| 4062 (progn | |
| 4063 (let (ange-ftp-process-verbose) | |
| 4064 (delete-file file)) | |
| 4065 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) | |
| 4066 (ange-ftp-del-tmp-name tmp1) | |
| 4067 (ange-ftp-del-tmp-name tmp2)))) | |
| 30459 | 4068 |
| 28210 | 4069 ;; Copy FILE to this machine, uncompress it, and copy out to NFILE. |
| 4070 (defun ange-ftp-uncompress (file nfile) | |
| 4071 (let* ((parsed (ange-ftp-ftp-name file)) | |
| 4072 (tmp1 (ange-ftp-make-tmp-name (car parsed))) | |
| 4073 (tmp2 (ange-ftp-make-tmp-name (car parsed))) | |
| 4074 (abbr (ange-ftp-abbreviate-filename file)) | |
| 4075 (nabbr (ange-ftp-abbreviate-filename nfile)) | |
| 4076 (msg1 (format "Getting %s" abbr)) | |
| 4077 (msg2 (format "Putting %s" nabbr)) | |
| 4078 ;; ;; Cheap hack because of problems with binary file transfers from | |
| 4079 ;; ;; VMS hosts. | |
| 4080 ;; (gbinary (not (eq 'vms (ange-ftp-host-type (car parsed))))) | |
| 4081 ) | |
| 4082 (unwind-protect | |
| 4083 (progn | |
| 4084 (ange-ftp-copy-file-internal file tmp1 t nil msg1) | |
| 4085 (and ange-ftp-process-verbose | |
| 4086 (ange-ftp-message "Uncompressing %s..." abbr)) | |
| 4087 (call-process-region (point) | |
| 4088 (point) | |
| 4089 shell-file-name | |
| 4090 nil | |
| 4091 t | |
| 4092 nil | |
| 4093 "-c" | |
| 4094 (format "uncompress -c < %s > %s" tmp1 tmp2)) | |
| 4095 (and ange-ftp-process-verbose | |
| 4096 (ange-ftp-message "Uncompressing %s...done" abbr)) | |
| 4097 (if (zerop (buffer-size)) | |
| 4098 (progn | |
| 4099 (let (ange-ftp-process-verbose) | |
| 4100 (delete-file file)) | |
| 4101 (ange-ftp-copy-file-internal tmp2 nfile t nil msg2)))) | |
| 4102 (ange-ftp-del-tmp-name tmp1) | |
| 4103 (ange-ftp-del-tmp-name tmp2)))) | |
| 4104 | |
| 4105 (defun ange-ftp-find-backup-file-name (fn) | |
| 4106 ;; Either return the ordinary backup name, etc., | |
| 4107 ;; or return nil meaning don't make a backup. | |
| 4108 (if ange-ftp-make-backup-files | |
| 4109 (ange-ftp-real-find-backup-file-name fn))) | |
| 4110 | |
| 4111 ;;; Define the handler for special file names | |
| 4112 ;;; that causes ange-ftp to be invoked. | |
| 4113 | |
| 4114 ;;;###autoload | |
| 4115 (defun ange-ftp-hook-function (operation &rest args) | |
| 4116 (let ((fn (get operation 'ange-ftp))) | |
| 4117 (if fn (apply fn args) | |
| 4118 (ange-ftp-run-real-handler operation args)))) | |
| 4119 | |
| 4120 | |
| 4121 ;;; This regexp takes care of real ange-ftp file names (with a slash | |
| 4122 ;;; and colon). | |
| 4123 ;;; Don't allow the host name to end in a period--some systems use /.: | |
| 4124 ;;;###autoload | |
| 4125 (or (assoc "^/[^/:]*[^/:.]:" file-name-handler-alist) | |
| 4126 (setq file-name-handler-alist | |
| 4127 (cons '("^/[^/:]*[^/:.]:" . ange-ftp-hook-function) | |
| 4128 file-name-handler-alist))) | |
| 4129 | |
| 4130 ;;; This regexp recognizes absolute filenames with only one component, | |
| 4131 ;;; for the sake of hostname completion. | |
| 4132 ;;;###autoload | |
| 4133 (or (assoc "^/[^/:]*\\'" file-name-handler-alist) | |
| 4134 (setq file-name-handler-alist | |
| 4135 (cons '("^/[^/:]*\\'" . ange-ftp-completion-hook-function) | |
| 4136 file-name-handler-alist))) | |
| 4137 | |
| 4138 ;;; This regexp recognizes absolute filenames with only one component | |
| 4139 ;;; on Windows, for the sake of hostname completion. | |
| 4140 ;;; NB. Do not mark this as autoload, because it is very common to | |
| 4141 ;;; do completions in the root directory of drives on Windows. | |
| 4142 (and (memq system-type '(ms-dos windows-nt)) | |
| 4143 (or (assoc "^[a-zA-Z]:/[^/:]*\\'" file-name-handler-alist) | |
| 4144 (setq file-name-handler-alist | |
| 30459 | 4145 (cons '("^[a-zA-Z]:/[^/:]*\\'" . |
| 28210 | 4146 ange-ftp-completion-hook-function) |
| 4147 file-name-handler-alist)))) | |
| 4148 | |
| 4149 ;;; The above two forms are sufficient to cause this file to be loaded | |
| 4150 ;;; if the user ever uses a file name with a colon in it. | |
| 4151 | |
| 30459 | 4152 ;;; This sets the mode |
| 28210 | 4153 (or (memq 'ange-ftp-set-buffer-mode find-file-hooks) |
| 4154 (setq find-file-hooks | |
| 4155 (cons 'ange-ftp-set-buffer-mode find-file-hooks))) | |
| 4156 | |
| 4157 ;;; Now say where to find the handlers for particular operations. | |
| 4158 | |
| 4159 (put 'file-name-directory 'ange-ftp 'ange-ftp-file-name-directory) | |
| 4160 (put 'file-name-nondirectory 'ange-ftp 'ange-ftp-file-name-nondirectory) | |
| 4161 (put 'file-name-as-directory 'ange-ftp 'ange-ftp-file-name-as-directory) | |
| 4162 (put 'directory-file-name 'ange-ftp 'ange-ftp-directory-file-name) | |
| 4163 (put 'expand-file-name 'ange-ftp 'ange-ftp-expand-file-name) | |
| 4164 (put 'make-directory 'ange-ftp 'ange-ftp-make-directory) | |
| 4165 (put 'delete-directory 'ange-ftp 'ange-ftp-delete-directory) | |
| 4166 (put 'insert-file-contents 'ange-ftp 'ange-ftp-insert-file-contents) | |
| 4167 (put 'directory-files 'ange-ftp 'ange-ftp-directory-files) | |
| 4168 (put 'file-directory-p 'ange-ftp 'ange-ftp-file-directory-p) | |
| 4169 (put 'file-writable-p 'ange-ftp 'ange-ftp-file-writable-p) | |
| 4170 (put 'file-readable-p 'ange-ftp 'ange-ftp-file-readable-p) | |
| 4171 (put 'file-executable-p 'ange-ftp 'ange-ftp-file-executable-p) | |
| 4172 (put 'file-symlink-p 'ange-ftp 'ange-ftp-file-symlink-p) | |
| 4173 (put 'delete-file 'ange-ftp 'ange-ftp-delete-file) | |
| 4174 (put 'read-file-name-internal 'ange-ftp 'ange-ftp-read-file-name-internal) | |
| 4175 (put 'verify-visited-file-modtime 'ange-ftp | |
| 4176 'ange-ftp-verify-visited-file-modtime) | |
| 4177 (put 'file-exists-p 'ange-ftp 'ange-ftp-file-exists-p) | |
| 4178 (put 'write-region 'ange-ftp 'ange-ftp-write-region) | |
| 4179 (put 'backup-buffer 'ange-ftp 'ange-ftp-backup-buffer) | |
| 4180 (put 'copy-file 'ange-ftp 'ange-ftp-copy-file) | |
| 4181 (put 'rename-file 'ange-ftp 'ange-ftp-rename-file) | |
| 4182 (put 'file-attributes 'ange-ftp 'ange-ftp-file-attributes) | |
| 30481 | 4183 (put 'file-newer-than-file-p 'ange-ftp 'ange-ftp-file-newer-than-file-p) |
| 28210 | 4184 (put 'file-name-all-completions 'ange-ftp 'ange-ftp-file-name-all-completions) |
| 4185 (put 'file-name-completion 'ange-ftp 'ange-ftp-file-name-completion) | |
| 4186 (put 'insert-directory 'ange-ftp 'ange-ftp-insert-directory) | |
| 4187 (put 'file-local-copy 'ange-ftp 'ange-ftp-file-local-copy) | |
| 4188 (put 'unhandled-file-name-directory 'ange-ftp | |
| 4189 'ange-ftp-unhandled-file-name-directory) | |
| 4190 (put 'file-name-sans-versions 'ange-ftp 'ange-ftp-file-name-sans-versions) | |
| 4191 (put 'dired-uncache 'ange-ftp 'ange-ftp-dired-uncache) | |
| 4192 (put 'dired-compress-file 'ange-ftp 'ange-ftp-dired-compress-file) | |
| 4193 (put 'load 'ange-ftp 'ange-ftp-load) | |
| 4194 (put 'find-backup-file-name 'ange-ftp 'ange-ftp-find-backup-file-name) | |
| 4195 | |
| 4196 ;; Turn off truename processing to save time. | |
| 4197 ;; Treat each name as its own truename. | |
| 4198 (put 'file-truename 'ange-ftp 'identity) | |
| 4199 | |
| 4200 ;; Turn off RCS/SCCS processing to save time. | |
| 4201 ;; This returns nil for any file name as argument. | |
| 4202 (put 'vc-registered 'ange-ftp 'null) | |
| 4203 | |
| 4204 (put 'dired-call-process 'ange-ftp 'ange-ftp-dired-call-process) | |
| 4205 (put 'shell-command 'ange-ftp 'ange-ftp-shell-command) | |
| 4206 | |
| 4207 ;;; Define ways of getting at unmodified Emacs primitives, | |
| 4208 ;;; turning off our handler. | |
| 4209 | |
| 4210 (defun ange-ftp-run-real-handler (operation args) | |
| 4211 (let ((inhibit-file-name-handlers | |
| 4212 (cons 'ange-ftp-hook-function | |
| 4213 (cons 'ange-ftp-completion-hook-function | |
| 4214 (and (eq inhibit-file-name-operation operation) | |
| 4215 inhibit-file-name-handlers)))) | |
| 4216 (inhibit-file-name-operation operation)) | |
| 4217 (apply operation args))) | |
| 4218 | |
| 4219 (defun ange-ftp-real-file-name-directory (&rest args) | |
| 4220 (ange-ftp-run-real-handler 'file-name-directory args)) | |
| 4221 (defun ange-ftp-real-file-name-nondirectory (&rest args) | |
| 4222 (ange-ftp-run-real-handler 'file-name-nondirectory args)) | |
| 4223 (defun ange-ftp-real-file-name-as-directory (&rest args) | |
| 4224 (ange-ftp-run-real-handler 'file-name-as-directory args)) | |
| 4225 (defun ange-ftp-real-directory-file-name (&rest args) | |
| 4226 (ange-ftp-run-real-handler 'directory-file-name args)) | |
| 4227 (defun ange-ftp-real-expand-file-name (&rest args) | |
| 4228 (ange-ftp-run-real-handler 'expand-file-name args)) | |
| 4229 (defun ange-ftp-real-make-directory (&rest args) | |
| 4230 (ange-ftp-run-real-handler 'make-directory args)) | |
| 4231 (defun ange-ftp-real-delete-directory (&rest args) | |
| 4232 (ange-ftp-run-real-handler 'delete-directory args)) | |
| 4233 (defun ange-ftp-real-insert-file-contents (&rest args) | |
| 4234 (ange-ftp-run-real-handler 'insert-file-contents args)) | |
| 4235 (defun ange-ftp-real-directory-files (&rest args) | |
| 4236 (ange-ftp-run-real-handler 'directory-files args)) | |
| 4237 (defun ange-ftp-real-file-directory-p (&rest args) | |
| 4238 (ange-ftp-run-real-handler 'file-directory-p args)) | |
| 4239 (defun ange-ftp-real-file-writable-p (&rest args) | |
| 4240 (ange-ftp-run-real-handler 'file-writable-p args)) | |
| 4241 (defun ange-ftp-real-file-readable-p (&rest args) | |
| 4242 (ange-ftp-run-real-handler 'file-readable-p args)) | |
| 4243 (defun ange-ftp-real-file-executable-p (&rest args) | |
| 4244 (ange-ftp-run-real-handler 'file-executable-p args)) | |
| 4245 (defun ange-ftp-real-file-symlink-p (&rest args) | |
| 4246 (ange-ftp-run-real-handler 'file-symlink-p args)) | |
| 4247 (defun ange-ftp-real-delete-file (&rest args) | |
| 4248 (ange-ftp-run-real-handler 'delete-file args)) | |
| 4249 (defun ange-ftp-real-read-file-name-internal (&rest args) | |
| 4250 (ange-ftp-run-real-handler 'read-file-name-internal args)) | |
| 4251 (defun ange-ftp-real-verify-visited-file-modtime (&rest args) | |
| 4252 (ange-ftp-run-real-handler 'verify-visited-file-modtime args)) | |
| 4253 (defun ange-ftp-real-file-exists-p (&rest args) | |
| 4254 (ange-ftp-run-real-handler 'file-exists-p args)) | |
| 4255 (defun ange-ftp-real-write-region (&rest args) | |
| 4256 (ange-ftp-run-real-handler 'write-region args)) | |
| 4257 (defun ange-ftp-real-backup-buffer (&rest args) | |
| 4258 (ange-ftp-run-real-handler 'backup-buffer args)) | |
| 4259 (defun ange-ftp-real-copy-file (&rest args) | |
| 4260 (ange-ftp-run-real-handler 'copy-file args)) | |
| 4261 (defun ange-ftp-real-rename-file (&rest args) | |
| 4262 (ange-ftp-run-real-handler 'rename-file args)) | |
| 4263 (defun ange-ftp-real-file-attributes (&rest args) | |
| 4264 (ange-ftp-run-real-handler 'file-attributes args)) | |
| 30481 | 4265 (defun ange-ftp-real-file-newer-than-file-p (&rest args) |
| 4266 (ange-ftp-run-real-handler 'file-newer-than-file-p args)) | |
| 28210 | 4267 (defun ange-ftp-real-file-name-all-completions (&rest args) |
| 4268 (ange-ftp-run-real-handler 'file-name-all-completions args)) | |
| 4269 (defun ange-ftp-real-file-name-completion (&rest args) | |
| 4270 (ange-ftp-run-real-handler 'file-name-completion args)) | |
| 4271 (defun ange-ftp-real-insert-directory (&rest args) | |
| 4272 (ange-ftp-run-real-handler 'insert-directory args)) | |
| 4273 (defun ange-ftp-real-file-name-sans-versions (&rest args) | |
| 4274 (ange-ftp-run-real-handler 'file-name-sans-versions args)) | |
| 4275 (defun ange-ftp-real-shell-command (&rest args) | |
| 4276 (ange-ftp-run-real-handler 'shell-command args)) | |
| 4277 (defun ange-ftp-real-load (&rest args) | |
| 4278 (ange-ftp-run-real-handler 'load args)) | |
| 4279 (defun ange-ftp-real-find-backup-file-name (&rest args) | |
| 4280 (ange-ftp-run-real-handler 'find-backup-file-name args)) | |
| 4281 | |
| 4282 ;; Here we support using dired on remote hosts. | |
| 4283 ;; I have turned off the support for using dired on foreign directory formats. | |
| 4284 ;; That involves too many unclean hooks. | |
| 30459 | 4285 ;; It would be cleaner to support such operations by |
| 28210 | 4286 ;; converting the foreign directory format to something dired can understand; |
| 4287 ;; something close to ls -l output. | |
| 4288 ;; The logical place to do this is in the functions ange-ftp-parse-...-listing. | |
| 4289 | |
| 4290 ;; Some of the old dired hooks would still be needed even if this is done. | |
| 4291 ;; I have preserved (and modernized) those hooks. | |
| 4292 ;; So the format conversion should be all that is needed. | |
| 4293 | |
| 4294 (defun ange-ftp-insert-directory (file switches &optional wildcard full) | |
| 4295 (let ((short (ange-ftp-abbreviate-filename file)) | |
| 4296 (parsed (ange-ftp-ftp-name (expand-file-name file)))) | |
| 4297 (if parsed | |
| 4298 (insert | |
| 4299 (if wildcard | |
| 4300 (let ((default-directory (file-name-directory file))) | |
| 4301 (ange-ftp-ls (file-name-nondirectory file) switches nil nil t)) | |
| 4302 (ange-ftp-ls file switches full))) | |
| 4303 (ange-ftp-real-insert-directory file switches wildcard full)))) | |
| 4304 | |
| 4305 (defun ange-ftp-dired-uncache (dir) | |
| 4306 (if (ange-ftp-ftp-name (expand-file-name dir)) | |
| 4307 (setq ange-ftp-ls-cache-file nil))) | |
| 4308 | |
| 4309 (defvar ange-ftp-sans-version-alist nil | |
| 4310 "Alist of mapping host type into function to remove file version numbers.") | |
| 4311 | |
| 4312 (defun ange-ftp-file-name-sans-versions (file keep-backup-version) | |
| 4313 (let* ((short (ange-ftp-abbreviate-filename file)) | |
| 4314 (parsed (ange-ftp-ftp-name short)) | |
| 4315 host-type func) | |
| 4316 (if parsed | |
| 4317 (setq host-type (ange-ftp-host-type (car parsed)) | |
| 4318 func (cdr (assq (ange-ftp-host-type (car parsed)) | |
| 4319 ange-ftp-sans-version-alist)))) | |
| 4320 (if func (funcall func file keep-backup-version) | |
| 4321 (ange-ftp-real-file-name-sans-versions file keep-backup-version)))) | |
| 4322 | |
| 4323 ;; This is the handler for shell-command. | |
| 4324 (defun ange-ftp-shell-command (command &optional output-buffer error-buffer) | |
| 4325 (let* ((parsed (ange-ftp-ftp-name default-directory)) | |
| 4326 (host (nth 0 parsed)) | |
| 4327 (user (nth 1 parsed)) | |
| 4328 (name (nth 2 parsed))) | |
| 4329 (if (not parsed) | |
| 4330 (ange-ftp-real-shell-command command output-buffer error-buffer) | |
| 4331 (if (> (length name) 0) ; else it's $HOME | |
| 4332 (setq command (concat "cd " name "; " command))) | |
| 4333 (setq command | |
| 4334 (format "%s %s \"%s\"" ; remsh -l USER does not work well | |
| 4335 ; on a hp-ux machine I tried | |
| 4336 remote-shell-program host command)) | |
| 4337 (ange-ftp-message "Remote command '%s' ..." command) | |
| 4338 ;; Cannot call ange-ftp-real-dired-run-shell-command here as it | |
| 4339 ;; would prepend "cd default-directory" --- which bombs because | |
| 4340 ;; default-directory is in ange-ftp syntax for remote file names. | |
| 4341 (ange-ftp-real-shell-command command output-buffer error-buffer)))) | |
| 4342 | |
| 4343 ;;; This is the handler for call-process. | |
| 4344 (defun ange-ftp-dired-call-process (program discard &rest arguments) | |
| 4345 ;; PROGRAM is always one of those below in the cond in dired.el. | |
| 4346 ;; The ARGUMENTS are (nearly) always files. | |
| 4347 (if (ange-ftp-ftp-name default-directory) | |
| 4348 ;; Can't use ange-ftp-dired-host-type here because the current | |
| 4349 ;; buffer is *dired-check-process output* | |
| 4350 (condition-case oops | |
| 4351 (cond ((equal dired-chmod-program program) | |
| 4352 (ange-ftp-call-chmod arguments)) | |
| 4353 ;; ((equal "chgrp" program)) | |
| 4354 ;; ((equal dired-chown-program program)) | |
| 4355 (t (error "Unknown remote command: %s" program))) | |
| 4356 (ftp-error (insert (format "%s: %s, %s\n" | |
| 4357 (nth 1 oops) | |
| 4358 (nth 2 oops) | |
| 4359 (nth 3 oops))) | |
| 4360 ;; Caller expects nonzero value to mean failure. | |
| 4361 1) | |
| 4362 (error (insert (format "%s\n" (nth 1 oops))) | |
| 4363 1)) | |
| 4364 (apply 'call-process program nil (not discard) nil arguments))) | |
| 4365 | |
| 30459 | 4366 (defvar ange-ftp-remote-shell "rsh" |
| 28210 | 4367 "Remote shell to use for chmod, if FTP server rejects the `chmod' command.") |
| 4368 | |
| 4369 ;; Handle an attempt to run chmod on a remote file | |
| 4370 ;; by using the ftp chmod command. | |
| 4371 (defun ange-ftp-call-chmod (args) | |
| 4372 (if (< (length args) 2) | |
| 4373 (error "ange-ftp-call-chmod: missing mode and/or filename: %s" args)) | |
| 4374 (let ((mode (car args)) | |
| 4375 (rest (cdr args))) | |
| 4376 (if (equal "--" (car rest)) | |
| 4377 (setq rest (cdr rest))) | |
| 4378 (mapcar | |
| 30459 | 4379 (lambda (file) |
| 4380 (setq file (expand-file-name file)) | |
| 4381 (let ((parsed (ange-ftp-ftp-name file))) | |
| 4382 (if parsed | |
| 4383 (let* ((host (nth 0 parsed)) | |
| 4384 (user (nth 1 parsed)) | |
| 4385 (name (ange-ftp-quote-string (nth 2 parsed))) | |
| 4386 (abbr (ange-ftp-abbreviate-filename file)) | |
| 4387 (result (ange-ftp-send-cmd host user | |
| 4388 (list 'chmod mode name) | |
| 4389 (format "doing chmod %s" | |
| 4390 abbr)))) | |
| 4391 (or (car result) | |
| 4392 (call-process | |
| 4393 ange-ftp-remote-shell | |
| 4394 nil t nil host dired-chmod-program mode name)))))) | |
| 28210 | 4395 rest)) |
| 4396 (setq ange-ftp-ls-cache-file nil) ;Stop confusing Dired. | |
| 4397 0) | |
| 4398 | |
| 4399 ;;; This is turned off because it has nothing properly to do | |
| 4400 ;;; with dired. It could be reasonable to adapt this to | |
| 4401 ;;; replace ange-ftp-copy-file. | |
| 4402 | |
| 4403 ;;;;; ------------------------------------------------------------ | |
| 4404 ;;;;; Noddy support for async copy-file within dired. | |
| 4405 ;;;;; ------------------------------------------------------------ | |
| 4406 | |
| 4407 ;;(defun ange-ftp-dired-copy-file (from to ok-flag &optional cont nowait) | |
| 4408 ;; "Documented as original." | |
| 4409 ;; (dired-handle-overwrite to) | |
| 4410 ;; (ange-ftp-copy-file-internal from to ok-flag dired-copy-preserve-time nil | |
| 4411 ;; cont nowait)) | |
| 4412 | |
| 4413 ;;(defun ange-ftp-dired-do-create-files (op-symbol file-creator operation arg | |
| 4414 ;; &optional marker-char op1 | |
| 4415 ;; how-to) | |
| 4416 ;; "Documented as original." | |
| 4417 ;; ;; we need to let ange-ftp-dired-create-files know that we indirectly | |
| 4418 ;; ;; called it rather than somebody else. | |
| 4419 ;; (let ((ange-ftp-dired-do-create-files t)) ; tell who caller is | |
| 4420 ;; (ange-ftp-real-dired-do-create-files op-symbol file-creator operation | |
| 4421 ;; arg marker-char op1 how-to))) | |
| 4422 | |
| 4423 ;;(defun ange-ftp-dired-create-files (file-creator operation fn-list name-constructor | |
| 4424 ;; &optional marker-char) | |
| 4425 ;; "Documented as original." | |
| 4426 ;; (if (and (boundp 'ange-ftp-dired-do-create-files) | |
| 4427 ;; ;; called from ange-ftp-dired-do-create-files? | |
| 4428 ;; ange-ftp-dired-do-create-files | |
| 4429 ;; ;; any files worth copying? | |
| 4430 ;; fn-list | |
| 4431 ;; ;; we only support async copy-file at the mo. | |
| 4432 ;; (eq file-creator 'dired-copy-file) | |
| 4433 ;; ;; it is only worth calling the alternative function for remote files | |
| 4434 ;; ;; as we tie ourself in recursive knots otherwise. | |
| 4435 ;; (or (ange-ftp-ftp-name (car fn-list)) | |
| 4436 ;; ;; we can only call the name constructor for dired-do-create-files | |
| 4437 ;; ;; since the one for regexps starts prompting here, there and | |
| 4438 ;; ;; everywhere. | |
| 4439 ;; (ange-ftp-ftp-name (funcall name-constructor (car fn-list))))) | |
| 4440 ;; ;; use the process-filter driven routine rather than the iterative one. | |
| 4441 ;; (ange-ftp-dcf-1 file-creator | |
| 4442 ;; operation | |
| 4443 ;; fn-list | |
| 4444 ;; name-constructor | |
| 4445 ;; (and (boundp 'target) target) ;dynamically bound | |
| 4446 ;; marker-char | |
| 4447 ;; (current-buffer) | |
| 4448 ;; nil ;overwrite-query | |
| 4449 ;; nil ;overwrite-backup-query | |
| 4450 ;; nil ;failures | |
| 4451 ;; nil ;skipped | |
| 4452 ;; 0 ;success-count | |
| 4453 ;; (length fn-list) ;total | |
| 4454 ;; ) | |
| 4455 ;; ;; normal case... use the interactive routine... much cheaper. | |
| 4456 ;; (ange-ftp-real-dired-create-files file-creator operation fn-list | |
| 4457 ;; name-constructor marker-char))) | |
| 4458 | |
| 4459 ;;(defun ange-ftp-dcf-1 (file-creator operation fn-list name-constructor | |
| 30459 | 4460 ;; target marker-char buffer overwrite-query |
| 28210 | 4461 ;; overwrite-backup-query failures skipped |
| 4462 ;; success-count total) | |
| 4463 ;; (let ((old-buf (current-buffer))) | |
| 4464 ;; (unwind-protect | |
| 4465 ;; (progn | |
| 4466 ;; (set-buffer buffer) | |
| 4467 ;; (if (null fn-list) | |
| 4468 ;; (ange-ftp-dcf-3 failures operation total skipped | |
| 4469 ;; success-count buffer) | |
| 30459 | 4470 |
| 28210 | 4471 ;; (let* ((from (car fn-list)) |
| 4472 ;; (to (funcall name-constructor from))) | |
| 4473 ;; (if (equal to from) | |
| 4474 ;; (progn | |
| 4475 ;; (setq to nil) | |
| 4476 ;; (dired-log "Cannot %s to same file: %s\n" | |
| 4477 ;; (downcase operation) from))) | |
| 4478 ;; (if (not to) | |
| 4479 ;; (ange-ftp-dcf-1 file-creator | |
| 4480 ;; operation | |
| 4481 ;; (cdr fn-list) | |
| 4482 ;; name-constructor | |
| 4483 ;; target | |
| 4484 ;; marker-char | |
| 4485 ;; buffer | |
| 4486 ;; overwrite-query | |
| 4487 ;; overwrite-backup-query | |
| 4488 ;; failures | |
| 4489 ;; (cons (dired-make-relative from) skipped) | |
| 4490 ;; success-count | |
| 4491 ;; total) | |
| 4492 ;; (let* ((overwrite (file-exists-p to)) | |
| 4493 ;; (overwrite-confirmed ; for dired-handle-overwrite | |
| 4494 ;; (and overwrite | |
| 4495 ;; (let ((help-form '(format "\ | |
| 4496 ;;Type SPC or `y' to overwrite file `%s', | |
| 4497 ;;DEL or `n' to skip to next, | |
| 4498 ;;ESC or `q' to not overwrite any of the remaining files, | |
| 4499 ;;`!' to overwrite all remaining files with no more questions." to))) | |
| 4500 ;; (dired-query 'overwrite-query | |
| 4501 ;; "Overwrite `%s'?" to)))) | |
| 4502 ;; ;; must determine if FROM is marked before file-creator | |
| 4503 ;; ;; gets a chance to delete it (in case of a move). | |
| 4504 ;; (actual-marker-char | |
| 4505 ;; (cond ((integerp marker-char) marker-char) | |
| 4506 ;; (marker-char (dired-file-marker from)) ; slow | |
| 4507 ;; (t nil)))) | |
| 4508 ;; (condition-case err | |
| 4509 ;; (funcall file-creator from to overwrite-confirmed | |
| 4510 ;; (list (function ange-ftp-dcf-2) | |
| 4511 ;; nil ;err | |
| 4512 ;; file-creator operation fn-list | |
| 4513 ;; name-constructor | |
| 4514 ;; target | |
| 4515 ;; marker-char actual-marker-char | |
| 4516 ;; buffer to from | |
| 4517 ;; overwrite | |
| 4518 ;; overwrite-confirmed | |
| 30459 | 4519 ;; overwrite-query |
| 28210 | 4520 ;; overwrite-backup-query |
| 4521 ;; failures skipped success-count | |
| 4522 ;; total) | |
| 4523 ;; t) | |
| 4524 ;; (file-error ; FILE-CREATOR aborted | |
| 4525 ;; (ange-ftp-dcf-2 nil ;result | |
| 4526 ;; nil ;line | |
| 4527 ;; err | |
| 4528 ;; file-creator operation fn-list | |
| 4529 ;; name-constructor | |
| 4530 ;; target | |
| 4531 ;; marker-char actual-marker-char | |
| 4532 ;; buffer to from | |
| 4533 ;; overwrite | |
| 4534 ;; overwrite-confirmed | |
| 30459 | 4535 ;; overwrite-query |
| 28210 | 4536 ;; overwrite-backup-query |
| 4537 ;; failures skipped success-count | |
| 4538 ;; total)))))))) | |
| 4539 ;; (set-buffer old-buf)))) | |
| 4540 | |
| 4541 ;;(defun ange-ftp-dcf-2 (result line err | |
| 4542 ;; file-creator operation fn-list | |
| 4543 ;; name-constructor | |
| 4544 ;; target | |
| 4545 ;; marker-char actual-marker-char | |
| 4546 ;; buffer to from | |
| 4547 ;; overwrite | |
| 4548 ;; overwrite-confirmed | |
| 30459 | 4549 ;; overwrite-query |
| 28210 | 4550 ;; overwrite-backup-query |
| 4551 ;; failures skipped success-count | |
| 4552 ;; total) | |
| 4553 ;; (let ((old-buf (current-buffer))) | |
| 4554 ;; (unwind-protect | |
| 4555 ;; (progn | |
| 4556 ;; (set-buffer buffer) | |
| 4557 ;; (if (or err (not result)) | |
| 4558 ;; (progn | |
| 4559 ;; (setq failures (cons (dired-make-relative from) failures)) | |
| 4560 ;; (dired-log "%s `%s' to `%s' failed:\n%s\n" | |
| 4561 ;; operation from to (or err line))) | |
| 4562 ;; (if overwrite | |
| 4563 ;; ;; If we get here, file-creator hasn't been aborted | |
| 4564 ;; ;; and the old entry (if any) has to be deleted | |
| 4565 ;; ;; before adding the new entry. | |
| 4566 ;; (dired-remove-file to)) | |
| 4567 ;; (setq success-count (1+ success-count)) | |
| 4568 ;; (message "%s: %d of %d" operation success-count total) | |
| 4569 ;; (dired-add-file to actual-marker-char)) | |
| 30459 | 4570 |
| 28210 | 4571 ;; (ange-ftp-dcf-1 file-creator operation (cdr fn-list) |
| 4572 ;; name-constructor | |
| 4573 ;; target | |
| 4574 ;; marker-char | |
| 4575 ;; buffer | |
| 30459 | 4576 ;; overwrite-query |
| 28210 | 4577 ;; overwrite-backup-query |
| 4578 ;; failures skipped success-count | |
| 4579 ;; total)) | |
| 4580 ;; (set-buffer old-buf)))) | |
| 4581 | |
| 4582 ;;(defun ange-ftp-dcf-3 (failures operation total skipped success-count | |
| 4583 ;; buffer) | |
| 4584 ;; (let ((old-buf (current-buffer))) | |
| 4585 ;; (unwind-protect | |
| 4586 ;; (progn | |
| 4587 ;; (set-buffer buffer) | |
| 4588 ;; (cond | |
| 4589 ;; (failures | |
| 4590 ;; (dired-log-summary | |
| 4591 ;; (message "%s failed for %d of %d file%s %s" | |
| 4592 ;; operation (length failures) total | |
| 4593 ;; (dired-plural-s total) failures))) | |
| 4594 ;; (skipped | |
| 4595 ;; (dired-log-summary | |
| 4596 ;; (message "%s: %d of %d file%s skipped %s" | |
| 4597 ;; operation (length skipped) total | |
| 4598 ;; (dired-plural-s total) skipped))) | |
| 4599 ;; (t | |
| 4600 ;; (message "%s: %s file%s." | |
| 4601 ;; operation success-count (dired-plural-s success-count)))) | |
| 4602 ;; (dired-move-to-filename)) | |
| 4603 ;; (set-buffer old-buf)))) | |
| 4604 | |
| 4605 ;;;; ----------------------------------------------- | |
| 4606 ;;;; Unix Descriptive Listing (dl) Support | |
| 4607 ;;;; ----------------------------------------------- | |
| 4608 | |
| 4609 ;; This is turned off because nothing uses it currently | |
| 4610 ;; and because I don't understand what it's supposed to be for. --rms. | |
| 4611 | |
| 4612 ;;(defconst ange-ftp-dired-dl-re-dir | |
| 4613 ;; "^. [^ /]+/[ \n]" | |
| 4614 ;; "Regular expression to use to search for dl directories.") | |
| 4615 | |
| 4616 ;;(or (assq 'unix:dl ange-ftp-dired-re-dir-alist) | |
| 4617 ;; (setq ange-ftp-dired-re-dir-alist | |
| 4618 ;; (cons (cons 'unix:dl ange-ftp-dired-dl-re-dir) | |
| 4619 ;; ange-ftp-dired-re-dir-alist))) | |
| 4620 | |
| 4621 ;;(defun ange-ftp-dired-dl-move-to-filename (&optional raise-error eol) | |
| 4622 ;; "In dired, move to the first character of the filename on this line." | |
| 4623 ;; ;; This is the Unix dl version. | |
| 4624 ;; (or eol (setq eol (progn (end-of-line) (point)))) | |
| 4625 ;; (let (case-fold-search) | |
| 4626 ;; (beginning-of-line) | |
| 4627 ;; (if (looking-at ". [^ ]+ +\\([0-9]+\\|-\\|=\\) ") | |
| 4628 ;; (goto-char (+ (point) 2)) | |
| 4629 ;; (if raise-error | |
| 4630 ;; (error "No file on this line") | |
| 4631 ;; nil)))) | |
| 4632 | |
| 4633 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-filename-alist) | |
| 4634 ;; (setq ange-ftp-dired-move-to-filename-alist | |
| 4635 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-filename) | |
| 4636 ;; ange-ftp-dired-move-to-filename-alist))) | |
| 4637 | |
| 4638 ;;(defun ange-ftp-dired-dl-move-to-end-of-filename (&optional no-error eol) | |
| 4639 ;; ;; Assumes point is at beginning of filename. | |
| 4640 ;; ;; So, it should be called only after (dired-move-to-filename t). | |
| 4641 ;; ;; On failure, signals an error or returns nil. | |
| 4642 ;; ;; This is the Unix dl version. | |
| 4643 ;; (let ((opoint (point)) | |
| 4644 ;; case-fold-search hidden) | |
| 4645 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) | |
| 4646 ;; (setq hidden (and selective-display | |
| 4647 ;; (save-excursion | |
| 4648 ;; (search-forward "\r" eol t)))) | |
| 4649 ;; (if hidden | |
| 4650 ;; (if no-error | |
| 4651 ;; nil | |
| 4652 ;; (error | |
| 4653 ;; (substitute-command-keys | |
| 4654 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) | |
| 4655 ;; (skip-chars-forward "^ /" eol) | |
| 4656 ;; (if (eq opoint (point)) | |
| 4657 ;; (if no-error | |
| 4658 ;; nil | |
| 4659 ;; (error "No file on this line")) | |
| 4660 ;; (point))))) | |
| 4661 | |
| 4662 ;;(or (assq 'unix:dl ange-ftp-dired-move-to-end-of-filename-alist) | |
| 4663 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist | |
| 4664 ;; (cons '(unix:dl . ange-ftp-dired-dl-move-to-end-of-filename) | |
| 4665 ;; ange-ftp-dired-move-to-end-of-filename-alist))) | |
| 4666 | |
| 4667 ;;;; ------------------------------------------------------------ | |
| 4668 ;;;; VOS support (VOS support is probably broken, | |
| 4669 ;;;; but I don't know anything about VOS.) | |
| 4670 ;;;; ------------------------------------------------------------ | |
| 4671 ; | |
| 4672 ;(defun ange-ftp-fix-name-for-vos (name &optional reverse) | |
| 4673 ; (setq name (copy-sequence name)) | |
| 4674 ; (let ((from (if reverse ?\> ?\/)) | |
| 4675 ; (to (if reverse ?\/ ?\>)) | |
| 4676 ; (i (1- (length name)))) | |
| 4677 ; (while (>= i 0) | |
| 4678 ; (if (= (aref name i) from) | |
| 4679 ; (aset name i to)) | |
| 4680 ; (setq i (1- i))) | |
| 4681 ; name)) | |
| 4682 ; | |
| 4683 ;(or (assq 'vos ange-ftp-fix-name-func-alist) | |
| 4684 ; (setq ange-ftp-fix-name-func-alist | |
| 4685 ; (cons '(vos . ange-ftp-fix-name-for-vos) | |
| 4686 ; ange-ftp-fix-name-func-alist))) | |
| 4687 ; | |
| 4688 ;(or (memq 'vos ange-ftp-dumb-host-types) | |
| 4689 ; (setq ange-ftp-dumb-host-types | |
| 4690 ; (cons 'vos ange-ftp-dumb-host-types))) | |
| 4691 ; | |
| 4692 ;(defun ange-ftp-fix-dir-name-for-vos (dir-name) | |
| 4693 ; (ange-ftp-fix-name-for-vos | |
| 4694 ; (concat dir-name | |
| 4695 ; (if (eq ?/ (aref dir-name (1- (length dir-name)))) | |
| 4696 ; "" "/") | |
| 4697 ; "*"))) | |
| 4698 ; | |
| 4699 ;(or (assq 'vos ange-ftp-fix-dir-name-func-alist) | |
| 4700 ; (setq ange-ftp-fix-dir-name-func-alist | |
| 4701 ; (cons '(vos . ange-ftp-fix-dir-name-for-vos) | |
| 4702 ; ange-ftp-fix-dir-name-func-alist))) | |
| 4703 ; | |
| 4704 ;(defvar ange-ftp-vos-host-regexp nil | |
| 4705 ; "If a host matches this regexp then it is assumed to be running VOS.") | |
| 4706 ; | |
| 4707 ;(defun ange-ftp-vos-host (host) | |
| 4708 ; (and ange-ftp-vos-host-regexp | |
| 4709 ; (save-match-data | |
| 4710 ; (string-match ange-ftp-vos-host-regexp host)))) | |
| 4711 ; | |
| 4712 ;(defun ange-ftp-parse-vos-listing () | |
| 4713 ; "Parse the current buffer which is assumed to be in VOS list -all | |
| 4714 ;format, and return a hashtable as the result." | |
| 4715 ; (let ((tbl (ange-ftp-make-hashtable)) | |
| 4716 ; (type-list | |
| 4717 ; '(("^Files: [0-9]+ +Blocks: [0-9]+\n+" nil 40) | |
| 4718 ; ("^Dirs: [0-9]+\n+" t 30))) | |
| 4719 ; type-regexp type-is-dir type-col file) | |
| 4720 ; (goto-char (point-min)) | |
| 4721 ; (save-match-data | |
| 4722 ; (while type-list | |
| 4723 ; (setq type-regexp (car (car type-list)) | |
| 4724 ; type-is-dir (nth 1 (car type-list)) | |
| 4725 ; type-col (nth 2 (car type-list)) | |
| 4726 ; type-list (cdr type-list)) | |
| 4727 ; (if (re-search-forward type-regexp nil t) | |
| 4728 ; (while (eq (char-after (point)) ? ) | |
| 4729 ; (move-to-column type-col) | |
| 4730 ; (setq file (buffer-substring (point) | |
| 4731 ; (progn | |
| 4732 ; (end-of-line 1) | |
| 4733 ; (point)))) | |
| 4734 ; (ange-ftp-put-hash-entry file type-is-dir tbl) | |
| 4735 ; (forward-line 1)))) | |
| 4736 ; (ange-ftp-put-hash-entry "." 'vosdir tbl) | |
| 4737 ; (ange-ftp-put-hash-entry ".." 'vosdir tbl)) | |
| 4738 ; tbl)) | |
| 4739 ; | |
| 4740 ;(or (assq 'vos ange-ftp-parse-list-func-alist) | |
| 4741 ; (setq ange-ftp-parse-list-func-alist | |
| 4742 ; (cons '(vos . ange-ftp-parse-vos-listing) | |
| 4743 ; ange-ftp-parse-list-func-alist))) | |
| 4744 | |
| 4745 ;;;; ------------------------------------------------------------ | |
| 4746 ;;;; VMS support. | |
| 4747 ;;;; ------------------------------------------------------------ | |
| 4748 | |
| 4749 ;; Convert NAME from UNIX-ish to VMS. If REVERSE given then convert from VMS | |
| 4750 ;; to UNIX-ish. | |
| 4751 (defun ange-ftp-fix-name-for-vms (name &optional reverse) | |
| 4752 (save-match-data | |
| 4753 (if reverse | |
| 4754 (if (string-match "^\\([^:]+:\\)?\\(\\[.*\\]\\)?\\([^][]*\\)$" name) | |
| 4755 (let (drive dir file) | |
| 4756 (if (match-beginning 1) | |
| 4757 (setq drive (substring name | |
| 4758 (match-beginning 1) | |
| 4759 (match-end 1)))) | |
| 4760 (if (match-beginning 2) | |
| 4761 (setq dir | |
| 4762 (substring name (match-beginning 2) (match-end 2)))) | |
| 4763 (if (match-beginning 3) | |
| 4764 (setq file | |
| 4765 (substring name (match-beginning 3) (match-end 3)))) | |
| 4766 (and dir | |
| 30481 | 4767 (setq dir (subst-char-in-string |
| 4768 ?. ?/ (substring dir 1 -1) t))) | |
| 28210 | 4769 (concat (and drive |
| 4770 (concat "/" drive "/")) | |
| 4771 dir (and dir "/") | |
| 4772 file)) | |
| 4773 (error "name %s didn't match" name)) | |
| 4774 (let (drive dir file tmp) | |
| 4775 (if (string-match "^/[^:]+:/" name) | |
| 4776 (setq drive (substring name 1 | |
| 4777 (1- (match-end 0))) | |
| 4778 name (substring name (match-end 0)))) | |
| 4779 (setq tmp (file-name-directory name)) | |
| 4780 (if tmp | |
| 30481 | 4781 (setq dir (subst-char-in-string ?. ?/ (substring tmp 0 -1) t))) |
| 28210 | 4782 (setq file (file-name-nondirectory name)) |
| 4783 (concat drive | |
| 4784 (and dir (concat "[" (if drive nil ".") dir "]")) | |
| 4785 file))))) | |
| 4786 | |
| 4787 ;; (ange-ftp-fix-name-for-vms "/PUB$:/ANONYMOUS/SDSCPUB/NEXT/Readme.txt;1") | |
| 4788 ;; (ange-ftp-fix-name-for-vms "/PUB$:[ANONYMOUS.SDSCPUB.NEXT]Readme.txt;1" t) | |
| 4789 | |
| 4790 (or (assq 'vms ange-ftp-fix-name-func-alist) | |
| 4791 (setq ange-ftp-fix-name-func-alist | |
| 4792 (cons '(vms . ange-ftp-fix-name-for-vms) | |
| 4793 ange-ftp-fix-name-func-alist))) | |
| 4794 | |
| 4795 (or (memq 'vms ange-ftp-dumb-host-types) | |
| 4796 (setq ange-ftp-dumb-host-types | |
| 4797 (cons 'vms ange-ftp-dumb-host-types))) | |
| 4798 | |
| 4799 ;; It is important that this function barf for directories for which we know | |
| 4800 ;; that we cannot possibly get a directory listing, such as "/" and "/DEV:/". | |
| 4801 ;; This is because it saves an unnecessary FTP error, or possibly the listing | |
| 4802 ;; might succeed, but give erroneous info. This last case is particularly | |
| 4803 ;; likely for OS's (like MTS) for which we need to use a wildcard in order | |
| 4804 ;; to list a directory. | |
| 4805 | |
| 4806 ;; Convert name from UNIX-ish to VMS ready for a DIRectory listing. | |
| 4807 (defun ange-ftp-fix-dir-name-for-vms (dir-name) | |
| 4808 ;; Should there be entries for .. -> [-] and . -> [] below. Don't | |
| 4809 ;; think so, because expand-filename should have already short-circuited | |
| 4810 ;; them. | |
| 4811 (cond ((string-equal dir-name "/") | |
| 4812 (error "Cannot get listing for fictitious \"/\" directory.")) | |
| 4813 ((string-match "^/[-A-Z0-9_$]+:/$" dir-name) | |
| 4814 (error "Cannot get listing for device.")) | |
| 4815 ((ange-ftp-fix-name-for-vms dir-name)))) | |
| 30459 | 4816 |
| 28210 | 4817 (or (assq 'vms ange-ftp-fix-dir-name-func-alist) |
| 4818 (setq ange-ftp-fix-dir-name-func-alist | |
| 4819 (cons '(vms . ange-ftp-fix-dir-name-for-vms) | |
| 4820 ange-ftp-fix-dir-name-func-alist))) | |
| 4821 | |
| 4822 (defvar ange-ftp-vms-host-regexp nil) | |
| 4823 | |
| 4824 ;; Return non-nil if HOST is running VMS. | |
| 4825 (defun ange-ftp-vms-host (host) | |
| 4826 (and ange-ftp-vms-host-regexp | |
| 4827 (save-match-data | |
| 4828 (string-match ange-ftp-vms-host-regexp host)))) | |
| 4829 | |
| 4830 ;; Because some VMS ftp servers convert filenames to lower case | |
| 4831 ;; we allow a-z in the filename regexp. I'm not too happy about this. | |
| 4832 | |
| 4833 (defconst ange-ftp-vms-filename-regexp | |
| 4834 (concat | |
| 4835 "\\(\\([_A-Za-z0-9$]?\\|[_A-Za-z0-9$][-_A-Za-z0-9$]*\\)\\." | |
| 4836 "[-_A-Za-z0-9$]*;+[0-9]*\\)") | |
| 4837 "Regular expression to match for a valid VMS file name in Dired buffer. | |
| 4838 Stupid freaking bug! Position of _ and $ shouldn't matter but they do. | |
| 4839 Having [A-Z0-9$_] bombs on filename _$$CHANGE_LOG$.TXT$ and $CHANGE_LOG$.TX | |
| 4840 Other orders of $ and _ seem to all work just fine.") | |
| 4841 | |
| 4842 ;; These parsing functions are as general as possible because the syntax | |
| 4843 ;; of ftp listings from VMS hosts is a bit erratic. What saves us is that | |
| 4844 ;; the VMS filename syntax is so rigid. If they bomb on a listing in the | |
| 4845 ;; standard VMS Multinet format, then this is a bug. If they bomb on a listing | |
| 4846 ;; from vms.weird.net, then too bad. | |
| 4847 | |
| 4848 ;; Extract the next filename from a VMS dired-like listing. | |
| 4849 (defun ange-ftp-parse-vms-filename () | |
| 4850 (if (re-search-forward | |
| 4851 ange-ftp-vms-filename-regexp | |
| 4852 nil t) | |
| 4853 (buffer-substring (match-beginning 0) (match-end 0)))) | |
| 4854 | |
| 4855 ;; Parse the current buffer which is assumed to be in MultiNet FTP dir | |
| 4856 ;; format, and return a hashtable as the result. | |
| 4857 (defun ange-ftp-parse-vms-listing () | |
| 4858 (let ((tbl (ange-ftp-make-hashtable)) | |
| 4859 file) | |
| 4860 (goto-char (point-min)) | |
| 4861 (save-match-data | |
| 4862 (while (setq file (ange-ftp-parse-vms-filename)) | |
| 4863 (if (string-match "\\.\\(DIR\\|dir\\);[0-9]+" file) | |
| 4864 ;; deal with directories | |
| 4865 (ange-ftp-put-hash-entry | |
| 4866 (substring file 0 (match-beginning 0)) t tbl) | |
| 4867 (ange-ftp-put-hash-entry file nil tbl) | |
| 4868 (if (string-match ";[0-9]+$" file) ; deal with extension | |
| 4869 ;; sans extension | |
| 4870 (ange-ftp-put-hash-entry | |
| 4871 (substring file 0 (match-beginning 0)) nil tbl))) | |
| 4872 (forward-line 1)) | |
| 4873 ;; Would like to look for a "Total" line, or a "Directory" line to | |
| 4874 ;; make sure that the listing isn't complete garbage before putting | |
| 4875 ;; in "." and "..", but we can't even count on all VAX's giving us | |
| 4876 ;; either of these. | |
| 4877 (ange-ftp-put-hash-entry "." t tbl) | |
| 4878 (ange-ftp-put-hash-entry ".." t tbl)) | |
| 4879 tbl)) | |
| 4880 | |
| 4881 (or (assq 'vms ange-ftp-parse-list-func-alist) | |
| 4882 (setq ange-ftp-parse-list-func-alist | |
| 4883 (cons '(vms . ange-ftp-parse-vms-listing) | |
| 4884 ange-ftp-parse-list-func-alist))) | |
| 4885 | |
| 4886 ;; This version only deletes file entries which have | |
| 4887 ;; explicit version numbers, because that is all VMS allows. | |
| 4888 | |
| 4889 ;; Can the following two functions be speeded up using file | |
| 4890 ;; completion functions? | |
| 4891 | |
| 4892 (defun ange-ftp-vms-delete-file-entry (name &optional dir-p) | |
| 4893 (if dir-p | |
| 4894 (ange-ftp-internal-delete-file-entry name t) | |
| 4895 (save-match-data | |
| 4896 (let ((file (ange-ftp-get-file-part name))) | |
| 4897 (if (string-match ";[0-9]+$" file) | |
| 30459 | 4898 ;; In VMS you can't delete a file without an explicit |
| 28210 | 4899 ;; version number, or wild-card (e.g. FOO;*) |
| 4900 ;; For now, we give up on wildcards. | |
| 4901 (let ((files (ange-ftp-get-hash-entry | |
| 4902 (file-name-directory name) | |
| 4903 ange-ftp-files-hashtable))) | |
| 4904 (if files | |
| 4905 (let* ((root (substring file 0 | |
| 4906 (match-beginning 0))) | |
| 4907 (regexp (concat "^" | |
| 4908 (regexp-quote root) | |
| 4909 ";[0-9]+$")) | |
| 4910 versions) | |
| 4911 (ange-ftp-del-hash-entry file files) | |
| 4912 ;; Now we need to check if there are any | |
| 4913 ;; versions left. If not, then delete the | |
| 4914 ;; root entry. | |
| 4915 (mapatoms | |
|
29587
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
4916 (lambda (sym) |
|
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
4917 (and (string-match regexp (get sym 'key)) |
|
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
4918 (setq versions t))) |
| 28210 | 4919 files) |
| 4920 (or versions | |
| 4921 (ange-ftp-del-hash-entry root files)))))))))) | |
| 4922 | |
| 4923 (or (assq 'vms ange-ftp-delete-file-entry-alist) | |
| 4924 (setq ange-ftp-delete-file-entry-alist | |
| 4925 (cons '(vms . ange-ftp-vms-delete-file-entry) | |
| 4926 ange-ftp-delete-file-entry-alist))) | |
| 4927 | |
| 4928 (defun ange-ftp-vms-add-file-entry (name &optional dir-p) | |
| 4929 (if dir-p | |
| 4930 (ange-ftp-internal-add-file-entry name t) | |
| 4931 (let ((files (ange-ftp-get-hash-entry | |
| 4932 (file-name-directory name) | |
| 4933 ange-ftp-files-hashtable))) | |
| 4934 (if files | |
| 4935 (let ((file (ange-ftp-get-file-part name))) | |
| 4936 (save-match-data | |
| 4937 (if (string-match ";[0-9]+$" file) | |
| 4938 (ange-ftp-put-hash-entry | |
| 4939 (substring file 0 (match-beginning 0)) | |
| 4940 nil files) | |
| 4941 ;; Need to figure out what version of the file | |
| 4942 ;; is being added. | |
| 4943 (let ((regexp (concat "^" | |
| 4944 (regexp-quote file) | |
| 4945 ";\\([0-9]+\\)$")) | |
| 4946 (version 0)) | |
| 4947 (mapatoms | |
|
29587
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
4948 (lambda (sym) |
|
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
4949 (let ((name (get sym 'key))) |
|
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
4950 (and (string-match regexp name) |
|
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
4951 (setq version |
|
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
4952 (max version |
|
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
4953 (string-to-int |
|
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
4954 (substring name |
|
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
4955 (match-beginning 1) |
|
bcdfb27c5ea4
(ange-ftp-vms-delete-file-entry)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
28892
diff
changeset
|
4956 (match-end 1)))))))) |
| 28210 | 4957 files) |
| 4958 (setq version (1+ version)) | |
| 4959 (ange-ftp-put-hash-entry | |
| 4960 (concat file ";" (int-to-string version)) | |
| 4961 nil files)))) | |
| 4962 (ange-ftp-put-hash-entry file nil files)))))) | |
| 4963 | |
| 4964 (or (assq 'vms ange-ftp-add-file-entry-alist) | |
| 4965 (setq ange-ftp-add-file-entry-alist | |
| 4966 (cons '(vms . ange-ftp-vms-add-file-entry) | |
| 4967 ange-ftp-add-file-entry-alist))) | |
| 4968 | |
| 4969 | |
| 4970 (defun ange-ftp-add-vms-host (host) | |
| 4971 "Mark HOST as the name of a machine running VMS." | |
| 4972 (interactive | |
| 4973 (list (read-string "Host: " | |
| 4974 (let ((name (or (buffer-file-name) default-directory))) | |
| 4975 (and name (car (ange-ftp-ftp-name name))))))) | |
| 4976 (if (not (ange-ftp-vms-host host)) | |
| 4977 (setq ange-ftp-vms-host-regexp | |
| 4978 (concat "^" (regexp-quote host) "$" | |
| 4979 (and ange-ftp-vms-host-regexp "\\|") | |
| 4980 ange-ftp-vms-host-regexp) | |
| 4981 ange-ftp-host-cache nil))) | |
| 4982 | |
| 4983 | |
| 4984 (defun ange-ftp-vms-file-name-as-directory (name) | |
| 4985 (save-match-data | |
| 4986 (if (string-match "\\.\\(DIR\\|dir\\)\\(;[0-9]+\\)?$" name) | |
| 4987 (setq name (substring name 0 (match-beginning 0)))) | |
| 4988 (ange-ftp-real-file-name-as-directory name))) | |
| 4989 | |
| 4990 (or (assq 'vms ange-ftp-file-name-as-directory-alist) | |
| 4991 (setq ange-ftp-file-name-as-directory-alist | |
| 4992 (cons '(vms . ange-ftp-vms-file-name-as-directory) | |
| 4993 ange-ftp-file-name-as-directory-alist))) | |
| 4994 | |
| 4995 ;;; Tree dired support: | |
| 4996 | |
| 4997 ;; For this code I have borrowed liberally from Sebastian Kremer's | |
| 4998 ;; dired-vms.el | |
| 4999 | |
| 5000 | |
| 5001 ;;;; These regexps must be anchored to beginning of line. | |
| 5002 ;;;; Beware that the ftpd may put the device in front of the filename. | |
| 5003 | |
| 5004 ;;(defconst ange-ftp-dired-vms-re-exe "^. [^ \t.]+\\.\\(EXE\\|exe\\)[; ]" | |
| 5005 ;; "Regular expression to use to search for VMS executable files.") | |
| 5006 | |
| 5007 ;;(defconst ange-ftp-dired-vms-re-dir "^. [^ \t.]+\\.\\(DIR\\|dir\\)[; ]" | |
| 5008 ;; "Regular expression to use to search for VMS directories.") | |
| 5009 | |
| 5010 ;;(or (assq 'vms ange-ftp-dired-re-exe-alist) | |
| 5011 ;; (setq ange-ftp-dired-re-exe-alist | |
| 5012 ;; (cons (cons 'vms ange-ftp-dired-vms-re-exe) | |
| 5013 ;; ange-ftp-dired-re-exe-alist))) | |
| 5014 | |
| 5015 ;;(or (assq 'vms ange-ftp-dired-re-dir-alist) | |
| 5016 ;; (setq ange-ftp-dired-re-dir-alist | |
| 5017 ;; (cons (cons 'vms ange-ftp-dired-vms-re-dir) | |
| 5018 ;; ange-ftp-dired-re-dir-alist))) | |
| 5019 | |
| 5020 ;;(defun ange-ftp-dired-vms-insert-headerline (dir) | |
| 5021 ;; ;; VMS inserts a headerline. I would prefer the headerline | |
| 5022 ;; ;; to be in ange-ftp format. This version tries to | |
| 5023 ;; ;; be careful, because we can't count on a headerline | |
| 5024 ;; ;; over ftp, and we wouldn't want to delete anything | |
| 5025 ;; ;; important. | |
| 5026 ;; (save-excursion | |
| 5027 ;; (if (looking-at "^ wildcard ") | |
| 5028 ;; (forward-line 1)) | |
| 5029 ;; (if (looking-at "^[ \n\t]*[^\n]+\\][ \t]*\n") | |
| 5030 ;; (delete-region (point) (match-end 0)))) | |
| 5031 ;; (ange-ftp-real-dired-insert-headerline dir)) | |
| 5032 | |
| 5033 ;;(or (assq 'vms ange-ftp-dired-insert-headerline-alist) | |
| 5034 ;; (setq ange-ftp-dired-insert-headerline-alist | |
| 5035 ;; (cons '(vms . ange-ftp-dired-vms-insert-headerline) | |
| 5036 ;; ange-ftp-dired-insert-headerline-alist))) | |
| 5037 | |
| 5038 ;;(defun ange-ftp-dired-vms-move-to-filename (&optional raise-error eol) | |
| 5039 ;; "In dired, move to first char of filename on this line. | |
| 5040 ;;Returns position (point) or nil if no filename on this line." | |
| 5041 ;; ;; This is the VMS version. | |
| 5042 ;; (let (case-fold-search) | |
| 5043 ;; (or eol (setq eol (progn (end-of-line) (point)))) | |
| 5044 ;; (beginning-of-line) | |
| 5045 ;; (if (re-search-forward ange-ftp-vms-filename-regexp eol t) | |
| 5046 ;; (goto-char (match-beginning 1)) | |
| 5047 ;; (if raise-error | |
| 5048 ;; (error "No file on this line") | |
| 5049 ;; nil)))) | |
| 5050 | |
| 5051 ;;(or (assq 'vms ange-ftp-dired-move-to-filename-alist) | |
| 5052 ;; (setq ange-ftp-dired-move-to-filename-alist | |
| 5053 ;; (cons '(vms . ange-ftp-dired-vms-move-to-filename) | |
| 5054 ;; ange-ftp-dired-move-to-filename-alist))) | |
| 5055 | |
| 5056 ;;(defun ange-ftp-dired-vms-move-to-end-of-filename (&optional no-error eol) | |
| 5057 ;; ;; Assumes point is at beginning of filename. | |
| 5058 ;; ;; So, it should be called only after (dired-move-to-filename t). | |
| 5059 ;; ;; case-fold-search must be nil, at least for VMS. | |
| 5060 ;; ;; On failure, signals an error or returns nil. | |
| 5061 ;; ;; This is the VMS version. | |
| 5062 ;; (let (opoint hidden case-fold-search) | |
| 5063 ;; (setq opoint (point)) | |
| 5064 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) | |
| 5065 ;; (setq hidden (and selective-display | |
| 5066 ;; (save-excursion (search-forward "\r" eol t)))) | |
| 5067 ;; (if hidden | |
| 5068 ;; nil | |
| 5069 ;; (re-search-forward ange-ftp-vms-filename-regexp eol t)) | |
| 5070 ;; (or no-error | |
| 5071 ;; (not (eq opoint (point))) | |
| 5072 ;; (error | |
| 5073 ;; (if hidden | |
| 5074 ;; (substitute-command-keys | |
| 5075 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") | |
| 5076 ;; "No file on this line"))) | |
| 5077 ;; (if (eq opoint (point)) | |
| 5078 ;; nil | |
| 5079 ;; (point)))) | |
| 5080 | |
| 5081 ;;(or (assq 'vms ange-ftp-dired-move-to-end-of-filename-alist) | |
| 5082 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist | |
| 5083 ;; (cons '(vms . ange-ftp-dired-vms-move-to-end-of-filename) | |
| 5084 ;; ange-ftp-dired-move-to-end-of-filename-alist))) | |
| 5085 | |
| 5086 ;;(defun ange-ftp-dired-vms-between-files () | |
| 5087 ;; (save-excursion | |
| 5088 ;; (beginning-of-line) | |
| 5089 ;; (or (equal (following-char) 10) ; newline | |
| 5090 ;; (equal (following-char) 9) ; tab | |
| 5091 ;; (progn (forward-char 2) | |
| 5092 ;; (or (looking-at "Total of") | |
| 5093 ;; (equal (following-char) 32)))))) | |
| 5094 | |
| 5095 ;;(or (assq 'vms ange-ftp-dired-between-files-alist) | |
| 5096 ;; (setq ange-ftp-dired-between-files-alist | |
| 5097 ;; (cons '(vms . ange-ftp-dired-vms-between-files) | |
| 5098 ;; ange-ftp-dired-between-files-alist))) | |
| 5099 | |
| 5100 ;; Beware! In VMS filenames must be of the form "FILE.TYPE". | |
| 5101 ;; Therefore, we cannot just append a ".Z" to filenames for | |
| 5102 ;; compressed files. Instead, we turn "FILE.TYPE" into | |
| 5103 ;; "FILE.TYPE-Z". Hope that this is a reasonable thing to do. | |
| 5104 | |
| 5105 (defun ange-ftp-vms-make-compressed-filename (name &optional reverse) | |
| 5106 (cond | |
| 5107 ((string-match "-Z;[0-9]+$" name) | |
| 5108 (list nil (substring name 0 (match-beginning 0)))) | |
| 5109 ((string-match ";[0-9]+$" name) | |
| 5110 (list nil (substring name 0 (match-beginning 0)))) | |
| 5111 ((string-match "-Z$" name) | |
| 5112 (list nil (substring name 0 -2))) | |
| 5113 (t | |
| 5114 (list t | |
| 5115 (if (string-match ";[0-9]+$" name) | |
| 5116 (concat (substring name 0 (match-beginning 0)) | |
| 5117 "-Z") | |
| 5118 (concat name "-Z")))))) | |
| 5119 | |
| 5120 (or (assq 'vms ange-ftp-make-compressed-filename-alist) | |
| 5121 (setq ange-ftp-make-compressed-filename-alist | |
| 5122 (cons '(vms . ange-ftp-vms-make-compressed-filename) | |
| 5123 ange-ftp-make-compressed-filename-alist))) | |
| 5124 | |
| 5125 ;;;; When the filename is too long, VMS will use two lines to list a file | |
| 5126 ;;;; (damn them!) This will confuse dired. To solve this, need to convince | |
| 5127 ;;;; Sebastian to use a function dired-go-to-end-of-file-line, instead of | |
| 5128 ;;;; (forward-line 1). This would require a number of changes to dired.el. | |
| 5129 ;;;; If dired gets confused, revert-buffer will fix it. | |
| 5130 | |
| 5131 ;;(defun ange-ftp-dired-vms-ls-trim () | |
| 5132 ;; (goto-char (point-min)) | |
| 5133 ;; (let ((case-fold-search nil)) | |
| 5134 ;; (re-search-forward ange-ftp-vms-filename-regexp)) | |
| 5135 ;; (beginning-of-line) | |
| 5136 ;; (delete-region (point-min) (point)) | |
| 5137 ;; (forward-line 1) | |
| 5138 ;; (delete-region (point) (point-max))) | |
| 5139 | |
| 5140 | |
| 5141 ;;(or (assq 'vms ange-ftp-dired-ls-trim-alist) | |
| 5142 ;; (setq ange-ftp-dired-ls-trim-alist | |
| 5143 ;; (cons '(vms . ange-ftp-dired-vms-ls-trim) | |
| 30459 | 5144 ;; ange-ftp-dired-ls-trim-alist))) |
| 28210 | 5145 |
| 5146 (defun ange-ftp-vms-sans-version (name &rest args) | |
| 5147 (save-match-data | |
| 5148 (if (string-match ";[0-9]+$" name) | |
| 5149 (substring name 0 (match-beginning 0)) | |
| 5150 name))) | |
| 5151 | |
| 5152 (or (assq 'vms ange-ftp-sans-version-alist) | |
| 5153 (setq ange-ftp-sans-version-alist | |
| 5154 (cons '(vms . ange-ftp-vms-sans-version) | |
| 5155 ange-ftp-sans-version-alist))) | |
| 5156 | |
| 5157 ;;(defvar ange-ftp-file-version-alist) | |
| 5158 | |
| 5159 ;;;;; The vms version of clean-directory has 2 more optional args | |
| 5160 ;;;;; than the usual dired version. This is so that it can be used by | |
| 5161 ;;;;; ange-ftp-dired-vms-flag-backup-files. | |
| 5162 | |
| 5163 ;;(defun ange-ftp-dired-vms-clean-directory (keep &optional marker msg) | |
| 5164 ;; "Flag numerical backups for deletion. | |
| 5165 ;;Spares `dired-kept-versions' latest versions, and `kept-old-versions' oldest. | |
| 5166 ;;Positive prefix arg KEEP overrides `dired-kept-versions'; | |
| 5167 ;;Negative prefix arg KEEP overrides `kept-old-versions' with KEEP made positive. | |
| 5168 | |
| 5169 ;;To clear the flags on these files, you can use \\[dired-flag-backup-files] | |
| 5170 ;;with a prefix argument." | |
| 5171 ;;; (interactive "P") ; Never actually called interactively. | |
| 5172 ;; (setq keep (max 1 (if keep (prefix-numeric-value keep) dired-kept-versions))) | |
| 5173 ;; (let ((early-retention (if (< keep 0) (- keep) kept-old-versions)) | |
| 5174 ;; ;; late-retention must NEVER be allowed to be less than 1 in VMS! | |
| 5175 ;; ;; This could wipe ALL copies of the file. | |
| 5176 ;; (late-retention (max 1 (if (<= keep 0) dired-kept-versions keep))) | |
| 5177 ;; (action (or msg "Cleaning")) | |
| 5178 ;; (ange-ftp-trample-marker (or marker dired-del-marker)) | |
| 5179 ;; (ange-ftp-file-version-alist ())) | |
| 5180 ;; (message (concat action | |
| 5181 ;; " numerical backups (keeping %d late, %d old)...") | |
| 5182 ;; late-retention early-retention) | |
| 5183 ;; ;; Look at each file. | |
| 5184 ;; ;; If the file has numeric backup versions, | |
| 5185 ;; ;; put on ange-ftp-file-version-alist an element of the form | |
| 5186 ;; ;; (FILENAME . VERSION-NUMBER-LIST) | |
| 5187 ;; (dired-map-dired-file-lines (function | |
| 5188 ;; ange-ftp-dired-vms-collect-file-versions)) | |
| 5189 ;; ;; Sort each VERSION-NUMBER-LIST, | |
| 5190 ;; ;; and remove the versions not to be deleted. | |
| 5191 ;; (let ((fval ange-ftp-file-version-alist)) | |
| 5192 ;; (while fval | |
| 5193 ;; (let* ((sorted-v-list (cons 'q (sort (cdr (car fval)) '<))) | |
| 5194 ;; (v-count (length sorted-v-list))) | |
| 5195 ;; (if (> v-count (+ early-retention late-retention)) | |
| 5196 ;; (rplacd (nthcdr early-retention sorted-v-list) | |
| 5197 ;; (nthcdr (- v-count late-retention) | |
| 5198 ;; sorted-v-list))) | |
| 5199 ;; (rplacd (car fval) | |
| 5200 ;; (cdr sorted-v-list))) | |
| 5201 ;; (setq fval (cdr fval)))) | |
| 5202 ;; ;; Look at each file. If it is a numeric backup file, | |
| 5203 ;; ;; find it in a VERSION-NUMBER-LIST and maybe flag it for deletion. | |
| 5204 ;; (dired-map-dired-file-lines | |
| 5205 ;; (function | |
| 5206 ;; ange-ftp-dired-vms-trample-file-versions mark)) | |
| 5207 ;; (message (concat action " numerical backups...done")))) | |
| 5208 | |
| 5209 ;;(or (assq 'vms ange-ftp-dired-clean-directory-alist) | |
| 5210 ;; (setq ange-ftp-dired-clean-directory-alist | |
| 5211 ;; (cons '(vms . ange-ftp-dired-vms-clean-directory) | |
| 5212 ;; ange-ftp-dired-clean-directory-alist))) | |
| 5213 | |
| 5214 ;;(defun ange-ftp-dired-vms-collect-file-versions (fn) | |
| 5215 ;; ;; "If it looks like file FN has versions, return a list of the versions. | |
| 5216 ;; ;;That is a list of strings which are file names. | |
| 5217 ;; ;;The caller may want to flag some of these files for deletion." | |
| 5218 ;;(let ((name (nth 2 (ange-ftp-ftp-name fn)))) | |
| 5219 ;; (if (string-match ";[0-9]+$" name) | |
| 5220 ;; (let* ((name (substring name 0 (match-beginning 0))) | |
| 5221 ;; (fn (ange-ftp-replace-name-component fn name))) | |
| 5222 ;; (if (not (assq fn ange-ftp-file-version-alist)) | |
| 5223 ;; (let* ((base-versions | |
| 5224 ;; (concat (file-name-nondirectory name) ";")) | |
| 5225 ;; (bv-length (length base-versions)) | |
| 5226 ;; (possibilities (file-name-all-completions | |
| 5227 ;; base-versions | |
| 5228 ;; (file-name-directory fn))) | |
| 5229 ;; (versions (mapcar | |
| 5230 ;; '(lambda (arg) | |
| 5231 ;; (if (and (string-match | |
| 5232 ;; "[0-9]+$" arg bv-length) | |
| 5233 ;; (= (match-beginning 0) bv-length)) | |
| 5234 ;; (string-to-int (substring arg bv-length)) | |
| 5235 ;; 0)) | |
| 5236 ;; possibilities))) | |
| 5237 ;; (if versions | |
| 5238 ;; (setq | |
| 5239 ;; ange-ftp-file-version-alist | |
| 5240 ;; (cons (cons fn versions) | |
| 5241 ;; ange-ftp-file-version-alist))))))))) | |
| 5242 | |
| 5243 ;;(defun ange-ftp-dired-vms-trample-file-versions (fn) | |
| 5244 ;; (let* ((start-vn (string-match ";[0-9]+$" fn)) | |
| 5245 ;; base-version-list) | |
| 5246 ;; (and start-vn | |
| 5247 ;; (setq base-version-list ; there was a base version to which | |
| 5248 ;; (assoc (substring fn 0 start-vn) ; this looks like a | |
| 5249 ;; ange-ftp-file-version-alist)) ; subversion | |
| 5250 ;; (not (memq (string-to-int (substring fn (1+ start-vn))) | |
| 5251 ;; base-version-list)) ; this one doesn't make the cut | |
| 5252 ;; (progn (beginning-of-line) | |
| 5253 ;; (delete-char 1) | |
| 5254 ;; (insert ange-ftp-trample-marker))))) | |
| 5255 | |
| 5256 ;;(defun ange-ftp-dired-vms-flag-backup-files (&optional unflag-p) | |
| 5257 ;; (let ((dired-kept-versions 1) | |
| 5258 ;; (kept-old-versions 0) | |
| 5259 ;; marker msg) | |
| 5260 ;; (if unflag-p | |
| 5261 ;; (setq marker ?\040 msg "Unflagging") | |
| 5262 ;; (setq marker dired-del-marker msg "Cleaning")) | |
| 5263 ;; (ange-ftp-dired-vms-clean-directory nil marker msg))) | |
| 5264 | |
| 5265 ;;(or (assq 'vms ange-ftp-dired-flag-backup-files-alist) | |
| 5266 ;; (setq ange-ftp-dired-flag-backup-files-alist | |
| 5267 ;; (cons '(vms . ange-ftp-dired-vms-flag-backup-files) | |
| 5268 ;; ange-ftp-dired-flag-backup-files-alist))) | |
| 5269 | |
| 5270 ;;(defun ange-ftp-dired-vms-backup-diff (&optional switches) | |
| 5271 ;; (let ((file (dired-get-filename 'no-dir)) | |
| 5272 ;; bak) | |
| 5273 ;; (if (and (string-match ";[0-9]+$" file) | |
| 5274 ;; ;; Find most recent previous version. | |
| 5275 ;; (let ((root (substring file 0 (match-beginning 0))) | |
| 5276 ;; (ver | |
| 5277 ;; (string-to-int (substring file (1+ (match-beginning 0))))) | |
| 5278 ;; found) | |
| 5279 ;; (setq ver (1- ver)) | |
| 5280 ;; (while (and (> ver 0) (not found)) | |
| 5281 ;; (setq bak (concat root ";" (int-to-string ver))) | |
| 5282 ;; (and (file-exists-p bak) (setq found t)) | |
| 5283 ;; (setq ver (1- ver))) | |
| 5284 ;; found)) | |
| 5285 ;; (if switches | |
| 5286 ;; (diff (expand-file-name bak) (expand-file-name file) switches) | |
| 5287 ;; (diff (expand-file-name bak) (expand-file-name file))) | |
| 5288 ;; (error "No previous version found for %s" file)))) | |
| 5289 | |
| 5290 ;;(or (assq 'vms ange-ftp-dired-backup-diff-alist) | |
| 5291 ;; (setq ange-ftp-dired-backup-diff-alist | |
| 5292 ;; (cons '(vms . ange-ftp-dired-vms-backup-diff) | |
| 5293 ;; ange-ftp-dired-backup-diff-alist))) | |
| 5294 | |
| 5295 | |
| 5296 ;;;; ------------------------------------------------------------ | |
| 5297 ;;;; MTS support | |
| 5298 ;;;; ------------------------------------------------------------ | |
| 5299 | |
| 5300 | |
| 5301 ;; Convert NAME from UNIX-ish to MTS. If REVERSE given then convert from | |
| 5302 ;; MTS to UNIX-ish. | |
| 5303 (defun ange-ftp-fix-name-for-mts (name &optional reverse) | |
| 5304 (save-match-data | |
| 5305 (if reverse | |
| 5306 (if (string-match "^\\([^:]+:\\)?\\(.*\\)$" name) | |
| 5307 (let (acct file) | |
| 5308 (if (match-beginning 1) | |
| 5309 (setq acct (substring name 0 (match-end 1)))) | |
| 5310 (if (match-beginning 2) | |
| 5311 (setq file (substring name | |
| 5312 (match-beginning 2) (match-end 2)))) | |
| 5313 (concat (and acct (concat "/" acct "/")) | |
| 5314 file)) | |
| 5315 (error "name %s didn't match" name)) | |
| 5316 (if (string-match "^/\\([^:]+:\\)/\\(.*\\)$" name) | |
| 5317 (concat (substring name 1 (match-end 1)) | |
| 5318 (substring name (match-beginning 2) (match-end 2))) | |
| 5319 ;; Let's hope that mts will recognize it anyway. | |
| 5320 name)))) | |
| 5321 | |
| 5322 (or (assq 'mts ange-ftp-fix-name-func-alist) | |
| 5323 (setq ange-ftp-fix-name-func-alist | |
| 5324 (cons '(mts . ange-ftp-fix-name-for-mts) | |
| 5325 ange-ftp-fix-name-func-alist))) | |
| 5326 | |
| 5327 ;; Convert name from UNIX-ish to MTS ready for a DIRectory listing. | |
| 5328 ;; Remember that there are no directories in MTS. | |
| 5329 (defun ange-ftp-fix-dir-name-for-mts (dir-name) | |
| 5330 (if (string-equal dir-name "/") | |
| 5331 (error "Cannot get listing for fictitious \"/\" directory.") | |
| 5332 (let ((dir-name (ange-ftp-fix-name-for-mts dir-name))) | |
| 5333 (cond | |
| 5334 ((string-equal dir-name "") | |
| 5335 "?") | |
| 5336 ((string-match ":$" dir-name) | |
| 5337 (concat dir-name "?")) | |
| 5338 (dir-name))))) ; It's just a single file. | |
| 5339 | |
| 5340 (or (assq 'mts ange-ftp-fix-dir-name-func-alist) | |
| 5341 (setq ange-ftp-fix-dir-name-func-alist | |
| 5342 (cons '(mts . ange-ftp-fix-dir-name-for-mts) | |
| 5343 ange-ftp-fix-dir-name-func-alist))) | |
| 5344 | |
| 5345 (or (memq 'mts ange-ftp-dumb-host-types) | |
| 5346 (setq ange-ftp-dumb-host-types | |
| 5347 (cons 'mts ange-ftp-dumb-host-types))) | |
| 5348 | |
| 5349 (defvar ange-ftp-mts-host-regexp nil) | |
| 5350 | |
| 5351 ;; Return non-nil if HOST is running MTS. | |
| 5352 (defun ange-ftp-mts-host (host) | |
| 5353 (and ange-ftp-mts-host-regexp | |
| 5354 (save-match-data | |
| 5355 (string-match ange-ftp-mts-host-regexp host)))) | |
| 5356 | |
| 5357 ;; Parse the current buffer which is assumed to be in mts ftp dir format. | |
| 5358 (defun ange-ftp-parse-mts-listing () | |
| 5359 (let ((tbl (ange-ftp-make-hashtable))) | |
| 5360 (goto-char (point-min)) | |
| 5361 (save-match-data | |
| 5362 (while (re-search-forward ange-ftp-date-regexp nil t) | |
| 5363 (end-of-line) | |
| 5364 (skip-chars-backward " ") | |
| 5365 (let ((end (point))) | |
| 5366 (skip-chars-backward "-A-Z0-9_.!") | |
| 5367 (ange-ftp-put-hash-entry (buffer-substring (point) end) nil tbl)) | |
| 5368 (forward-line 1))) | |
| 5369 ;; Don't need to bother with .. | |
| 5370 (ange-ftp-put-hash-entry "." t tbl) | |
| 5371 tbl)) | |
| 5372 | |
| 5373 (or (assq 'mts ange-ftp-parse-list-func-alist) | |
| 5374 (setq ange-ftp-parse-list-func-alist | |
| 5375 (cons '(mts . ange-ftp-parse-mts-listing) | |
| 5376 ange-ftp-parse-list-func-alist))) | |
| 5377 | |
| 5378 (defun ange-ftp-add-mts-host (host) | |
| 5379 "Mark HOST as the name of a machine running MTS." | |
| 5380 (interactive | |
| 5381 (list (read-string "Host: " | |
| 5382 (let ((name (or (buffer-file-name) default-directory))) | |
| 5383 (and name (car (ange-ftp-ftp-name name))))))) | |
| 5384 (if (not (ange-ftp-mts-host host)) | |
| 5385 (setq ange-ftp-mts-host-regexp | |
| 5386 (concat "^" (regexp-quote host) "$" | |
| 5387 (and ange-ftp-mts-host-regexp "\\|") | |
| 5388 ange-ftp-mts-host-regexp) | |
| 5389 ange-ftp-host-cache nil))) | |
| 5390 | |
| 5391 ;;; Tree dired support: | |
| 5392 | |
| 5393 ;;;; There aren't too many systems left that use MTS. This dired support will | |
| 5394 ;;;; work for the implementation of ftp on mtsg.ubc.ca. I hope other mts systems | |
| 5395 ;;;; implement ftp in the same way. If not, it might be necessary to make the | |
| 5396 ;;;; following more flexible. | |
| 5397 | |
| 5398 ;;(defun ange-ftp-dired-mts-move-to-filename (&optional raise-error eol) | |
| 5399 ;; "In dired, move to first char of filename on this line. | |
| 5400 ;;Returns position (point) or nil if no filename on this line." | |
| 5401 ;; ;; This is the MTS version. | |
| 5402 ;; (or eol (setq eol (progn (end-of-line) (point)))) | |
| 5403 ;; (beginning-of-line) | |
| 5404 ;; (if (re-search-forward | |
| 5405 ;; ange-ftp-date-regexp eol t) | |
| 5406 ;; (progn | |
| 5407 ;; (skip-chars-forward " ") ; Eat blanks after date | |
| 5408 ;; (skip-chars-forward "0-9:" eol) ; Eat time or year | |
| 5409 ;; (skip-chars-forward " " eol) ; one space before filename | |
| 5410 ;; ;; When listing an account other than the users own account it appends | |
| 5411 ;; ;; ACCT: to the beginning of the filename. Skip over this. | |
| 5412 ;; (and (looking-at "[A-Z0-9_.]+:") | |
| 5413 ;; (goto-char (match-end 0))) | |
| 5414 ;; (point)) | |
| 5415 ;; (if raise-error | |
| 5416 ;; (error "No file on this line") | |
| 5417 ;; nil))) | |
| 5418 | |
| 5419 ;;(or (assq 'mts ange-ftp-dired-move-to-filename-alist) | |
| 5420 ;; (setq ange-ftp-dired-move-to-filename-alist | |
| 5421 ;; (cons '(mts . ange-ftp-dired-mts-move-to-filename) | |
| 5422 ;; ange-ftp-dired-move-to-filename-alist))) | |
| 5423 | |
| 5424 ;;(defun ange-ftp-dired-mts-move-to-end-of-filename (&optional no-error eol) | |
| 5425 ;; ;; Assumes point is at beginning of filename. | |
| 5426 ;; ;; So, it should be called only after (dired-move-to-filename t). | |
| 5427 ;; ;; On failure, signals an error or returns nil. | |
| 5428 ;; ;; This is the MTS version. | |
| 5429 ;; (let (opoint hidden case-fold-search) | |
| 5430 ;; (setq opoint (point) | |
| 5431 ;; eol (save-excursion (end-of-line) (point)) | |
| 5432 ;; hidden (and selective-display | |
| 5433 ;; (save-excursion (search-forward "\r" eol t)))) | |
| 5434 ;; (if hidden | |
| 5435 ;; nil | |
| 5436 ;; (skip-chars-forward "-A-Z0-9._!" eol)) | |
| 5437 ;; (or no-error | |
| 5438 ;; (not (eq opoint (point))) | |
| 5439 ;; (error | |
| 5440 ;; (if hidden | |
| 5441 ;; (substitute-command-keys | |
| 5442 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide") | |
| 5443 ;; "No file on this line"))) | |
| 5444 ;; (if (eq opoint (point)) | |
| 5445 ;; nil | |
| 5446 ;; (point)))) | |
| 5447 | |
| 5448 ;;(or (assq 'mts ange-ftp-dired-move-to-end-of-filename-alist) | |
| 5449 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist | |
| 5450 ;; (cons '(mts . ange-ftp-dired-mts-move-to-end-of-filename) | |
| 5451 ;; ange-ftp-dired-move-to-end-of-filename-alist))) | |
| 5452 | |
| 5453 ;;;; ------------------------------------------------------------ | |
| 5454 ;;;; CMS support | |
| 5455 ;;;; ------------------------------------------------------------ | |
| 5456 | |
| 5457 ;; Since CMS doesn't have any full file name syntax, we have to fudge | |
| 5458 ;; things with cd's. We actually send too many cd's, but it's dangerous | |
| 5459 ;; to try to remember the current minidisk, because if the connection | |
| 5460 ;; is closed and needs to be reopened, we will find ourselves back in | |
| 5461 ;; the default minidisk. This is fairly likely since CMS ftp servers | |
| 5462 ;; usually close the connection after 5 minutes of inactivity. | |
| 5463 | |
| 5464 ;; Have I got the filename character set right? | |
| 5465 | |
| 5466 (defun ange-ftp-fix-name-for-cms (name &optional reverse) | |
| 5467 (save-match-data | |
| 5468 (if reverse | |
| 5469 ;; Since we only convert output from a pwd in this direction, | |
| 5470 ;; we'll assume that it's a minidisk, and make it into a | |
| 5471 ;; directory file name. Note that the expand-dir-hashtable | |
| 5472 ;; stores directories without the trailing /. Is this | |
| 5473 ;; consistent? | |
| 5474 (concat "/" name) | |
| 5475 (if (string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" | |
| 5476 name) | |
| 5477 (let ((minidisk (substring name 1 (match-end 1)))) | |
| 5478 (if (match-beginning 2) | |
| 5479 (let ((file (substring name (match-beginning 2) | |
| 5480 (match-end 2))) | |
| 5481 (cmd (concat "cd " minidisk)) | |
| 5482 | |
| 5483 ;; Note that host and user are bound in the call | |
| 5484 ;; to ange-ftp-send-cmd | |
| 5485 (proc (ange-ftp-get-process ange-ftp-this-host | |
| 5486 ange-ftp-this-user))) | |
| 5487 | |
| 5488 ;; Must use ange-ftp-raw-send-cmd here to avoid | |
| 5489 ;; an infinite loop. | |
| 5490 (if (car (ange-ftp-raw-send-cmd proc cmd ange-ftp-this-msg)) | |
| 5491 file | |
| 5492 ;; failed... try ONCE more. | |
| 5493 (setq proc (ange-ftp-get-process ange-ftp-this-host | |
| 5494 ange-ftp-this-user)) | |
| 5495 (let ((result (ange-ftp-raw-send-cmd proc cmd | |
| 5496 ange-ftp-this-msg))) | |
| 5497 (if (car result) | |
| 5498 file | |
| 5499 ;; failed. give up. | |
| 5500 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user | |
| 5501 (format "cd to minidisk %s failed: %s" | |
| 5502 minidisk (cdr result))))))) | |
| 5503 ;; return the minidisk | |
| 5504 minidisk)) | |
| 5505 (error "Invalid CMS filename"))))) | |
| 5506 | |
| 5507 (or (assq 'cms ange-ftp-fix-name-func-alist) | |
| 5508 (setq ange-ftp-fix-name-func-alist | |
| 5509 (cons '(cms . ange-ftp-fix-name-for-cms) | |
| 5510 ange-ftp-fix-name-func-alist))) | |
| 5511 | |
| 5512 (or (memq 'cms ange-ftp-dumb-host-types) | |
| 5513 (setq ange-ftp-dumb-host-types | |
| 5514 (cons 'cms ange-ftp-dumb-host-types))) | |
| 5515 | |
| 5516 ;; Convert name from UNIX-ish to CMS ready for a DIRectory listing. | |
| 5517 (defun ange-ftp-fix-dir-name-for-cms (dir-name) | |
| 5518 (cond | |
| 5519 ((string-equal "/" dir-name) | |
| 5520 (error "Cannot get listing for fictitious \"/\" directory.")) | |
| 5521 ((string-match "^/\\([-A-Z0-9$*._]+\\)/\\([-A-Z0-9$._]+\\)?$" dir-name) | |
| 5522 (let* ((minidisk (substring dir-name (match-beginning 1) (match-end 1))) | |
| 5523 ;; host and user are bound in the call to ange-ftp-send-cmd | |
| 5524 (proc (ange-ftp-get-process ange-ftp-this-host ange-ftp-this-user)) | |
| 5525 (cmd (concat "cd " minidisk)) | |
| 5526 (file (if (match-beginning 2) | |
| 5527 ;; it's a single file | |
| 5528 (substring dir-name (match-beginning 2) | |
| 5529 (match-end 2)) | |
| 5530 ;; use the wild-card | |
| 5531 "*"))) | |
| 5532 (if (car (ange-ftp-raw-send-cmd proc cmd)) | |
| 5533 file | |
| 5534 ;; try again... | |
| 5535 (setq proc (ange-ftp-get-process ange-ftp-this-host | |
| 5536 ange-ftp-this-user)) | |
| 5537 (let ((result (ange-ftp-raw-send-cmd proc cmd))) | |
| 5538 (if (car result) | |
| 5539 file | |
| 5540 ;; give up | |
| 5541 (ange-ftp-error ange-ftp-this-host ange-ftp-this-user | |
| 5542 (format "cd to minidisk %s failed: %s" | |
| 5543 minidisk (cdr result)))))))) | |
| 5544 (t (error "Invalid CMS file name")))) | |
| 5545 | |
| 5546 (or (assq 'cms ange-ftp-fix-dir-name-func-alist) | |
| 5547 (setq ange-ftp-fix-dir-name-func-alist | |
| 5548 (cons '(cms . ange-ftp-fix-dir-name-for-cms) | |
| 5549 ange-ftp-fix-dir-name-func-alist))) | |
| 5550 | |
| 5551 (defvar ange-ftp-cms-host-regexp nil | |
| 5552 "Regular expression to match hosts running the CMS operating system.") | |
| 5553 | |
| 5554 ;; Return non-nil if HOST is running CMS. | |
| 5555 (defun ange-ftp-cms-host (host) | |
| 5556 (and ange-ftp-cms-host-regexp | |
| 5557 (save-match-data | |
| 5558 (string-match ange-ftp-cms-host-regexp host)))) | |
| 5559 | |
| 5560 (defun ange-ftp-add-cms-host (host) | |
| 5561 "Mark HOST as the name of a CMS host." | |
| 5562 (interactive | |
| 5563 (list (read-string "Host: " | |
| 5564 (let ((name (or (buffer-file-name) default-directory))) | |
| 5565 (and name (car (ange-ftp-ftp-name name))))))) | |
| 5566 (if (not (ange-ftp-cms-host host)) | |
| 5567 (setq ange-ftp-cms-host-regexp | |
| 5568 (concat "^" (regexp-quote host) "$" | |
| 5569 (and ange-ftp-cms-host-regexp "\\|") | |
| 5570 ange-ftp-cms-host-regexp) | |
| 5571 ange-ftp-host-cache nil))) | |
| 5572 | |
| 5573 (defun ange-ftp-parse-cms-listing () | |
| 5574 ;; Parse the current buffer which is assumed to be a CMS directory listing. | |
| 5575 ;; If we succeed in getting a listing, then we will assume that the minidisk | |
| 5576 ;; exists. file is bound by the call to ange-ftp-ls. This doesn't work | |
| 5577 ;; because ange-ftp doesn't know that the root hashtable has only part of | |
| 5578 ;; the info. It will assume that if a minidisk isn't in it, then it doesn't | |
| 5579 ;; exist. It would be nice if completion worked for minidisks, as we | |
| 5580 ;; discover them. | |
| 5581 ; (let* ((dir-file (directory-file-name file)) | |
| 5582 ; (root (file-name-directory dir-file)) | |
| 5583 ; (minidisk (ange-ftp-get-file-part dir-file)) | |
| 5584 ; (root-tbl (ange-ftp-get-hash-entry root ange-ftp-files-hashtable))) | |
| 5585 ; (if root-tbl | |
| 5586 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
| 5587 ; (setq root-tbl (ange-ftp-make-hashtable)) | |
| 5588 ; (ange-ftp-put-hash-entry minidisk t root-tbl) | |
| 5589 ; (ange-ftp-put-hash-entry "." t root-tbl) | |
| 5590 ; (ange-ftp-set-files root root-tbl))) | |
| 5591 ;; Now do the usual parsing | |
| 5592 (let ((tbl (ange-ftp-make-hashtable))) | |
| 5593 (goto-char (point-min)) | |
| 5594 (save-match-data | |
| 5595 (while | |
| 5596 (re-search-forward | |
| 5597 "^\\([-A-Z0-9$_]+\\) +\\([-A-Z0-9$_]+\\) +[VF] +[0-9]+ " nil t) | |
| 5598 (ange-ftp-put-hash-entry | |
| 5599 (concat (buffer-substring (match-beginning 1) | |
| 5600 (match-end 1)) | |
| 5601 "." | |
| 5602 (buffer-substring (match-beginning 2) | |
| 5603 (match-end 2))) | |
| 5604 nil tbl) | |
| 5605 (forward-line 1)) | |
| 5606 (ange-ftp-put-hash-entry "." t tbl)) | |
| 5607 tbl)) | |
| 5608 | |
| 5609 (or (assq 'cms ange-ftp-parse-list-func-alist) | |
| 5610 (setq ange-ftp-parse-list-func-alist | |
| 5611 (cons '(cms . ange-ftp-parse-cms-listing) | |
| 5612 ange-ftp-parse-list-func-alist))) | |
| 30459 | 5613 |
| 28210 | 5614 ;;;;; Tree dired support: |
| 5615 | |
| 5616 ;;(defconst ange-ftp-dired-cms-re-exe | |
| 5617 ;; "^. [-A-Z0-9$_]+ +EXEC " | |
| 5618 ;; "Regular expression to use to search for CMS executables.") | |
| 5619 | |
| 5620 ;;(or (assq 'cms ange-ftp-dired-re-exe-alist) | |
| 5621 ;; (setq ange-ftp-dired-re-exe-alist | |
| 5622 ;; (cons (cons 'cms ange-ftp-dired-cms-re-exe) | |
| 5623 ;; ange-ftp-dired-re-exe-alist))) | |
| 5624 | |
| 5625 | |
| 5626 ;;(defun ange-ftp-dired-cms-insert-headerline (dir) | |
| 5627 ;; ;; CMS has no total line, so we insert a blank line for | |
| 5628 ;; ;; aesthetics. | |
| 5629 ;; (insert "\n") | |
| 5630 ;; (forward-char -1) | |
| 5631 ;; (ange-ftp-real-dired-insert-headerline dir)) | |
| 5632 | |
| 5633 ;;(or (assq 'cms ange-ftp-dired-insert-headerline-alist) | |
| 5634 ;; (setq ange-ftp-dired-insert-headerline-alist | |
| 5635 ;; (cons '(cms . ange-ftp-dired-cms-insert-headerline) | |
| 5636 ;; ange-ftp-dired-insert-headerline-alist))) | |
| 5637 | |
| 5638 ;;(defun ange-ftp-dired-cms-move-to-filename (&optional raise-error eol) | |
| 5639 ;; "In dired, move to the first char of filename on this line." | |
| 5640 ;; ;; This is the CMS version. | |
| 5641 ;; (or eol (setq eol (progn (end-of-line) (point)))) | |
| 5642 ;; (let (case-fold-search) | |
| 5643 ;; (beginning-of-line) | |
| 5644 ;; (if (re-search-forward " [-A-Z0-9$_]+ +[-A-Z0-9$_]+ +[VF] +[0-9]+ " eol t) | |
| 5645 ;; (goto-char (1+ (match-beginning 0))) | |
| 5646 ;; (if raise-error | |
| 5647 ;; (error "No file on this line") | |
| 5648 ;; nil)))) | |
| 5649 | |
| 5650 ;;(or (assq 'cms ange-ftp-dired-move-to-filename-alist) | |
| 5651 ;; (setq ange-ftp-dired-move-to-filename-alist | |
| 5652 ;; (cons '(cms . ange-ftp-dired-cms-move-to-filename) | |
| 5653 ;; ange-ftp-dired-move-to-filename-alist))) | |
| 5654 | |
| 5655 ;;(defun ange-ftp-dired-cms-move-to-end-of-filename (&optional no-error eol) | |
| 5656 ;; ;; Assumes point is at beginning of filename. | |
| 5657 ;; ;; So, it should be called only after (dired-move-to-filename t). | |
| 5658 ;; ;; case-fold-search must be nil, at least for VMS. | |
| 5659 ;; ;; On failure, signals an error or returns nil. | |
| 5660 ;; ;; This is the CMS version. | |
| 5661 ;; (let ((opoint (point)) | |
| 5662 ;; case-fold-search hidden) | |
| 5663 ;; (or eol (setq eol (save-excursion (end-of-line) (point)))) | |
| 5664 ;; (setq hidden (and selective-display | |
| 5665 ;; (save-excursion | |
| 5666 ;; (search-forward "\r" eol t)))) | |
| 5667 ;; (if hidden | |
| 5668 ;; (if no-error | |
| 5669 ;; nil | |
| 5670 ;; (error | |
| 5671 ;; (substitute-command-keys | |
| 5672 ;; "File line is hidden, type \\[dired-hide-subdir] to unhide"))) | |
| 5673 ;; (skip-chars-forward "-A-Z0-9$_" eol) | |
| 5674 ;; (skip-chars-forward " " eol) | |
| 5675 ;; (skip-chars-forward "-A-Z0-9$_" eol) | |
| 5676 ;; (if (eq opoint (point)) | |
| 5677 ;; (if no-error | |
| 5678 ;; nil | |
| 5679 ;; (error "No file on this line")) | |
| 5680 ;; (point))))) | |
| 5681 | |
| 5682 ;;(or (assq 'cms ange-ftp-dired-move-to-end-of-filename-alist) | |
| 5683 ;; (setq ange-ftp-dired-move-to-end-of-filename-alist | |
| 5684 ;; (cons '(cms . ange-ftp-dired-cms-move-to-end-of-filename) | |
| 5685 ;; ange-ftp-dired-move-to-end-of-filename-alist))) | |
| 5686 | |
| 5687 (defun ange-ftp-cms-make-compressed-filename (name &optional reverse) | |
| 5688 (if (string-match "-Z$" name) | |
| 5689 (list nil (substring name 0 -2)) | |
| 5690 (list t (concat name "-Z")))) | |
| 5691 | |
| 5692 (or (assq 'cms ange-ftp-make-compressed-filename-alist) | |
| 5693 (setq ange-ftp-make-compressed-filename-alist | |
| 5694 (cons '(cms . ange-ftp-cms-make-compressed-filename) | |
| 5695 ange-ftp-make-compressed-filename-alist))) | |
| 5696 | |
| 5697 ;;(defun ange-ftp-dired-cms-get-filename (&optional localp no-error-if-not-filep) | |
| 5698 ;; (let ((name (ange-ftp-real-dired-get-filename localp no-error-if-not-filep))) | |
| 5699 ;; (and name | |
| 5700 ;; (if (string-match "^\\([^ ]+\\) +\\([^ ]+\\)$" name) | |
| 5701 ;; (concat (substring name 0 (match-end 1)) | |
| 5702 ;; "." | |
| 5703 ;; (substring name (match-beginning 2) (match-end 2))) | |
| 5704 ;; name)))) | |
| 5705 | |
| 5706 ;;(or (assq 'cms ange-ftp-dired-get-filename-alist) | |
| 5707 ;; (setq ange-ftp-dired-get-filename-alist | |
| 5708 ;; (cons '(cms . ange-ftp-dired-cms-get-filename) | |
| 5709 ;; ange-ftp-dired-get-filename-alist))) | |
| 5710 | |
| 5711 ;;;; ------------------------------------------------------------ | |
| 5712 ;;;; Finally provide package. | |
| 5713 ;;;; ------------------------------------------------------------ | |
| 5714 | |
| 5715 (provide 'ange-ftp) | |
| 5716 | |
| 5717 ;;; ange-ftp.el ends here |
