Mercurial > emacs
annotate lisp/net/tramp-vc.el @ 66934:f24fb79ea180
(savehist-mode-hook): Re-add the var.
(savehist-mode): Use it.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 16 Nov 2005 17:20:25 +0000 |
parents | 34bd8e434dd7 |
children | 118ceefc8263 edf295560b5a |
rev | line source |
---|---|
45861 | 1 ;;; tramp-vc.el --- Version control integration for TRAMP.el |
2 | |
64701
34bd8e434dd7
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, |
34bd8e434dd7
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64085
diff
changeset
|
4 ;; 2005 Free Software Foundation, Inc. |
45861 | 5 |
6 ;; Author: Daniel Pittman <daniel@danann.net> | |
7 ;; Keywords: comm, processes | |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64085 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
45861 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;; See the main module, 'tramp.el' for discussion of the purpose of TRAMP. | |
29 ;; This module provides integration between remote files accessed by TRAMP and | |
30 ;; the Emacs version control system. | |
31 | |
32 ;;; Code: | |
33 | |
34 (eval-when-compile | |
35 (require 'cl)) | |
36 (require 'vc) | |
37 ;; Old VC defines vc-rcs-release in vc.el, new VC requires extra module. | |
38 (unless (boundp 'vc-rcs-release) | |
39 (require 'vc-rcs)) | |
40 (require 'tramp) | |
41 | |
55420
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
42 ;; Avoid byte-compiler warnings if the byte-compiler supports this. |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
43 ;; Currently, XEmacs supports this. |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
44 (eval-when-compile |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
45 (when (fboundp 'byte-compiler-options) |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
46 (let (unused-vars) ; Pacify Emacs byte-compiler |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
47 (defalias 'warnings 'identity) ; Pacify Emacs byte-compiler |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
48 (byte-compiler-options (warnings (- unused-vars)))))) |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
49 |
45861 | 50 ;; -- vc -- |
51 | |
52 ;; This used to blow away the file-name-handler-alist and reinstall | |
53 ;; TRAMP into it. This was intended to let VC work remotely. It didn't, | |
54 ;; at least not in my XEmacs 21.2 install. | |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59582
diff
changeset
|
55 ;; |
45861 | 56 ;; In any case, tramp-run-real-handler now deals correctly with disabling |
57 ;; the things that should be, making this a no-op. | |
58 ;; | |
59 ;; I have removed it from the tramp-file-name-handler-alist because the | |
60 ;; shortened version does nothing. This is for reference only now. | |
61 ;; | |
62 ;; Daniel Pittman <daniel@danann.net> | |
63 ;; | |
64 ;; (defun tramp-handle-vc-registered (file) | |
65 ;; "Like `vc-registered' for tramp files." | |
66 ;; (tramp-run-real-handler 'vc-registered (list file))) | |
67 | |
68 ;; `vc-do-command' | |
69 ;; This function does not deal well with remote files, so we define | |
70 ;; our own version and make a backup of the original function and | |
71 ;; call our version for tramp files and the original version for | |
72 ;; normal files. | |
73 | |
74 ;; The following function is pretty much copied from vc.el, but | |
75 ;; the part that actually executes a command is changed. | |
76 ;; CCC: this probably works for Emacs 21, too. | |
77 (defun tramp-vc-do-command (buffer okstatus command file last &rest flags) | |
78 "Like `vc-do-command' but invoked for tramp files. | |
79 See `vc-do-command' for more information." | |
80 (save-match-data | |
56460
9459300bf43b
Sync with Tramp 2.0.43.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
55420
diff
changeset
|
81 (and file (setq file (expand-file-name file))) |
45861 | 82 (if (not buffer) (setq buffer "*vc*")) |
83 (if vc-command-messages | |
84 (message "Running `%s' on `%s'..." command file)) | |
85 (let ((obuf (current-buffer)) (camefrom (current-buffer)) | |
86 (squeezed nil) | |
87 (olddir default-directory) | |
88 vc-file status) | |
56460
9459300bf43b
Sync with Tramp 2.0.43.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
55420
diff
changeset
|
89 (let* ((v (tramp-dissect-file-name (expand-file-name file))) |
45861 | 90 (multi-method (tramp-file-name-multi-method v)) |
91 (method (tramp-file-name-method v)) | |
92 (user (tramp-file-name-user v)) | |
93 (host (tramp-file-name-host v)) | |
49995
a0e8a85259ed
Version 2.0.30 released.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49598
diff
changeset
|
94 (localname (tramp-file-name-localname v))) |
45861 | 95 (set-buffer (get-buffer-create buffer)) |
96 (set (make-local-variable 'vc-parent-buffer) camefrom) | |
97 (set (make-local-variable 'vc-parent-buffer-name) | |
98 (concat " from " (buffer-name camefrom))) | |
99 (setq default-directory olddir) | |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59582
diff
changeset
|
100 |
45861 | 101 (erase-buffer) |
102 | |
103 (mapcar | |
104 (function | |
105 (lambda (s) (and s (setq squeezed (append squeezed (list s)))))) | |
106 flags) | |
107 (if (and (eq last 'MASTER) file | |
108 (setq vc-file (vc-name file))) | |
109 (setq squeezed | |
110 (append squeezed | |
49995
a0e8a85259ed
Version 2.0.30 released.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49598
diff
changeset
|
111 (list (tramp-file-name-localname |
45861 | 112 (tramp-dissect-file-name vc-file)))))) |
113 (if (and file (eq last 'WORKFILE)) | |
114 (progn | |
115 (let* ((pwd (expand-file-name default-directory)) | |
116 (preflen (length pwd))) | |
117 (if (string= (substring file 0 preflen) pwd) | |
118 (setq file (substring file preflen)))) | |
119 (setq squeezed (append squeezed (list file))))) | |
120 ;; Unless we (save-window-excursion) the layout of windows in | |
121 ;; the current frame changes. This is painful, at best. | |
122 ;; | |
123 ;; As a point of note, (save-excursion) is still here only because | |
124 ;; it preserves (point) in the current buffer. (save-window-excursion) | |
125 ;; does not, at least under XEmacs 21.2. | |
126 ;; | |
127 ;; I trust that the FSF support this as well. I can't find useful | |
128 ;; documentation to check :( | |
129 ;; | |
130 ;; Daniel Pittman <daniel@danann.net> | |
131 (save-excursion | |
132 (save-window-excursion | |
133 ;; Actually execute remote command | |
59582
92796330257a
Sync with Tramp 2.0.47.
Michael Albinus <michael.albinus@gmx.de>
parents:
57653
diff
changeset
|
134 ;; `shell-command' cannot be used; it isn't magic in XEmacs. |
92796330257a
Sync with Tramp 2.0.47.
Michael Albinus <michael.albinus@gmx.de>
parents:
57653
diff
changeset
|
135 (tramp-handle-shell-command |
45861 | 136 (mapconcat 'tramp-shell-quote-argument |
137 (cons command squeezed) " ") t) | |
138 ;;(tramp-wait-for-output) | |
139 ;; Get status from command | |
140 (tramp-send-command multi-method method user host "echo $?") | |
141 (tramp-wait-for-output) | |
142 ;; Make sure to get status from last line of output. | |
143 (goto-char (point-max)) (forward-line -1) | |
144 (setq status (read (current-buffer))) | |
145 (message "Command %s returned status %d." command status))) | |
146 (goto-char (point-max)) | |
147 (set-buffer-modified-p nil) | |
148 (forward-line -1) | |
48973
09acf3f65bb5
* net/tramp*.el: Sync with upstream version 2.0.28. Bugfixes.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
45861
diff
changeset
|
149 (if (or (not (integerp status)) |
09acf3f65bb5
* net/tramp*.el: Sync with upstream version 2.0.28. Bugfixes.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
45861
diff
changeset
|
150 (and (integerp okstatus) (< okstatus status))) |
45861 | 151 (progn |
152 (pop-to-buffer buffer) | |
153 (goto-char (point-min)) | |
154 (shrink-window-if-larger-than-buffer) | |
155 (error "Running `%s'...FAILED (%s)" command | |
156 (if (integerp status) | |
157 (format "status %d" status) | |
158 status)) | |
159 ) | |
160 (if vc-command-messages | |
161 (message "Running %s...OK" command)) | |
162 ) | |
163 (set-buffer obuf) | |
164 status)) | |
165 )) | |
166 | |
167 ;; Following code snarfed from Emacs 21 vc.el and slightly tweaked. | |
168 (defun tramp-vc-do-command-new (buffer okstatus command file &rest flags) | |
169 "Like `vc-do-command' but for TRAMP files. | |
170 This function is for the new VC which comes with Emacs 21. | |
171 Since TRAMP doesn't do async commands yet, this function doesn't, either." | |
172 (and file (setq file (expand-file-name file))) | |
173 (if vc-command-messages | |
174 (message "Running %s on %s..." command file)) | |
175 (save-current-buffer | |
55420
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
176 (unless (eq buffer t) |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
177 ; Pacify byte-compiler |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
178 (funcall (symbol-function 'vc-setup-buffer) buffer)) |
45861 | 179 (let ((squeezed nil) |
180 (inhibit-read-only t) | |
181 (status 0)) | |
182 (let* ((v (when file (tramp-dissect-file-name file))) | |
183 (multi-method (when file (tramp-file-name-multi-method v))) | |
184 (method (when file (tramp-file-name-method v))) | |
185 (user (when file (tramp-file-name-user v))) | |
186 (host (when file (tramp-file-name-host v))) | |
49995
a0e8a85259ed
Version 2.0.30 released.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49598
diff
changeset
|
187 (localname (when file (tramp-file-name-localname v)))) |
45861 | 188 (setq squeezed (delq nil (copy-sequence flags))) |
189 (when file | |
48973
09acf3f65bb5
* net/tramp*.el: Sync with upstream version 2.0.28. Bugfixes.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
45861
diff
changeset
|
190 (setq squeezed (append squeezed (list (file-relative-name |
09acf3f65bb5
* net/tramp*.el: Sync with upstream version 2.0.28. Bugfixes.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
45861
diff
changeset
|
191 file default-directory))))) |
45861 | 192 (let ((w32-quote-process-args t)) |
193 (when (eq okstatus 'async) | |
194 (message "Tramp doesn't do async commands, running synchronously.")) | |
59582
92796330257a
Sync with Tramp 2.0.47.
Michael Albinus <michael.albinus@gmx.de>
parents:
57653
diff
changeset
|
195 ;; `shell-command' cannot be used; it isn't magic in XEmacs. |
92796330257a
Sync with Tramp 2.0.47.
Michael Albinus <michael.albinus@gmx.de>
parents:
57653
diff
changeset
|
196 (setq status (tramp-handle-shell-command |
45861 | 197 (mapconcat 'tramp-shell-quote-argument |
198 (cons command squeezed) " ") t)) | |
48973
09acf3f65bb5
* net/tramp*.el: Sync with upstream version 2.0.28. Bugfixes.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
45861
diff
changeset
|
199 (when (or (not (integerp status)) |
09acf3f65bb5
* net/tramp*.el: Sync with upstream version 2.0.28. Bugfixes.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
45861
diff
changeset
|
200 (and (integerp okstatus) (< okstatus status))) |
45861 | 201 (pop-to-buffer (current-buffer)) |
202 (goto-char (point-min)) | |
203 (shrink-window-if-larger-than-buffer) | |
204 (error "Running %s...FAILED (%s)" command | |
205 (if (integerp status) (format "status %d" status) status)))) | |
206 (if vc-command-messages | |
207 (message "Running %s...OK" command)) | |
55420
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
208 ; Pacify byte-compiler |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
209 (funcall (symbol-function 'vc-exec-after) |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
210 `(run-hook-with-args |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
211 'vc-post-command-functions ',command ',localname ',flags)) |
45861 | 212 status)))) |
213 | |
214 | |
215 ;; The context for a VC command is the current buffer. | |
216 ;; That makes a test on the buffers file more reliable than a test on the | |
217 ;; arguments. | |
218 ;; This is needed to handle remote VC correctly - else we test against the | |
219 ;; local VC system and get things wrong... | |
220 ;; Daniel Pittman <daniel@danann.net> | |
221 ;;-(if (fboundp 'vc-call-backend) | |
222 ;;- () ;; This is the new VC for which we don't have an appropriate advice yet | |
57653
b324ca4df07c
* simple.el (process-file): New function, similar to call-process
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
56460
diff
changeset
|
223 (unless (fboundp 'process-file) |
45861 | 224 (if (fboundp 'vc-call-backend) |
225 (defadvice vc-do-command | |
226 (around tramp-advice-vc-do-command | |
227 (buffer okstatus command file &rest flags) | |
228 activate) | |
229 "Invoke tramp-vc-do-command for tramp files." | |
230 (let ((file (symbol-value 'file))) ;pacify byte-compiler | |
231 (if (or (and (stringp file) (tramp-tramp-file-p file)) | |
232 (and (buffer-file-name) (tramp-tramp-file-p (buffer-file-name)))) | |
233 (setq ad-return-value | |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59582
diff
changeset
|
234 (apply 'tramp-vc-do-command-new buffer okstatus command |
45861 | 235 file ;(or file (buffer-file-name)) |
236 flags)) | |
237 ad-do-it))) | |
238 (defadvice vc-do-command | |
239 (around tramp-advice-vc-do-command | |
240 (buffer okstatus command file last &rest flags) | |
241 activate) | |
242 "Invoke tramp-vc-do-command for tramp files." | |
243 (let ((file (symbol-value 'file))) ;pacify byte-compiler | |
244 (if (or (and (stringp file) (tramp-tramp-file-p file)) | |
245 (and (buffer-file-name) (tramp-tramp-file-p (buffer-file-name)))) | |
246 (setq ad-return-value | |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59582
diff
changeset
|
247 (apply 'tramp-vc-do-command buffer okstatus command |
45861 | 248 (or file (buffer-file-name)) last flags)) |
57653
b324ca4df07c
* simple.el (process-file): New function, similar to call-process
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
56460
diff
changeset
|
249 ad-do-it))))) |
45861 | 250 ;;-) |
251 | |
252 | |
253 ;; XEmacs uses this to do some of its work. Like vc-do-command, we | |
254 ;; need to enhance it to make VC work via TRAMP-mode. | |
255 ;; | |
256 ;; Like the previous function, this is a cut-and-paste job from the VC | |
257 ;; file. It's based on the vc-do-command code. | |
258 ;; CCC: this isn't used in Emacs 21, so do as before. | |
259 (defun tramp-vc-simple-command (okstatus command file &rest args) | |
260 ;; Simple version of vc-do-command, for use in vc-hooks only. | |
261 ;; Don't switch to the *vc-info* buffer before running the | |
262 ;; command, because that would change its default directory | |
263 (save-match-data | |
56460
9459300bf43b
Sync with Tramp 2.0.43.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
55420
diff
changeset
|
264 (let* ((v (tramp-dissect-file-name (expand-file-name file))) |
45861 | 265 (multi-method (tramp-file-name-multi-method v)) |
266 (method (tramp-file-name-method v)) | |
267 (user (tramp-file-name-user v)) | |
268 (host (tramp-file-name-host v)) | |
49995
a0e8a85259ed
Version 2.0.30 released.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49598
diff
changeset
|
269 (localname (tramp-file-name-localname v))) |
45861 | 270 (save-excursion (set-buffer (get-buffer-create "*vc-info*")) |
271 (erase-buffer)) | |
272 (let ((exec-path (append vc-path exec-path)) exec-status | |
273 ;; Add vc-path to PATH for the execution of this command. | |
274 (process-environment | |
275 (cons (concat "PATH=" (getenv "PATH") | |
276 path-separator | |
277 (mapconcat 'identity vc-path path-separator)) | |
278 process-environment))) | |
279 ;; Call the actual process. See tramp-vc-do-command for discussion of | |
280 ;; why this does both (save-window-excursion) and (save-excursion). | |
281 ;; | |
282 ;; As a note, I don't think that the process-environment stuff above | |
283 ;; has any effect on the remote system. This is a hard one though as | |
284 ;; there is no real reason to expect local and remote paths to be | |
285 ;; identical... | |
286 ;; | |
287 ;; Daniel Pittman <daniel@danann.net> | |
288 (save-excursion | |
289 (save-window-excursion | |
290 ;; Actually execute remote command | |
59582
92796330257a
Sync with Tramp 2.0.47.
Michael Albinus <michael.albinus@gmx.de>
parents:
57653
diff
changeset
|
291 ;; `shell-command' cannot be used; it isn't magic in XEmacs. |
92796330257a
Sync with Tramp 2.0.47.
Michael Albinus <michael.albinus@gmx.de>
parents:
57653
diff
changeset
|
292 (tramp-handle-shell-command |
45861 | 293 (mapconcat 'tramp-shell-quote-argument |
49995
a0e8a85259ed
Version 2.0.30 released.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49598
diff
changeset
|
294 (append (list command) args (list localname)) " ") |
45861 | 295 (get-buffer-create"*vc-info*")) |
296 ;(tramp-wait-for-output) | |
297 ;; Get status from command | |
298 (tramp-send-command multi-method method user host "echo $?") | |
299 (tramp-wait-for-output) | |
300 (setq exec-status (read (current-buffer))) | |
301 (message "Command %s returned status %d." command exec-status))) | |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59582
diff
changeset
|
302 |
48973
09acf3f65bb5
* net/tramp*.el: Sync with upstream version 2.0.28. Bugfixes.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
45861
diff
changeset
|
303 ;; Maybe okstatus can be `async' here. But then, maybe the |
09acf3f65bb5
* net/tramp*.el: Sync with upstream version 2.0.28. Bugfixes.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
45861
diff
changeset
|
304 ;; async thing is new in Emacs 21, but this function is only |
09acf3f65bb5
* net/tramp*.el: Sync with upstream version 2.0.28. Bugfixes.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
45861
diff
changeset
|
305 ;; used in Emacs 20. |
45861 | 306 (cond ((> exec-status okstatus) |
307 (switch-to-buffer (get-file-buffer file)) | |
308 (shrink-window-if-larger-than-buffer | |
309 (display-buffer "*vc-info*")) | |
310 (error "Couldn't find version control information"))) | |
311 exec-status)))) | |
312 | |
313 ;; This function does not exist any more in Emacs-21's VC | |
314 (defadvice vc-simple-command | |
315 (around tramp-advice-vc-simple-command | |
316 (okstatus command file &rest args) | |
317 activate) | |
318 "Invoke tramp-vc-simple-command for tramp files." | |
319 (let ((file (symbol-value 'file))) ;pacify byte-compiler | |
320 (if (or (and (stringp file) (tramp-tramp-file-p file)) | |
321 (and (buffer-file-name) (tramp-tramp-file-p (buffer-file-name)))) | |
322 (setq ad-return-value | |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59582
diff
changeset
|
323 (apply 'tramp-vc-simple-command okstatus command |
45861 | 324 (or file (buffer-file-name)) args)) |
325 ad-do-it))) | |
326 | |
327 | |
328 ;; `vc-workfile-unchanged-p' | |
329 ;; This function does not deal well with remote files, so we do the | |
330 ;; same as for `vc-do-command'. | |
331 | |
332 ;; `vc-workfile-unchanged-p' checks the modification time, we cannot | |
333 ;; do that for remote files, so here's a version which relies on diff. | |
334 ;; CCC: this one probably works for Emacs 21, too. | |
335 (defun tramp-vc-workfile-unchanged-p | |
336 (filename &optional want-differences-if-changed) | |
337 (if (fboundp 'vc-backend-diff) | |
338 ;; Old VC. Call `vc-backend-diff'. | |
339 (let ((status (funcall (symbol-function 'vc-backend-diff) | |
340 filename nil nil | |
341 (not want-differences-if-changed)))) | |
342 (zerop status)) | |
343 ;; New VC. Call `vc-default-workfile-unchanged-p'. | |
55420
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
344 (funcall (symbol-function 'vc-default-workfile-unchanged-p) |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
345 (vc-backend filename) filename))) |
45861 | 346 |
347 (defadvice vc-workfile-unchanged-p | |
348 (around tramp-advice-vc-workfile-unchanged-p | |
349 (filename &optional want-differences-if-changed) | |
350 activate) | |
351 "Invoke tramp-vc-workfile-unchanged-p for tramp files." | |
352 (if (and (stringp filename) | |
353 (tramp-tramp-file-p filename) | |
354 (not | |
355 (let ((v (tramp-dissect-file-name filename))) | |
51968
e4c4c45ea013
Tramp 2.0.36 released.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49995
diff
changeset
|
356 ;; The following check is probably to test whether |
e4c4c45ea013
Tramp 2.0.36 released.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49995
diff
changeset
|
357 ;; file-attributes returns correct last modification |
e4c4c45ea013
Tramp 2.0.36 released.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49995
diff
changeset
|
358 ;; times. This check needs to be changed. |
45861 | 359 (tramp-get-remote-perl (tramp-file-name-multi-method v) |
360 (tramp-file-name-method v) | |
361 (tramp-file-name-user v) | |
362 (tramp-file-name-host v))))) | |
363 (setq ad-return-value | |
364 (tramp-vc-workfile-unchanged-p filename want-differences-if-changed)) | |
365 ad-do-it)) | |
366 | |
367 | |
368 ;; Redefine a function from vc.el -- allow tramp files. | |
369 ;; `save-match-data' seems not to be required -- it isn't in | |
370 ;; the original version, either. | |
371 ;; CCC: this might need some work -- how does the Emacs 21 version | |
372 ;; work, anyway? Does it work over ange-ftp? Hm. | |
373 (if (not (fboundp 'vc-backend-checkout)) | |
374 () ;; our replacement won't work and is unnecessary anyway | |
375 (defun vc-checkout (filename &optional writable rev) | |
376 "Retrieve a copy of the latest version of the given file." | |
377 ;; If ftp is on this system and the name matches the ange-ftp format | |
378 ;; for a remote file, the user is trying something that won't work. | |
379 (funcall (symbol-function 'vc-backend-checkout) filename writable rev) | |
380 (vc-resynch-buffer filename t t)) | |
381 ) | |
382 | |
383 | |
384 ;; Do we need to advise the vc-user-login-name function anyway? | |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59582
diff
changeset
|
385 ;; This will return the correct login name for the owner of a |
45861 | 386 ;; file. It does not deal with the default remote user name... |
387 ;; | |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59582
diff
changeset
|
388 ;; That is, when vc calls (vc-user-login-name), we return the |
45861 | 389 ;; local login name, something that may be different to the remote |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59582
diff
changeset
|
390 ;; default. |
45861 | 391 ;; |
392 ;; The remote VC operations will occur as the user that we logged | |
393 ;; in with however - not always the same as the local user. | |
394 ;; | |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59582
diff
changeset
|
395 ;; In the end, I did advise the function. This is because, well, |
45861 | 396 ;; the thing didn't work right otherwise ;) |
397 ;; | |
398 ;; Daniel Pittman <daniel@danann.net> | |
399 | |
400 (defun tramp-handle-vc-user-login-name (&optional uid) | |
401 "Return the default user name on the remote machine. | |
402 Whenever VC calls this function, `file' is bound to the file name | |
403 in question. If no uid is provided or the uid is equal to the uid | |
404 owning the file, then we return the user name given in the file name. | |
405 | |
406 This should only be called when `file' is bound to the | |
407 filename we are thinking about..." | |
408 ;; Pacify byte-compiler; this symbol is bound in the calling | |
409 ;; function. CCC: Maybe it would be better to move the | |
410 ;; boundness-checking into this function? | |
55420
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
411 (let* ((file (symbol-value 'file)) |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
412 (remote-uid |
60763
3ba8f94e9cfa
Sync with Tramp 2.0.48.
Michael Albinus <michael.albinus@gmx.de>
parents:
59996
diff
changeset
|
413 ;; With Emacs 22, `file-attributes' has got an optional parameter |
55420
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
414 ;; ID-FORMAT. Handle this case backwards compatible. |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
415 (if (and (functionp 'subr-arity) |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
416 (= 2 (cdr (funcall (symbol-function 'subr-arity) |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
417 (symbol-function 'file-attributes))))) |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
418 (nth 2 (file-attributes file 'integer)) |
c44f9de543e3
2004-05-07 Kai Grossjohann <kai@emptydomain.de>
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
53206
diff
changeset
|
419 (nth 2 (file-attributes file))))) |
53206
0c19f1a19b2b
(tramp-chunksize): Extend docstring. Suggested by
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
52401
diff
changeset
|
420 (if (and uid (/= uid remote-uid)) |
45861 | 421 (error "tramp-handle-vc-user-login-name cannot map a uid to a name") |
56460
9459300bf43b
Sync with Tramp 2.0.43.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
55420
diff
changeset
|
422 (let* ((v (tramp-dissect-file-name (expand-file-name file))) |
45861 | 423 (u (tramp-file-name-user v))) |
424 (cond ((stringp u) u) | |
425 ((vectorp u) (elt u (1- (length u)))) | |
426 ((null u) (user-login-name)) | |
427 (t (error "tramp-handle-vc-user-login-name cannot cope!"))))))) | |
428 | |
429 | |
430 (defadvice vc-user-login-name | |
431 (around tramp-vc-user-login-name activate) | |
432 "Support for files on remote machines accessed by TRAMP." | |
433 ;; We rely on the fact that `file' is bound when this is called. | |
434 ;; This appears to be the case everywhere in vc.el and vc-hooks.el | |
435 ;; as of Emacs 20.5. | |
436 ;; | |
437 ;; CCC TODO there should be a real solution! Talk to Andre Spiegel | |
438 ;; about this. | |
439 (let ((file (when (boundp 'file) | |
440 (symbol-value 'file)))) ;pacify byte-compiler | |
441 (or (and (stringp file) | |
442 (tramp-tramp-file-p file) ; tramp file | |
443 (setq ad-return-value | |
444 (save-match-data | |
445 (tramp-handle-vc-user-login-name uid)))) ; get the owner name | |
446 ad-do-it))) ; else call the original | |
447 | |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59582
diff
changeset
|
448 |
45861 | 449 ;; Determine the name of the user owning a file. |
450 (defun tramp-file-owner (filename) | |
451 "Return who owns FILE (user name, as a string)." | |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59582
diff
changeset
|
452 (let ((v (tramp-dissect-file-name |
56460
9459300bf43b
Sync with Tramp 2.0.43.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
55420
diff
changeset
|
453 (expand-file-name filename)))) |
9459300bf43b
Sync with Tramp 2.0.43.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
55420
diff
changeset
|
454 (if (not (file-exists-p filename)) |
45861 | 455 nil ; file cannot be opened |
456 ;; file exists, find out stuff | |
457 (save-excursion | |
458 (tramp-send-command | |
459 (tramp-file-name-multi-method v) (tramp-file-name-method v) | |
460 (tramp-file-name-user v) (tramp-file-name-host v) | |
461 (format "%s -Lld %s" | |
462 (tramp-get-ls-command (tramp-file-name-multi-method v) | |
463 (tramp-file-name-method v) | |
464 (tramp-file-name-user v) | |
465 (tramp-file-name-host v)) | |
49995
a0e8a85259ed
Version 2.0.30 released.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49598
diff
changeset
|
466 (tramp-shell-quote-argument (tramp-file-name-localname v)))) |
45861 | 467 (tramp-wait-for-output) |
468 ;; parse `ls -l' output ... | |
469 ;; ... file mode flags | |
470 (read (current-buffer)) | |
471 ;; ... number links | |
472 (read (current-buffer)) | |
473 ;; ... uid (as a string) | |
474 (symbol-name (read (current-buffer))))))) | |
475 | |
476 ;; Wire ourselves into the VC infrastructure... | |
477 ;; This function does not exist any more in Emacs-21's VC | |
478 ;; CCC: it appears that no substitute is needed for Emacs 21. | |
479 (defadvice vc-file-owner | |
480 (around tramp-vc-file-owner activate) | |
481 "Support for files on remote machines accessed by TRAMP." | |
482 (let ((filename (ad-get-arg 0))) | |
483 (or (and (tramp-file-name-p filename) ; tramp file | |
484 (setq ad-return-value | |
485 (save-match-data | |
486 (tramp-file-owner filename)))) ; get the owner name | |
487 ad-do-it))) ; else call the original | |
488 | |
489 | |
490 ;; We need to make the version control software backend version | |
491 ;; information local to the current buffer. This is because each TRAMP | |
492 ;; buffer can (theoretically) have a different VC version and I am | |
493 ;; *way* too lazy to try and push the correct value into each new | |
494 ;; buffer. | |
495 ;; | |
496 ;; Remote VC costs will just have to be paid, at least for the moment. | |
497 ;; Well, at least, they will right until I feel guilty about doing a | |
498 ;; botch job here and fix it. :/ | |
499 ;; | |
500 ;; Daniel Pittman <daniel@danann.net> | |
501 ;; CCC: this is probably still needed for Emacs 21. | |
502 (defun tramp-vc-setup-for-remote () | |
503 "Make the backend release variables buffer local. | |
504 This makes remote VC work correctly at the cost of some processing time." | |
505 (when (and (buffer-file-name) | |
506 (tramp-tramp-file-p (buffer-file-name))) | |
507 (make-local-variable 'vc-rcs-release) | |
508 (setq vc-rcs-release nil))) | |
509 (add-hook 'find-file-hooks 'tramp-vc-setup-for-remote t) | |
510 | |
511 ;; No need to load this again if anyone asks. | |
512 (provide 'tramp-vc) | |
513 | |
52401 | 514 ;;; arch-tag: 27cc42ce-da19-468d-ad5c-a2690558db60 |
45861 | 515 ;;; tramp-vc.el ends here |