annotate lisp/net/tramp-cache.el @ 104785:7c703efbce29

(completion-try-completion, completion-all-completions): Remove ill-defined (and mistakenly installed and luckily never used nor documented) `completion-styles' property. (completion-initials-expand, completion-initials-all-completions) (completion-initials-try-completion): New functions. (completion-styles-alist): Add doc to each entry. Add new `initials' entry.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 01 Sep 2009 19:49:34 +0000
parents 09a9c0ad9b90
children 3b3d1d59e375
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
1 ;;; tramp-cache.el --- file information caching for Tramp
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
2
101728
0e77ae8c6b45 * net/tramp-cache.el (top): Autoload `tramp-run-real-handler'.
Michael Albinus <michael.albinus@gmx.de>
parents: 100908
diff changeset
3 ;; Copyright (C) 2000, 2005, 2006, 2007, 2008,
0e77ae8c6b45 * net/tramp-cache.el (top): Autoload `tramp-run-real-handler'.
Michael Albinus <michael.albinus@gmx.de>
parents: 100908
diff changeset
4 ;; 2009 Free Software Foundation, Inc.
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
5
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
6 ;; Author: Daniel Pittman <daniel@inanna.danann.net>
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
7 ;; Michael Albinus <michael.albinus@gmx.de>
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
8 ;; Keywords: comm, processes
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
9
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
10 ;; This file is part of GNU Emacs.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
11
94677
91e5880a36c1 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94404
diff changeset
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
13 ;; it under the terms of the GNU General Public License as published by
94677
91e5880a36c1 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94404
diff changeset
14 ;; the Free Software Foundation, either version 3 of the License, or
91e5880a36c1 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94404
diff changeset
15 ;; (at your option) any later version.
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
16
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
17 ;; GNU Emacs is distributed in the hope that it will be useful,
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
20 ;; GNU General Public License for more details.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
21
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
22 ;; You should have received a copy of the GNU General Public License
94677
91e5880a36c1 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 94404
diff changeset
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
24
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
25 ;;; Commentary:
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
26
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
27 ;; An implementation of information caching for remote files.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
28
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
29 ;; Each connection, identified by a vector [method user host
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
30 ;; localname] or by a process, has a unique cache. We distinguish 3
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
31 ;; kind of caches, depending on the key:
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
32 ;;
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
33 ;; - localname is NIL. This are reusable properties. Examples:
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
34 ;; "remote-shell" identifies the POSIX shell to be called on the
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
35 ;; remote host, or "perl" is the command to be called on the remote
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
36 ;; host, when starting a Perl script. These properties are saved in
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
37 ;; the file `tramp-persistency-file-name'.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
38 ;;
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
39 ;; - localname is a string. This are temporary properties, which are
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
40 ;; related to the file localname is referring to. Examples:
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
41 ;; "file-exists-p" is t or nile, depending on the file existence, or
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
42 ;; "file-attributes" caches the result of the function
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
43 ;; `file-attributes'.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
44 ;;
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
45 ;; - The key is a process. This are temporary properties related to
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
46 ;; an open connection. Examples: "scripts" keeps shell script
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
47 ;; definitions already sent to the remote shell, "last-cmd-time" is
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
48 ;; the time stamp a command has been sent to the remote process.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
49
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
50 ;;; Code:
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
51
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
52 ;; Pacify byte-compiler.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
53 (eval-when-compile
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
54 (require 'cl)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
55 (autoload 'tramp-message "tramp")
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
56 (autoload 'tramp-tramp-file-p "tramp")
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
57 ;; We cannot autoload macro `with-parsed-tramp-file-name', it
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
58 ;; results in problems of byte-compiled code.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
59 (autoload 'tramp-dissect-file-name "tramp")
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
60 (autoload 'tramp-file-name-method "tramp")
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
61 (autoload 'tramp-file-name-user "tramp")
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
62 (autoload 'tramp-file-name-host "tramp")
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
63 (autoload 'tramp-file-name-localname "tramp")
101728
0e77ae8c6b45 * net/tramp-cache.el (top): Autoload `tramp-run-real-handler'.
Michael Albinus <michael.albinus@gmx.de>
parents: 100908
diff changeset
64 (autoload 'tramp-run-real-handler "tramp")
104643
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
65 (autoload 'tramp-time-less-p "tramp")
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
66 (autoload 'time-stamp-string "time-stamp"))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
67
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
68 ;;; -- Cache --
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
69
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
70 (defvar tramp-cache-data (make-hash-table :test 'equal)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
71 "Hash table for remote files properties.")
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
72
104124
05be2b60df7a * net/tramp-cache.el (tramp-cache-inhibit-cache ): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 102906
diff changeset
73 (defvar tramp-cache-inhibit-cache nil
104643
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
74 "Inhibit cache read access, when `t'.
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
75 `nil' means to accept cache entries unconditionally. If the
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
76 value is a timestamp (as returned by `current-time'), cache
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
77 entries are not used when they have been written before this
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
78 time.")
104124
05be2b60df7a * net/tramp-cache.el (tramp-cache-inhibit-cache ): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 102906
diff changeset
79
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
80 (defcustom tramp-persistency-file-name
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
81 (cond
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
82 ;; GNU Emacs.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
83 ((and (boundp 'user-emacs-directory)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
84 (stringp (symbol-value 'user-emacs-directory))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
85 (file-directory-p (symbol-value 'user-emacs-directory)))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
86 (expand-file-name "tramp" (symbol-value 'user-emacs-directory)))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
87 ((and (not (featurep 'xemacs)) (file-directory-p "~/.emacs.d/"))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
88 "~/.emacs.d/tramp")
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
89 ;; XEmacs.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
90 ((and (boundp 'user-init-directory)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
91 (stringp (symbol-value 'user-init-directory))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
92 (file-directory-p (symbol-value 'user-init-directory)))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
93 (expand-file-name "tramp" (symbol-value 'user-init-directory)))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
94 ((and (featurep 'xemacs) (file-directory-p "~/.xemacs/"))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
95 "~/.xemacs/tramp")
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
96 ;; For users without `~/.emacs.d/' or `~/.xemacs/'.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
97 (t "~/.tramp"))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
98 "File which keeps connection history for Tramp connections."
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
99 :group 'tramp
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
100 :type 'file)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
101
100088
cc6585cecaaf * net/tramp-cache.el (tramp-cache-data-changed): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 97980
diff changeset
102 (defvar tramp-cache-data-changed nil
cc6585cecaaf * net/tramp-cache.el (tramp-cache-data-changed): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 97980
diff changeset
103 "Whether persistent cache data have been changed.")
cc6585cecaaf * net/tramp-cache.el (tramp-cache-data-changed): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 97980
diff changeset
104
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
105 (defun tramp-get-file-property (vec file property default)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
106 "Get the PROPERTY of FILE from the cache context of VEC.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
107 Returns DEFAULT if not set."
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
108 ;; Unify localname.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
109 (setq vec (copy-sequence vec))
94404
9ce39a6373c9 * net/tramp.el (tramp-handle-make-symbolic-link)
Michael Albinus <michael.albinus@gmx.de>
parents: 91485
diff changeset
110 (aset vec 3 (tramp-run-real-handler 'directory-file-name (list file)))
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
111 (let* ((hash (or (gethash vec tramp-cache-data)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
112 (puthash vec (make-hash-table :test 'equal)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
113 tramp-cache-data)))
104643
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
114 (value (when (hash-table-p hash) (gethash property hash))))
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
115 (if
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
116 ;; We take the value only if there is any, and
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
117 ;; `tramp-cache-inhibit-cache' indicates that it is still
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
118 ;; valid. Otherwise, DEFAULT is set.
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
119 (and (consp value)
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
120 (or (null tramp-cache-inhibit-cache)
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
121 (and (consp tramp-cache-inhibit-cache)
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
122 (tramp-time-less-p
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
123 tramp-cache-inhibit-cache (car value)))))
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
124 (setq value (cdr value))
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
125 (setq value default))
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
126
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
127 (if (consp tramp-cache-inhibit-cache)
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
128 (tramp-message vec 1 "%s %s %s" file property value))
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
129 (tramp-message vec 8 "%s %s %s" file property value)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
130 value))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
131
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
132 (defun tramp-set-file-property (vec file property value)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
133 "Set the PROPERTY of FILE to VALUE, in the cache context of VEC.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
134 Returns VALUE."
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
135 ;; Unify localname.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
136 (setq vec (copy-sequence vec))
94404
9ce39a6373c9 * net/tramp.el (tramp-handle-make-symbolic-link)
Michael Albinus <michael.albinus@gmx.de>
parents: 91485
diff changeset
137 (aset vec 3 (tramp-run-real-handler 'directory-file-name (list file)))
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
138 (let ((hash (or (gethash vec tramp-cache-data)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
139 (puthash vec (make-hash-table :test 'equal)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
140 tramp-cache-data))))
104643
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
141 ;; We put the timestamp there.
09a9c0ad9b90 * net/tramp-cache.el (top): Autoload `tramp-time-less-p'.
Michael Albinus <michael.albinus@gmx.de>
parents: 104124
diff changeset
142 (puthash property (cons (current-time) value) hash)
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
143 (tramp-message vec 8 "%s %s %s" file property value)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
144 value))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
145
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
146 (defun tramp-flush-file-property (vec file)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
147 "Remove all properties of FILE in the cache context of VEC."
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
148 ;; Unify localname.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
149 (setq vec (copy-sequence vec))
94404
9ce39a6373c9 * net/tramp.el (tramp-handle-make-symbolic-link)
Michael Albinus <michael.albinus@gmx.de>
parents: 91485
diff changeset
150 (aset vec 3 (tramp-run-real-handler 'directory-file-name (list file)))
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
151 (tramp-message vec 8 "%s" file)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
152 (remhash vec tramp-cache-data))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
153
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
154 (defun tramp-flush-directory-property (vec directory)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
155 "Remove all properties of DIRECTORY in the cache context of VEC.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
156 Remove also properties of all files in subdirectories."
94404
9ce39a6373c9 * net/tramp.el (tramp-handle-make-symbolic-link)
Michael Albinus <michael.albinus@gmx.de>
parents: 91485
diff changeset
157 (let ((directory (tramp-run-real-handler
9ce39a6373c9 * net/tramp.el (tramp-handle-make-symbolic-link)
Michael Albinus <michael.albinus@gmx.de>
parents: 91485
diff changeset
158 'directory-file-name (list directory))))
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
159 (tramp-message vec 8 "%s" directory)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
160 (maphash
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
161 '(lambda (key value)
102906
dafde9e3d72b * tramp-cache.el (tramp-flush-directory-property): Use the
Michael Albinus <michael.albinus@gmx.de>
parents: 101728
diff changeset
162 (when (and (stringp (tramp-file-name-localname key))
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
163 (string-match directory (tramp-file-name-localname key)))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
164 (remhash key tramp-cache-data)))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
165 tramp-cache-data)))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
166
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
167 ;; Reverting or killing a buffer should also flush file properties.
85802
a69014d11d95 * net/tramp.el (tramp-maybe-open-connection): Set $LC_ALL to "C".
Michael Albinus <michael.albinus@gmx.de>
parents: 84966
diff changeset
168 ;; They could have been changed outside Tramp. In eshell, "ls" would
a69014d11d95 * net/tramp.el (tramp-maybe-open-connection): Set $LC_ALL to "C".
Michael Albinus <michael.albinus@gmx.de>
parents: 84966
diff changeset
169 ;; not show proper directory contents when a file has been copied or
a69014d11d95 * net/tramp.el (tramp-maybe-open-connection): Set $LC_ALL to "C".
Michael Albinus <michael.albinus@gmx.de>
parents: 84966
diff changeset
170 ;; deleted before.
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
171 (defun tramp-flush-file-function ()
97980
2570e504f856 * net/tramp-cache.el (tramp-flush-file-function): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 94677
diff changeset
172 "Flush all Tramp cache properties from `buffer-file-name'."
85802
a69014d11d95 * net/tramp.el (tramp-maybe-open-connection): Set $LC_ALL to "C".
Michael Albinus <michael.albinus@gmx.de>
parents: 84966
diff changeset
173 (let ((bfn (if (stringp (buffer-file-name))
a69014d11d95 * net/tramp.el (tramp-maybe-open-connection): Set $LC_ALL to "C".
Michael Albinus <michael.albinus@gmx.de>
parents: 84966
diff changeset
174 (buffer-file-name)
a69014d11d95 * net/tramp.el (tramp-maybe-open-connection): Set $LC_ALL to "C".
Michael Albinus <michael.albinus@gmx.de>
parents: 84966
diff changeset
175 default-directory)))
a69014d11d95 * net/tramp.el (tramp-maybe-open-connection): Set $LC_ALL to "C".
Michael Albinus <michael.albinus@gmx.de>
parents: 84966
diff changeset
176 (when (tramp-tramp-file-p bfn)
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
177 (let* ((v (tramp-dissect-file-name bfn))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
178 (localname (tramp-file-name-localname v)))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
179 (tramp-flush-file-property v localname)))))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
180
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
181 (add-hook 'before-revert-hook 'tramp-flush-file-function)
85802
a69014d11d95 * net/tramp.el (tramp-maybe-open-connection): Set $LC_ALL to "C".
Michael Albinus <michael.albinus@gmx.de>
parents: 84966
diff changeset
182 (add-hook 'eshell-pre-command-hook 'tramp-flush-file-function)
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
183 (add-hook 'kill-buffer-hook 'tramp-flush-file-function)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
184 (add-hook 'tramp-cache-unload-hook
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
185 '(lambda ()
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
186 (remove-hook 'before-revert-hook
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
187 'tramp-flush-file-function)
85802
a69014d11d95 * net/tramp.el (tramp-maybe-open-connection): Set $LC_ALL to "C".
Michael Albinus <michael.albinus@gmx.de>
parents: 84966
diff changeset
188 (remove-hook 'eshell-pre-command-hook
a69014d11d95 * net/tramp.el (tramp-maybe-open-connection): Set $LC_ALL to "C".
Michael Albinus <michael.albinus@gmx.de>
parents: 84966
diff changeset
189 'tramp-flush-file-function)
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
190 (remove-hook 'kill-buffer-hook
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
191 'tramp-flush-file-function)))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
192
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
193 ;;; -- Properties --
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
194
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
195 (defun tramp-get-connection-property (key property default)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
196 "Get the named PROPERTY for the connection.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
197 KEY identifies the connection, it is either a process or a vector.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
198 If the value is not set for the connection, returns DEFAULT."
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
199 ;; Unify key by removing localname from vector. Work with a copy in
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
200 ;; order to avoid side effects.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
201 (when (vectorp key)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
202 (setq key (copy-sequence key))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
203 (aset key 3 nil))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
204 (let* ((hash (gethash key tramp-cache-data))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
205 (value (if (hash-table-p hash)
104124
05be2b60df7a * net/tramp-cache.el (tramp-cache-inhibit-cache ): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 102906
diff changeset
206 (gethash property hash default)
05be2b60df7a * net/tramp-cache.el (tramp-cache-inhibit-cache ): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 102906
diff changeset
207 default)))
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
208 (tramp-message key 7 "%s %s" property value)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
209 value))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
210
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
211 (defun tramp-set-connection-property (key property value)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
212 "Set the named PROPERTY of a connection to VALUE.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
213 KEY identifies the connection, it is either a process or a vector.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
214 PROPERTY is set persistent when KEY is a vector."
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
215 ;; Unify key by removing localname from vector. Work with a copy in
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
216 ;; order to avoid side effects.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
217 (when (vectorp key)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
218 (setq key (copy-sequence key))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
219 (aset key 3 nil))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
220 (let ((hash (or (gethash key tramp-cache-data)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
221 (puthash key (make-hash-table :test 'equal)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
222 tramp-cache-data))))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
223 (puthash property value hash)
100088
cc6585cecaaf * net/tramp-cache.el (tramp-cache-data-changed): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 97980
diff changeset
224 (setq tramp-cache-data-changed t)
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
225 ;; This function is called also during initialization of
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
226 ;; tramp-cache.el. `tramp-message´ is not defined yet at this
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
227 ;; time, so we ignore the corresponding error.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
228 (condition-case nil
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
229 (tramp-message key 7 "%s %s" property value)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
230 (error nil))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
231 value))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
232
91485
202f9737703b * net/tramp-cache.el (tramp-flush-connection-property): Remove EVENT.
Michael Albinus <michael.albinus@gmx.de>
parents: 87747
diff changeset
233 (defun tramp-flush-connection-property (key)
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
234 "Remove all properties identified by KEY.
91485
202f9737703b * net/tramp-cache.el (tramp-flush-connection-property): Remove EVENT.
Michael Albinus <michael.albinus@gmx.de>
parents: 87747
diff changeset
235 KEY identifies the connection, it is either a process or a vector."
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
236 ;; Unify key by removing localname from vector. Work with a copy in
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
237 ;; order to avoid side effects.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
238 (when (vectorp key)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
239 (setq key (copy-sequence key))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
240 (aset key 3 nil))
100088
cc6585cecaaf * net/tramp-cache.el (tramp-cache-data-changed): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 97980
diff changeset
241 (setq tramp-cache-data-changed t)
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
242 (remhash key tramp-cache-data))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
243
85943
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
244 (defun tramp-cache-print (table)
85962
7f134b676a0c * net/tramp.el (tramp-handle-substitute-in-file-name): Don't
Michael Albinus <michael.albinus@gmx.de>
parents: 85943
diff changeset
245 "Print hash table TABLE."
85943
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
246 (when (hash-table-p table)
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
247 (let (result)
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
248 (maphash
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
249 '(lambda (key value)
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
250 (let ((tmp (format
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
251 "(%s %s)"
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
252 (if (processp key)
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
253 (prin1-to-string (prin1-to-string key))
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
254 (prin1-to-string key))
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
255 (if (hash-table-p value)
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
256 (tramp-cache-print value)
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
257 (if (bufferp value)
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
258 (prin1-to-string (prin1-to-string value))
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
259 (prin1-to-string value))))))
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
260 (setq result (if result (concat result " " tmp) tmp))))
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
261 table)
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
262 result)))
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
263
85962
7f134b676a0c * net/tramp.el (tramp-handle-substitute-in-file-name): Don't
Michael Albinus <michael.albinus@gmx.de>
parents: 85943
diff changeset
264 (defun tramp-list-connections ()
7f134b676a0c * net/tramp.el (tramp-handle-substitute-in-file-name): Don't
Michael Albinus <michael.albinus@gmx.de>
parents: 85943
diff changeset
265 "Return a list of all known connection vectors according to `tramp-cache'."
85943
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
266 (let (result)
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
267 (maphash
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
268 '(lambda (key value)
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
269 (when (and (vectorp key) (null (aref key 3)))
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
270 (add-to-list 'result key)))
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
271 tramp-cache-data)
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
272 result))
85b6f7d4aca8 * net/tramp.el (top): Don't autoload `tramp-cache-print'.
Michael Albinus <michael.albinus@gmx.de>
parents: 85802
diff changeset
273
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
274 (defun tramp-dump-connection-properties ()
85962
7f134b676a0c * net/tramp.el (tramp-handle-substitute-in-file-name): Don't
Michael Albinus <michael.albinus@gmx.de>
parents: 85943
diff changeset
275 "Write persistent connection properties into file `tramp-persistency-file-name'."
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
276 ;; We shouldn't fail, otherwise (X)Emacs might not be able to be closed.
100215
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
277 (condition-case nil
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
278 (when (and (hash-table-p tramp-cache-data)
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
279 (not (zerop (hash-table-count tramp-cache-data)))
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
280 tramp-cache-data-changed
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
281 (stringp tramp-persistency-file-name))
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
282 (let ((cache (copy-hash-table tramp-cache-data)))
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
283 ;; Remove temporary data.
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
284 (maphash
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
285 '(lambda (key value)
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
286 (if (and (vectorp key) (not (tramp-file-name-localname key)))
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
287 (progn
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
288 (remhash "process-name" value)
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
289 (remhash "process-buffer" value))
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
290 (remhash key cache)))
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
291 cache)
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
292 ;; Dump it.
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
293 (with-temp-buffer
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
294 (insert
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
295 ";; -*- emacs-lisp -*-"
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
296 ;; `time-stamp-string' might not exist in all (X)Emacs flavors.
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
297 (condition-case nil
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
298 (progn
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
299 (format
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
300 " <%s %s>\n"
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
301 (time-stamp-string "%02y/%02m/%02d %02H:%02M:%02S")
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
302 tramp-persistency-file-name))
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
303 (error "\n"))
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
304 ";; Tramp connection history. Don't change this file.\n"
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
305 ";; You can delete it, forcing Tramp to reapply the checks.\n\n"
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
306 (with-output-to-string
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
307 (pp (read (format "(%s)" (tramp-cache-print cache))))))
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
308 (write-region
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
309 (point-min) (point-max) tramp-persistency-file-name))))
41af808a3cfa * net/tramp-cache.el (tramp-dump-connection-properties): Polish
Michael Albinus <michael.albinus@gmx.de>
parents: 100088
diff changeset
310 (error nil)))
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
311
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
312 (add-hook 'kill-emacs-hook 'tramp-dump-connection-properties)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
313 (add-hook 'tramp-cache-unload-hook
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
314 '(lambda ()
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
315 (remove-hook 'kill-emacs-hook
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
316 'tramp-dump-connection-properties)))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
317
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
318 (defun tramp-parse-connection-properties (method)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
319 "Return a list of (user host) tuples allowed to access for METHOD.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
320 This function is added always in `tramp-get-completion-function'
97980
2570e504f856 * net/tramp-cache.el (tramp-flush-file-function): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 94677
diff changeset
321 for all methods. Resulting data are derived from connection history."
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
322 (let (res)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
323 (maphash
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
324 '(lambda (key value)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
325 (if (and (vectorp key)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
326 (string-equal method (tramp-file-name-method key))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
327 (not (tramp-file-name-localname key)))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
328 (push (list (tramp-file-name-user key)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
329 (tramp-file-name-host key))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
330 res)))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
331 tramp-cache-data)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
332 res))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
333
82324
5399c02bfd07 * net/tramp.el (tramp-wrong-passwd-regexp): Make the regexp more
Michael Albinus <michael.albinus@gmx.de>
parents: 82201
diff changeset
334 ;; Read persistent connection history.
84406
38bcf4ef30c3 * net/tramp.el (top): Remove declarations of `tramp-gw-*' symbols,
Michael Albinus <michael.albinus@gmx.de>
parents: 82324
diff changeset
335 (when (and (stringp tramp-persistency-file-name)
38bcf4ef30c3 * net/tramp.el (top): Remove declarations of `tramp-gw-*' symbols,
Michael Albinus <michael.albinus@gmx.de>
parents: 82324
diff changeset
336 (zerop (hash-table-count tramp-cache-data)))
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
337 (condition-case err
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
338 (with-temp-buffer
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
339 (insert-file-contents tramp-persistency-file-name)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
340 (let ((list (read (current-buffer)))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
341 element key item)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
342 (while (setq element (pop list))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
343 (setq key (pop element))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
344 (while (setq item (pop element))
100088
cc6585cecaaf * net/tramp-cache.el (tramp-cache-data-changed): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 97980
diff changeset
345 (tramp-set-connection-property key (pop item) (car item)))))
cc6585cecaaf * net/tramp-cache.el (tramp-cache-data-changed): New defvar.
Michael Albinus <michael.albinus@gmx.de>
parents: 97980
diff changeset
346 (setq tramp-cache-data-changed nil))
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
347 (file-error
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
348 ;; Most likely because the file doesn't exist yet. No message.
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
349 (clrhash tramp-cache-data))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
350 (error
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
351 ;; File is corrupted.
84406
38bcf4ef30c3 * net/tramp.el (top): Remove declarations of `tramp-gw-*' symbols,
Michael Albinus <michael.albinus@gmx.de>
parents: 82324
diff changeset
352 (message "Tramp persistency file '%s' is corrupted: %s"
38bcf4ef30c3 * net/tramp.el (top): Remove declarations of `tramp-gw-*' symbols,
Michael Albinus <michael.albinus@gmx.de>
parents: 82324
diff changeset
353 tramp-persistency-file-name (error-message-string err))
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
354 (clrhash tramp-cache-data))))
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
355
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
356 (provide 'tramp-cache)
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
357
81769
44b53335982a Add arch tagline
Miles Bader <miles@gnu.org>
parents: 81758
diff changeset
358 ;; arch-tag: ee1739b7-7628-408c-9b96-d11a74b05d26
81758
f03856eb136b * files.el (file-remote-p): Introduce optional parameter CONNECTED.
Michael Albinus <michael.albinus@gmx.de>
parents:
diff changeset
359 ;;; tramp-cache.el ends here