1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823
|
;;;; remote-ftp.jl -- Remote file access via FTP
;;; Copyright (C) 1998 John Harper <john@dcs.warwick.ac.uk>
;;; $Id: remote-ftp.jl,v 1.25 1999/11/25 23:20:27 john Exp $
;;; This file is part of Jade.
;;; Jade is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 2, or (at your option)
;;; any later version.
;;; Jade is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;; You should have received a copy of the GNU General Public License
;;; along with Jade; see the file COPYING. If not, write to
;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
;; TODO:
;; - Allow file transfer mode (binary/ascii) to be determined by
;; matching files against regexp(s)
;; - Fix all the kludges marked by XXX
(require 'remote)
(require 'mailaddr) ;for user-mail-address
(provide 'remote-ftp)
;; Configuration:
(defvar ftp-program "ftp"
"Program used for FTP sessions.")
(defvar remote-ftp-args '("-v" "-n" "-i" "-g")
"List of arguments to remote FTP sessions.")
(defvar remote-ftp-show-messages t
"When t, informational messages from FTP sessions are displayed.")
(defvar remote-ftp-max-message-lines nil
"When non-nil, the maximum number of FTP message lines to keep.")
(defvar remote-ftp-timeout 30
"Number of seconds to wait for FTP output before giving up.")
(defvar remote-ftp-max-sessions 5
"If non-nil, the maximum number of FTP clients that may be running
concurrently.")
(defvar remote-ftp-anon-users "anonymous|ftp"
"Regular expression matching user names of `anonymous' FTP sessions.")
(defvar remote-ftp-anon-passwd user-mail-address
"Password sent to anonymous FTP sessions.")
;; XXX Allow this to be set by filename?
(defvar remote-ftp-transfer-type 'binary
"Mode in which to transfer files, one of the symbols `binary' or `ascii'.")
(defvar remote-ftp-display-progress nil
"When non-nil, show progress of FTP transfers.")
(defvar remote-ftp-echo-output nil
"When t, echo all output from FTP processes. Use for debugging only.")
(defvar remote-ftp-passwd-alist nil
"Alist of (USER@HOST . PASSWD) defining all known FTP passwords.")
(defvar remote-ftp-ls-format "ls \"-la %s\""
"FTP command format string to produce an `ls -l' format listing of the
directory substituted for the single %s format specifier.")
(defvar remote-ftp-dircache-expiry-time 360
"Number of seconds before a dircache entry is reread.")
(defvar remote-ftp-dircache-max-dirs 5
"Maximum number of directories whose contents may be cached at any one
time.")
(defvar remote-ftp-sessions nil
"List of FTP structures defining all running FTP sessions.")
;; Output templates, mostly copied from ange-ftp :-)
(defvar remote-ftp-prompt-regexp "([Ff]tp> *)+"
"Regular expression matching a prompt from the FTP command (to be ignored).")
(defvar remote-ftp-multi-msgs
"220-|230-|226|25.-|221-|200-|331-|4[25]1-|530-"
"Regular expression matching the start of a multiline ftp reply.")
(defvar remote-ftp-good-msgs
"220 |230 |226 |25. |221 |200 |[Hh]ash mark"
"Regular expression matching ftp \"success\" messages.")
(defvar remote-ftp-bad-msgs
(concat "55. |500 |530 |\\?Invalid command"
"|([a-zA-Z0-9.-]+: )?[Uu]nknown host|ftp: ")
"Regular expression matching ftp \"failure\" messages.")
(defvar remote-ftp-skip-msgs
(concat "200 (PORT|Port) |331 |150 |350 |[0-9]+ bytes |"
"Connected |$|Remote system|Using| |"
"Data connection |"
"local:|Trying|125 |550-|221 .*oodbye")
"Regular expression matching ftp messages that can be ignored.")
(defvar remote-ftp-reconnect-msgs
(concat "Not connected|4[25]1 |rcmd: |"
"No control connection|"
"lost connection")
"Regular expression matching ftp messages that indicate that the current
FTP process should be abandoned, and a new session started.")
(defvar remote-ftp-passwd-msgs "[Pp]assword: *"
"Regular expression matching password prompt.")
(defvar remote-ftp-ls-l-regexp "([a-zA-Z-]+)\\s+(\\d+)\\s+(\\w+)\\s+(\\w+)\\s+(\\d+)\\s+([a-zA-Z]+\\s+\\d+\\s+[0-9:]+)\\s+([^/ \t\n]+)"
"Regexp defining `ls -l' output syntax. Hairy.")
(defvar remote-ftp-ls-l-type-alist '((?- . file) (?d . directory)
(?l . symlink) (?p . pipe) (?s . socket)
(?b . device) (?c . device))
"Alist associating characters in the first column of `ls -l' output with
file types.")
;; ftp structure
(defconst remote-ftp-host 0)
(defconst remote-ftp-user 1)
(defconst remote-ftp-process 2)
(defconst remote-ftp-status 3) ;success,failure,busy,nil,dying,timed-out
(defconst remote-ftp-callback 4)
(defconst remote-ftp-dircache 5)
(defconst remote-ftp-pending-output 6)
(defconst remote-ftp-login-data 7) ;PASSWD while logging in
(defconst remote-ftp-struct-size 8)
(defmacro remote-ftp-status-p (session stat)
`(eq (aref ,session remote-ftp-status) ,stat))
;; Return an ftp structure for HOST and USER, with a running ftp session
(defun remote-ftp-open-host (host &optional user)
(unless user
(setq user (remote-get-user host)))
(catch 'foo
(mapc (lambda (s)
(when (and (string= (aref s remote-ftp-host) host)
(string= (aref s remote-ftp-user) user))
;; Move S to the head of the list
(setq remote-ftp-sessions
(cons s (delq s remote-ftp-sessions)))
(throw 'foo s)))
remote-ftp-sessions)
;; Create a new session
(let*
((session (make-vector remote-ftp-struct-size)))
(aset session remote-ftp-host host)
(aset session remote-ftp-user user)
(remote-ftp-open-session session))))
(defun remote-ftp-open-session (session)
(let
((process (make-process (lambda (data)
(remote-ftp-output-filter session data))
'remote-ftp-sentinel
nil ftp-program
(append remote-ftp-args
(list (aref session remote-ftp-host))))))
(when (and remote-ftp-max-sessions
(> (length remote-ftp-sessions) remote-ftp-max-sessions))
;; Kill the session last used the earliest
(remote-ftp-close-session (last remote-ftp-sessions)))
(set-process-connection-type process 'pty)
(aset session remote-ftp-process process)
(aset session remote-ftp-status 'busy)
(or (start-process process)
(error "Can't start FTP session"))
(setq remote-ftp-sessions (cons session remote-ftp-sessions))
(condition-case data
(progn
(remote-ftp-connect session)
(remote-ftp-login session))
(error
(remote-ftp-close-session session)
(signal (car data) (cdr data))))
session))
(defun remote-ftp-close-session (session)
(when (and (aref session remote-ftp-process)
(process-in-use-p (aref session remote-ftp-process)))
(aset session remote-ftp-status 'dying)
(set-process-output-stream (aref session remote-ftp-process) nil)
(set-process-error-stream (aref session remote-ftp-process) nil)
(kill-process (aref session remote-ftp-process))))
(defun remote-ftp-close-host (host &optional user)
"Close the FTP subprocess connect to `USER@HOST'."
(interactive "sHost:\nsUser:")
(when (or (null user) (string= user ""))
(setq user (remote-get-user host)))
(catch 'foo
(mapc (lambda (s)
(when (and (string= (aref s remote-ftp-host) host)
(string= (aref s remote-ftp-user) user))
(remote-ftp-close-session s)
(throw 'foo t)))
remote-ftp-sessions)))
(defun remote-ftp-close-all ()
"Close all running FTP subprocesses."
(interactive)
(mapc 'remote-ftp-close-session remote-ftp-sessions))
(defun remote-ftp-get-session-by-process (process)
(catch 'return
(mapc (lambda (s)
(and (eq (aref s remote-ftp-process) process) (throw 'return s)))
remote-ftp-sessions)))
;; Communicating with ftp sessions
(defun remote-ftp-write (session fmt arg-list)
(when (remote-ftp-status-p session 'dying)
(error "FTP session is dying"))
(apply format (aref session remote-ftp-process) fmt arg-list)
(write (aref session remote-ftp-process) ?\n)
(aset session remote-ftp-status 'busy))
(defun remote-ftp-while (session status &optional type)
(when (and (not (eq status 'dying))
(remote-ftp-status-p session 'dying))
(error "FTP session is dying"))
(while (remote-ftp-status-p session status)
(when (and (process-running-p (aref session remote-ftp-process))
(accept-process-output remote-ftp-timeout))
(aset session remote-ftp-status 'timed-out)
(error "FTP process timed out (%s)" (or type "unknown")))))
(defun remote-ftp-command (session type fmt &rest args)
(let
((retry t))
(while retry
(setq retry nil)
(condition-case data
(progn
(when remote-ftp-display-progress
(message (format nil "FTP %s: " type) t))
(remote-ftp-while session 'busy type)
(remote-ftp-write session fmt args)
(remote-ftp-while session 'busy type)
(when remote-ftp-display-progress
(format t " %s" (aref session remote-ftp-status))))
(error
(when (and (string-match "transient error" (nth 1 data))
(not (eq type 'login)))
;; The session has been killed. Wait for it to die
;; totally then try to reconnect
(message (format nil "FTP: reconnecting to `%s'...\n"
(aref session remote-ftp-host)))
(remote-ftp-while session 'dying type)
(remote-ftp-open-session session)
(setq retry t)))))
(remote-ftp-error-if-unsuccessful session fmt args)))
;; Return t if successful, else signal a file-error
(defun remote-ftp-error-if-unsuccessful (session &optional fmt args)
(or (eq (aref session remote-ftp-status) 'success)
(signal 'file-error
(list 'ftp
(format nil "%s@%s"
(aref session remote-ftp-user)
(aref session remote-ftp-host))
(and fmt (apply format nil fmt args))))))
(defun remote-ftp-output-filter (session output)
(when remote-ftp-echo-output
(let
((print-escape t))
(format (stderr-file) "FTP output: %S\n" output)))
(when (aref session remote-ftp-pending-output)
(setq output (concat (aref session remote-ftp-pending-output) output))
(aset session remote-ftp-pending-output nil))
(let
((point 0)
line-end)
(while (< point (length output))
;; Skip any prompts
(when (string-looking-at remote-ftp-prompt-regexp output point)
(setq point (match-end)))
;; Look for `#' progress characters
(when (string-looking-at "#+" output point)
(setq point (match-end))
(when remote-ftp-display-progress
(write t (substring output (match-start) (match-end)))
(redisplay)))
(if (string-looking-at remote-ftp-passwd-msgs output point)
;; Send password
(progn
(remote-ftp-write
session "%s\n"
(list (if (string-match remote-ftp-anon-users
(aref session remote-ftp-user))
remote-ftp-anon-passwd
(let
((pass (remote-ftp-get-passwd
(aref session remote-ftp-user)
(aref session remote-ftp-host)
(aref session remote-ftp-login-data))))
(unless pass
(remote-ftp-close-session session)
(error "No valid password"))
(aset session remote-ftp-login-data pass)
pass))))
;; Can't be anything more?
(setq point (length output)))
(if (string-match "\n" output point)
(progn
;; At least one whole line
(setq line-end (match-end))
(cond
((string-looking-at remote-ftp-skip-msgs output point)
;; Ignore this line of output
(setq point line-end))
((string-looking-at remote-ftp-good-msgs output point)
;; Success!
(aset session remote-ftp-status 'success)
(setq point line-end))
((string-looking-at remote-ftp-bad-msgs output point)
;; Failure!
(aset session remote-ftp-status 'failure)
(setq point line-end))
((string-looking-at remote-ftp-multi-msgs output point)
;; One line of a multi-line message
(remote-ftp-show-multi output point line-end)
(setq point line-end))
((string-looking-at remote-ftp-reconnect-msgs output point)
;; Transient error. Kill the session, then try to reopen it
(remote-ftp-close-session session)
(error "FTP process had transient error"))
(t
;; Hmm. something else. If one exists invoke the callback
(when (aref session remote-ftp-callback)
(funcall (aref session remote-ftp-callback)
session output point line-end))
(setq point line-end))))
;; A partial line. Store it as pending
(aset session remote-ftp-pending-output (substring output point))
(setq point (length output)))))))
(defun remote-ftp-sentinel (process)
(let
((session (remote-ftp-get-session-by-process process)))
(unless (process-in-use-p process)
(aset session remote-ftp-process nil)
(aset session remote-ftp-dircache nil)
(aset session remote-ftp-status nil)
(aset session remote-ftp-pending-output nil)
(aset session remote-ftp-callback nil)
(setq remote-ftp-sessions (delq session remote-ftp-sessions)))))
(defun remote-ftp-show-multi (string start end)
(if (featurep 'jade)
(let
((buffer (open-buffer "*ftp messages*")))
(with-object buffer
(goto (end-of-buffer))
(insert (substring string start end))
(when (and remote-ftp-max-message-lines
(> (pos-line (end-of-buffer))
remote-ftp-max-message-lines))
(delete-area (start-of-buffer)
(backward-line remote-ftp-max-message-lines
(end-of-buffer)))))
(when remote-ftp-show-messages
(with-object (other-view)
(goto-buffer buffer)
(shrink-view-if-larger-than-buffer))))
(when remote-ftp-show-messages
(write standard-output (substring string start end)))))
;; FTP commands
;; SESSION has been started, wait for the connection to
;; succeed or fail
(defun remote-ftp-connect (session)
(remote-ftp-while session 'busy 'connect)
(remote-ftp-error-if-unsuccessful session "connect"))
;; Starts the process structure already defined in SESSION, then
;; logs in as the named user
(defun remote-ftp-login (session)
(and (remote-ftp-command session 'login "user %s"
(aref session remote-ftp-user))
(when (stringp (aref session remote-ftp-login-data))
;; The password for this session. It seemed successful
;; so store for later use
(remote-ftp-add-passwd (aref session remote-ftp-user)
(aref session remote-ftp-host)
(aref session remote-ftp-login-data))
(aset session remote-ftp-login-data nil))
(remote-ftp-command session 'login "type %s" remote-ftp-transfer-type)
;; For testing the reconnection-on-idle
;(setq remote-ftp-echo-output t)
;(remote-ftp-command session 'login "quote site idle 30")
(and remote-ftp-display-progress
(remote-ftp-command session 'login "hash"))))
(defun remote-ftp-get (session remote-file local-file)
(remote-ftp-command session 'get "get %s %s" remote-file local-file))
(defun remote-ftp-put (session local-file remote-file)
(unwind-protect
(remote-ftp-command session 'put "put %s %s" local-file remote-file)
(remote-ftp-invalidate-directory
session (file-name-directory remote-file))))
(defun remote-ftp-rm (session remote-file)
(unwind-protect
(remote-ftp-command session 'rm "delete %s" remote-file)
(remote-ftp-invalidate-directory
session (file-name-directory remote-file))))
(defun remote-ftp-mv (session old-name new-name)
(unwind-protect
(remote-ftp-command session 'mv "rename %s %s" old-name new-name)
(remote-ftp-invalidate-directory
session (file-name-directory old-name))
(remote-ftp-invalidate-directory
session (file-name-directory new-name))))
(defun remote-ftp-rmdir (session remote-dir)
(unwind-protect
(remote-ftp-command session 'rmdir "rmdir %s" remote-dir)
(remote-ftp-invalidate-directory
session (file-name-directory remote-dir))))
(defun remote-ftp-mkdir (session remote-dir)
(unwind-protect
(remote-ftp-command session 'mkdir "mkdir %s" remote-dir)
(remote-ftp-invalidate-directory
session (file-name-directory remote-dir))))
(defun remote-ftp-chmod (session mode file)
;; XXX Some FTP clients (i.e. Solaris 2.6) don't have the
;; XXX chmod command. Perhaps we could use "quote site chmod .."
;; XXX but the Solaris ftpd doesn't support this either..
(unwind-protect
(condition-case nil
(remote-ftp-command
session 'chmod "quote site chmod %o %s" mode file)
(file-error
;; Assume the chmod failed
(message (format nil "Warning: `chmod %o %s@%s:file' failed"
mode (aref session remote-ftp-user)
(aref session remote-ftp-host) file) t)
nil))
(remote-ftp-invalidate-directory
session (file-name-directory file))))
;; Directory handling/caching
(defconst remote-ftp-file-name 0)
(defconst remote-ftp-file-size 1)
(defconst remote-ftp-file-modtime 2) ;may be an unparsed string
(defconst remote-ftp-file-type 3)
(defconst remote-ftp-file-modes 4) ;nil if mode-string needs parsing
(defconst remote-ftp-file-mode-string 5)
(defconst remote-ftp-file-nlinks 6)
(defconst remote-ftp-file-user 7)
(defconst remote-ftp-file-group 8)
(defconst remote-ftp-file-symlink 9)
(defconst remote-ftp-file-struct-size 10)
(defconst remote-ftp-cache-dir 0)
(defconst remote-ftp-cache-expiry 1)
(defconst remote-ftp-cache-entries 2)
(defconst remote-ftp-cache-struct-size 3)
(defun remote-ftp-parse-ls-l (string point)
(when (string-looking-at remote-ftp-ls-l-regexp string point)
(let
((mode-string (substring string (match-start 1) (match-end 1)))
(nlinks (read-from-string (substring string
(match-start 2) (match-end 2))))
(user (substring string (match-start 3) (match-end 3)))
(group (substring string (match-start 4) (match-end 4)))
(size (read-from-string (substring string
(match-start 5) (match-end 5))))
(modtime (substring string (match-start 6) (match-end 6)))
(name (substring string (match-start 7) (match-end 7)))
symlink)
(when (string-match ".*\\s+->\\s+(\\S+)" string point)
(setq symlink (substring string (match-start 1) (match-end 1))))
(vector name size modtime (cdr (assq (aref mode-string 0)
remote-ftp-ls-l-type-alist))
nil mode-string nlinks user group symlink))))
(defun remote-ftp-file-get-modtime (file-struct)
(when (stringp (aref file-struct remote-ftp-file-modtime))
(require 'date)
(let
((date (parse-date (aref file-struct remote-ftp-file-modtime))))
(when date
(aset file-struct remote-ftp-file-modtime
(aref date date-vec-epoch-time)))))
(aref file-struct remote-ftp-file-modtime))
(defun remote-ftp-file-get-modes (file-struct)
(unless (aref file-struct remote-ftp-file-modes)
(let*
((string (aref file-struct remote-ftp-file-mode-string))
(tuple-function
(lambda (point tuple)
(+ (ash (+ (if (/= (aref string point) ?-) 4 0)
(if (/= (aref string (1+ point)) ?-) 2 0)
(if (lower-case-p (aref string (+ point 2))) 1 0))
(* tuple 3))
(if (memq (aref string (+ point 2)) '(?s ?S ?t ?T))
(ash 01000 tuple)
0)))))
(aset file-struct remote-ftp-file-modes
(+ (tuple-function 1 2)
(tuple-function 4 1)
(tuple-function 7 0)))))
(aref file-struct remote-ftp-file-modes))
(defun remote-ftp-file-owner-p (session file)
(string= (aref session remote-ftp-user)
(aref file remote-ftp-file-user)))
(defun remote-ftp-dir-cached-p (session dir)
(setq dir (directory-file-name dir))
(catch 'exit
(mapc (lambda (dir-entry)
(when (string= (aref dir-entry remote-ftp-cache-dir) dir)
(throw 'exit dir-entry)))
(aref session remote-ftp-dircache))))
(defun remote-ftp-get-file (session filename)
(let
((dir (file-name-directory filename))
(base (file-name-nondirectory filename))
entry)
(when (string= base "")
;; hack, hack
(setq base (file-name-nondirectory dir)
dir (file-name-directory dir))
(when (string= base "")
(setq base ".")))
(setq dir (directory-file-name dir))
(setq entry (remote-ftp-dir-cached-p session dir))
(if (not (and entry (time-later-p (aref entry remote-ftp-cache-expiry)
(current-time))))
(progn
;; Cache directory DIR
(when entry
(aset session remote-ftp-dircache
(delq entry (aref session remote-ftp-dircache)))
(setq entry nil))
(remote-ftp-while session 'busy 'dircache)
(when (>= (length (aref session remote-ftp-dircache))
remote-ftp-dircache-max-dirs)
;; delete the least-recently-used entry
(setcdr (nthcdr (1- (length (aref session remote-ftp-dircache)))
(aref session remote-ftp-dircache)) nil))
;; add the new (empty) entry for the directory to be read.
(setq entry
(vector dir (fix-time
(cons (car (current-time))
(+ (cdr (current-time))
remote-ftp-dircache-expiry-time))) nil))
(aset session remote-ftp-dircache
(cons entry (aref session remote-ftp-dircache)))
;; construct the callback function to have the new cache entry
;; as the first argument
(aset session remote-ftp-callback
(lambda (&rest args)
(apply
(lambda (cache-entry session output point line-end)
(let
((file-struct (remote-ftp-parse-ls-l output point)))
(when file-struct
(aset cache-entry remote-ftp-cache-entries
(cons file-struct
(aref cache-entry
remote-ftp-cache-entries))))))
entry args)))
(remote-ftp-command session 'dircache remote-ftp-ls-format dir)
(aset session remote-ftp-callback nil))
;; entry is still valid, move it to the front of the list
(aset session remote-ftp-dircache
(cons entry (delq entry (aref session remote-ftp-dircache)))))
;; ENTRY now has the valid dircache directory structure
(catch 'return
(mapc (lambda (f)
(when (string= (aref f remote-ftp-file-name) base)
(throw 'return f)))
(aref entry remote-ftp-cache-entries)))))
;; similar to remote-ftp-get-file, but symbolic links are followed
(defun remote-ftp-lookup-file (session file)
(let
((file-struct (remote-ftp-get-file session file)))
(while (and file-struct
(eq (aref file-struct remote-ftp-file-type) 'symlink))
(let
((link (aref file-struct remote-ftp-file-symlink)))
(setq file (expand-file-name link (file-name-directory file)))
(setq file-struct (remote-ftp-get-file session file))))
file-struct))
(defun remote-ftp-invalidate-directory (session directory)
(setq directory (directory-file-name directory))
(let
((entry (remote-ftp-dir-cached-p session directory)))
(when entry
(aset session remote-ftp-dircache
(delq entry (aref session remote-ftp-dircache))))))
(defun remote-ftp-empty-cache ()
"Discard all cached FTP directory entries."
(interactive)
(mapc (lambda (ses)
(aset ses remote-ftp-dircache nil)) remote-ftp-sessions))
;; Password caching
(defun remote-ftp-get-passwd (user host &optional retrying)
(let*
((joined (concat user ?@ host))
(cell (assoc joined remote-ftp-passwd-alist)))
(if cell
(cdr cell)
(pwd-prompt (concat (if retrying "Try again; p" ?P)
"assword for " joined ?:)))))
;;;###autoload
(defun remote-ftp-add-passwd (user host passwd)
"Add the string PASSWD as the password for FTP session of USER@HOST."
(interactive "sUsername:\nsHost:\nPassword for %s@%s:")
(let
((joined (concat user ?@ host)))
(catch 'foo
(mapc (lambda (cell)
(when (string= (car cell) joined)
(setcdr cell passwd)
(throw 'foo)))
remote-ftp-passwd-alist)
(setq remote-ftp-passwd-alist (cons (cons joined passwd)
remote-ftp-passwd-alist)))))
;; Backend handler
;;;###autoload
(defun remote-ftp-handler (split-name op args)
(cond
((eq op 'canonical-file-name)
;; XXX implement this by resolving symlinks
(car args))
((filep (car args))
;; Operations on file handles
(cond
((memq op '(seek-file flush-file write-buffer-contents
read-file-contents insert-file-contents))
;; Just pass these through to the underlying file
(apply (symbol-value op) (file-bound-stream (car args)) (cdr args)))
((eq op 'close-file)
;; Close the file, synchronise with the remote file if required
(let*
((file (car args))
(data (file-handler-data file))
(session (remote-ftp-open-host (nth 1 split-name)
(car split-name))))
(close-file (file-bound-stream file))
(when (memq (aref data 1) '(write append))
;; Copy the local version back to the remote fs
(remote-ftp-put session (aref data 3) (aref data 2)))
(delete-file (aref data 3))))
(t
(error "Unsupported FTP op on file-handler: %s %s" op args))))
((memq op '(read-file-contents insert-file-contents copy-file-to-local-fs))
;; Need to get the file to the local fs
(let
((local-name (if (eq op 'copy-file-to-local-fs)
(nth 1 args)
(make-temp-name)))
(session (remote-ftp-open-host (nth 1 split-name) (car split-name))))
(remote-ftp-get session (nth 2 split-name) local-name)
(unless (eq op 'copy-file-to-local-fs)
(unwind-protect
(funcall (symbol-value op) local-name)
(delete-file local-name)))
t))
((memq op '(write-buffer-contents copy-file-from-local-fs))
;; Need to get the file off the local fs
(let
((local-name (if (eq op 'copy-file-from-local-fs)
(car args)
(make-temp-name)))
(session (remote-ftp-open-host (nth 1 split-name) (car split-name))))
(unless (eq op 'copy-file-from-local-fs)
(apply (symbol-value op) local-name (cdr args)))
(unwind-protect
(remote-ftp-put session local-name (nth 2 split-name))
(unless (eq op 'copy-file-from-local-fs)
(delete-file local-name)))
t))
((eq op 'copy-file)
;; Copying on the remote fs.
;; XXX Is there a way to avoid the double transfer?
;; XXX Not for inter-session copies, anyway.
(let
((local-file (make-temp-name))
(dest-split (remote-split-filename (nth 1 args))))
(unwind-protect
(and (remote-ftp-handler split-name 'copy-file-to-local-fs
(list (car args) local-file))
(remote-ftp-handler dest-split 'copy-file-from-local-fs
(list local-file (nth 1 args))))
(and (file-exists-p local-file)
(delete-file local-file)))))
((eq op 'rename-file)
(let
((session (remote-ftp-open-host (nth 1 split-name) (car split-name)))
(dest-split (remote-split-filename (nth 1 args))))
(or (and (string= (car dest-split) (car split-name))
(string= (nth 1 dest-split) (nth 1 split-name)))
(error "Can't rename files across FTP sessions"))
(remote-ftp-mv session (nth 2 split-name) (nth 2 dest-split))))
(t
;; All functions taking a single argument
(let
((session (remote-ftp-open-host (nth 1 split-name) (car split-name)))
(file-name (nth 2 split-name)))
(cond
((eq op 'directory-files)
(let
;; XXX this assumes local/remote have same naming structure!
((dir (file-name-as-directory file-name)))
(remote-ftp-lookup-file session dir)
(mapcar (lambda (f)
(aref f remote-ftp-file-name))
(aref (remote-ftp-dir-cached-p session dir)
remote-ftp-cache-entries))))
((eq op 'delete-file)
(remote-ftp-rm session file-name))
((eq op 'delete-directory)
(remote-ftp-rmdir session file-name))
((eq op 'make-directory)
(remote-ftp-mkdir session file-name))
((eq op 'set-file-modes)
(remote-ftp-chmod session (nth 1 args) file-name))
((eq op 'open-file)
(let
((type (nth 1 args))
(local-file (make-temp-name))
local-fh)
(when (memq type '(read append))
;; Need to transfer the file initially
(remote-ftp-get session file-name local-file))
;; Open the local file
(setq local-fh (make-file-from-stream (car args)
(open-file local-file type)
'remote-file-handler))
(set-file-handler-data local-fh
(vector remote-ftp-handler
type ;access type
file-name ;remote name
local-file)) ;local copy
local-fh))
(t
(let
((file (if (eq op 'file-symlink-p)
(remote-ftp-get-file session file-name)
(remote-ftp-lookup-file session file-name))))
(cond
((eq op 'file-exists-p)
file)
((eq op 'file-regular-p)
(and file (eq (aref file remote-ftp-file-type) 'file)))
((eq op 'file-directory-p)
(and file (eq (aref file remote-ftp-file-type) 'directory)))
((eq op 'file-symlink-p)
(and file (eq (aref file remote-ftp-file-type) 'symlink)))
((eq op 'file-size)
(and file (aref file remote-ftp-file-size)))
((eq op 'file-modes)
(and file (remote-ftp-file-get-modes file)))
((eq op 'file-modes-as-string)
(and file (aref file remote-ftp-file-mode-string)))
((eq op 'file-nlinks)
(and file (aref file remote-ftp-file-nlinks)))
((eq op 'file-modtime)
(if file (remote-ftp-file-get-modtime file) (cons 0 0)))
((eq op 'file-owner-p)
(and file (remote-ftp-file-owner-p session file)))
((eq op 'file-readable-p)
(and file (/= (logand (remote-ftp-file-get-modes file)
(if (remote-ftp-file-owner-p session file)
0400 0004)) 0)))
((eq op 'file-writable-p)
(and file (/= (logand (remote-ftp-file-get-modes file)
(if (remote-ftp-file-owner-p session file)
0200 0002)) 0)))
((eq op 'read-symlink)
(and file (or (aref file remote-ftp-file-symlink)
(signal 'file-error
(list "File isn't a symlink:" split-name)))))
(t
(error "Unsupported FTP op: %s %s" op args))))))))))
;;;###autoload (put 'ftp 'remote-backend remote-ftp-handler)
(put 'ftp 'remote-backend remote-ftp-handler)
|