]> code.delx.au - gnu-emacs/blob - lisp/vc/vc-hooks.el
vc-hooks.el workaround for bug#11490
[gnu-emacs] / lisp / vc / vc-hooks.el
1 ;;; vc-hooks.el --- resident support for version-control
2
3 ;; Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
4
5 ;; Author: FSF (see vc.el for full credits)
6 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
7 ;; Package: vc
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 3 of the License, or
14 ;; (at your option) 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. If not, see <http://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25
26 ;; This is the always-loaded portion of VC. It takes care of
27 ;; VC-related activities that are done when you visit a file, so that
28 ;; vc.el itself is loaded only when you use a VC command. See the
29 ;; commentary of vc.el.
30
31 ;;; Code:
32
33 (eval-when-compile (require 'cl-lib))
34
35 ;; Customization Variables (the rest is in vc.el)
36
37 (defcustom vc-ignore-dir-regexp
38 ;; Stop SMB, automounter, AFS, and DFS host lookups.
39 locate-dominating-stop-dir-regexp
40 "Regexp matching directory names that are not under VC's control.
41 The default regexp prevents fruitless and time-consuming attempts
42 to determine the VC status in directories in which filenames are
43 interpreted as hostnames."
44 :type 'regexp
45 :group 'vc)
46
47 (defcustom vc-handled-backends '(RCS CVS SVN SCCS Bzr Git Hg Mtn Arch)
48 ;; RCS, CVS, SVN and SCCS come first because they are per-dir
49 ;; rather than per-tree. RCS comes first because of the multibackend
50 ;; support intended to use RCS for local commits (with a remote CVS server).
51 "List of version control backends for which VC will be used.
52 Entries in this list will be tried in order to determine whether a
53 file is under that sort of version control.
54 Removing an entry from the list prevents VC from being activated
55 when visiting a file managed by that backend.
56 An empty list disables VC altogether."
57 :type '(repeat symbol)
58 :version "23.1"
59 :group 'vc)
60
61 ;; Note: we don't actually have a darcs back end yet.
62 ;; Also, Meta-CVS (corresponding to MCVS) is unsupported.
63 (defcustom vc-directory-exclusion-list (purecopy '("SCCS" "RCS" "CVS" "MCVS"
64 ".svn" ".git" ".hg" ".bzr"
65 "_MTN" "_darcs" "{arch}"))
66 "List of directory names to be ignored when walking directory trees."
67 :type '(repeat string)
68 :group 'vc)
69
70 (defcustom vc-make-backup-files nil
71 "If non-nil, backups of registered files are made as with other files.
72 If nil (the default), files covered by version control don't get backups."
73 :type 'boolean
74 :group 'vc
75 :group 'backup)
76
77 (defcustom vc-follow-symlinks 'ask
78 "What to do if visiting a symbolic link to a file under version control.
79 Editing such a file through the link bypasses the version control system,
80 which is dangerous and probably not what you want.
81
82 If this variable is t, VC follows the link and visits the real file,
83 telling you about it in the echo area. If it is `ask', VC asks for
84 confirmation whether it should follow the link. If nil, the link is
85 visited and a warning displayed."
86 :type '(choice (const :tag "Ask for confirmation" ask)
87 (const :tag "Visit link and warn" nil)
88 (const :tag "Follow link" t))
89 :group 'vc)
90
91 (defcustom vc-display-status t
92 "If non-nil, display revision number and lock status in mode line.
93 Otherwise, not displayed."
94 :type 'boolean
95 :group 'vc)
96
97
98 (defcustom vc-consult-headers t
99 "If non-nil, identify work files by searching for version headers."
100 :type 'boolean
101 :group 'vc)
102
103 (defcustom vc-keep-workfiles t
104 "Whether to keep work files on disk after commits, on a locking VCS.
105 This variable has no effect on modern merging-based version
106 control systems."
107 :type 'boolean
108 :group 'vc)
109
110 ;; If you fix bug#11490, probably you can set this back to nil.
111 (defcustom vc-mistrust-permissions t
112 "If non-nil, don't assume permissions/ownership track version-control status.
113 If nil, do rely on the permissions.
114 See also variable `vc-consult-headers'."
115 :version "24.3" ; nil->t, bug#11490
116 :type 'boolean
117 :group 'vc)
118
119 (defun vc-mistrust-permissions (file)
120 "Internal access function to variable `vc-mistrust-permissions' for FILE."
121 (or (eq vc-mistrust-permissions 't)
122 (and vc-mistrust-permissions
123 (funcall vc-mistrust-permissions
124 (vc-backend-subdirectory-name file)))))
125
126 (defcustom vc-stay-local 'only-file
127 "Non-nil means use local operations when possible for remote repositories.
128 This avoids slow queries over the network and instead uses heuristics
129 and past information to determine the current status of a file.
130
131 If value is the symbol `only-file' `vc-dir' will connect to the
132 server, but heuristics will be used to determine the status for
133 all other VC operations.
134
135 The value can also be a regular expression or list of regular
136 expressions to match against the host name of a repository; then VC
137 only stays local for hosts that match it. Alternatively, the value
138 can be a list of regular expressions where the first element is the
139 symbol `except'; then VC always stays local except for hosts matched
140 by these regular expressions."
141 :type '(choice
142 (const :tag "Always stay local" t)
143 (const :tag "Only for file operations" only-file)
144 (const :tag "Don't stay local" nil)
145 (list :format "\nExamine hostname and %v" :tag "Examine hostname ..."
146 (set :format "%v" :inline t (const :format "%t" :tag "don't" except))
147 (regexp :format " stay local,\n%t: %v" :tag "if it matches")
148 (repeat :format "%v%i\n" :inline t (regexp :tag "or"))))
149 :version "23.1"
150 :group 'vc)
151
152 (defun vc-stay-local-p (file &optional backend)
153 "Return non-nil if VC should stay local when handling FILE.
154 This uses the `repository-hostname' backend operation.
155 If FILE is a list of files, return non-nil if any of them
156 individually should stay local."
157 (if (listp file)
158 (delq nil (mapcar (lambda (arg) (vc-stay-local-p arg backend)) file))
159 (setq backend (or backend (vc-backend file)))
160 (let* ((sym (vc-make-backend-sym backend 'stay-local))
161 (stay-local (if (boundp sym) (symbol-value sym) vc-stay-local)))
162 (if (symbolp stay-local) stay-local
163 (let ((dirname (if (file-directory-p file)
164 (directory-file-name file)
165 (file-name-directory file))))
166 (eq 'yes
167 (or (vc-file-getprop dirname 'vc-stay-local-p)
168 (vc-file-setprop
169 dirname 'vc-stay-local-p
170 (let ((hostname (vc-call-backend
171 backend 'repository-hostname dirname)))
172 (if (not hostname)
173 'no
174 (let ((default t))
175 (if (eq (car-safe stay-local) 'except)
176 (setq default nil stay-local (cdr stay-local)))
177 (when (consp stay-local)
178 (setq stay-local
179 (mapconcat 'identity stay-local "\\|")))
180 (if (if (string-match stay-local hostname)
181 default (not default))
182 'yes 'no))))))))))))
183
184 ;;; This is handled specially now.
185 ;; Tell Emacs about this new kind of minor mode
186 ;; (add-to-list 'minor-mode-alist '(vc-mode vc-mode))
187
188 ;;;###autoload
189 (put 'vc-mode 'risky-local-variable t)
190 (make-variable-buffer-local 'vc-mode)
191 (put 'vc-mode 'permanent-local t)
192
193 (defun vc-mode (&optional arg)
194 ;; Dummy function for C-h m
195 "Version Control minor mode.
196 This minor mode is automatically activated whenever you visit a file under
197 control of one of the revision control systems in `vc-handled-backends'.
198 VC commands are globally reachable under the prefix `\\[vc-prefix-map]':
199 \\{vc-prefix-map}")
200
201 (defmacro vc-error-occurred (&rest body)
202 `(condition-case nil (progn ,@body nil) (error t)))
203
204 ;; We need a notion of per-file properties because the version
205 ;; control state of a file is expensive to derive --- we compute
206 ;; them when the file is initially found, keep them up to date
207 ;; during any subsequent VC operations, and forget them when
208 ;; the buffer is killed.
209
210 (defvar vc-file-prop-obarray (make-vector 17 0)
211 "Obarray for per-file properties.")
212
213 (defvar vc-touched-properties nil)
214
215 (defun vc-file-setprop (file property value)
216 "Set per-file VC PROPERTY for FILE to VALUE."
217 (if (and vc-touched-properties
218 (not (memq property vc-touched-properties)))
219 (setq vc-touched-properties (append (list property)
220 vc-touched-properties)))
221 (put (intern file vc-file-prop-obarray) property value))
222
223 (defun vc-file-getprop (file property)
224 "Get per-file VC PROPERTY for FILE."
225 (get (intern file vc-file-prop-obarray) property))
226
227 (defun vc-file-clearprops (file)
228 "Clear all VC properties of FILE."
229 (if (boundp 'vc-parent-buffer)
230 (kill-local-variable 'vc-parent-buffer))
231 (setplist (intern file vc-file-prop-obarray) nil))
232
233 \f
234 ;; We keep properties on each symbol naming a backend as follows:
235 ;; * `vc-functions': an alist mapping vc-FUNCTION to vc-BACKEND-FUNCTION.
236
237 (defun vc-make-backend-sym (backend sym)
238 "Return BACKEND-specific version of VC symbol SYM."
239 (intern (concat "vc-" (downcase (symbol-name backend))
240 "-" (symbol-name sym))))
241
242 (defun vc-find-backend-function (backend fun)
243 "Return BACKEND-specific implementation of FUN.
244 If there is no such implementation, return the default implementation;
245 if that doesn't exist either, return nil."
246 (let ((f (vc-make-backend-sym backend fun)))
247 (if (fboundp f) f
248 ;; Load vc-BACKEND.el if needed.
249 (require (intern (concat "vc-" (downcase (symbol-name backend)))))
250 (if (fboundp f) f
251 (let ((def (vc-make-backend-sym 'default fun)))
252 (if (fboundp def) (cons def backend) nil))))))
253
254 (defun vc-call-backend (backend function-name &rest args)
255 "Call for BACKEND the implementation of FUNCTION-NAME with the given ARGS.
256 Calls
257
258 (apply 'vc-BACKEND-FUN ARGS)
259
260 if vc-BACKEND-FUN exists (after trying to find it in vc-BACKEND.el)
261 and else calls
262
263 (apply 'vc-default-FUN BACKEND ARGS)
264
265 It is usually called via the `vc-call' macro."
266 (let ((f (assoc function-name (get backend 'vc-functions))))
267 (if f (setq f (cdr f))
268 (setq f (vc-find-backend-function backend function-name))
269 (push (cons function-name f) (get backend 'vc-functions)))
270 (cond
271 ((null f)
272 (error "Sorry, %s is not implemented for %s" function-name backend))
273 ((consp f) (apply (car f) (cdr f) args))
274 (t (apply f args)))))
275
276 (defmacro vc-call (fun file &rest args)
277 "A convenience macro for calling VC backend functions.
278 Functions called by this macro must accept FILE as the first argument.
279 ARGS specifies any additional arguments. FUN should be unquoted.
280 BEWARE!! FILE is evaluated twice!!"
281 `(vc-call-backend (vc-backend ,file) ',fun ,file ,@args))
282 \f
283 (defsubst vc-parse-buffer (pattern i)
284 "Find PATTERN in the current buffer and return its Ith submatch."
285 (goto-char (point-min))
286 (if (re-search-forward pattern nil t)
287 (match-string i)))
288
289 (defun vc-insert-file (file &optional limit blocksize)
290 "Insert the contents of FILE into the current buffer.
291
292 Optional argument LIMIT is a regexp. If present, the file is inserted
293 in chunks of size BLOCKSIZE (default 8 kByte), until the first
294 occurrence of LIMIT is found. Anything from the start of that occurrence
295 to the end of the buffer is then deleted. The function returns
296 non-nil if FILE exists and its contents were successfully inserted."
297 (erase-buffer)
298 (when (file-exists-p file)
299 (if (not limit)
300 (insert-file-contents file)
301 (unless blocksize (setq blocksize 8192))
302 (let ((filepos 0))
303 (while
304 (and (< 0 (cadr (insert-file-contents
305 file nil filepos (cl-incf filepos blocksize))))
306 (progn (beginning-of-line)
307 (let ((pos (re-search-forward limit nil 'move)))
308 (when pos (delete-region (match-beginning 0)
309 (point-max)))
310 (not pos)))))))
311 (set-buffer-modified-p nil)
312 t))
313
314 (defun vc-find-root (file witness)
315 "Find the root of a checked out project.
316 The function walks up the directory tree from FILE looking for WITNESS.
317 If WITNESS if not found, return nil, otherwise return the root."
318 (let ((locate-dominating-stop-dir-regexp
319 (or vc-ignore-dir-regexp locate-dominating-stop-dir-regexp)))
320 (locate-dominating-file file witness)))
321
322 ;; Access functions to file properties
323 ;; (Properties should be _set_ using vc-file-setprop, but
324 ;; _retrieved_ only through these functions, which decide
325 ;; if the property is already known or not. A property should
326 ;; only be retrieved by vc-file-getprop if there is no
327 ;; access function.)
328
329 ;; properties indicating the backend being used for FILE
330
331 (defun vc-registered (file)
332 "Return non-nil if FILE is registered in a version control system.
333
334 This function performs the check each time it is called. To rely
335 on the result of a previous call, use `vc-backend' instead. If the
336 file was previously registered under a certain backend, then that
337 backend is tried first."
338 (let (handler)
339 (cond
340 ((and (file-name-directory file)
341 (string-match vc-ignore-dir-regexp (file-name-directory file)))
342 nil)
343 ((and (boundp 'file-name-handler-alist)
344 (setq handler (find-file-name-handler file 'vc-registered)))
345 ;; handler should set vc-backend and return t if registered
346 (funcall handler 'vc-registered file))
347 (t
348 ;; There is no file name handler.
349 ;; Try vc-BACKEND-registered for each handled BACKEND.
350 (catch 'found
351 (let ((backend (vc-file-getprop file 'vc-backend)))
352 (mapc
353 (lambda (b)
354 (and (vc-call-backend b 'registered file)
355 (vc-file-setprop file 'vc-backend b)
356 (throw 'found t)))
357 (if (or (not backend) (eq backend 'none))
358 vc-handled-backends
359 (cons backend vc-handled-backends))))
360 ;; File is not registered.
361 (vc-file-setprop file 'vc-backend 'none)
362 nil)))))
363
364 (defun vc-backend (file-or-list)
365 "Return the version control type of FILE-OR-LIST, nil if it's not registered.
366 If the argument is a list, the files must all have the same back end."
367 ;; `file' can be nil in several places (typically due to the use of
368 ;; code like (vc-backend buffer-file-name)).
369 (cond ((stringp file-or-list)
370 (let ((property (vc-file-getprop file-or-list 'vc-backend)))
371 ;; Note that internally, Emacs remembers unregistered
372 ;; files by setting the property to `none'.
373 (cond ((eq property 'none) nil)
374 (property)
375 ;; vc-registered sets the vc-backend property
376 (t (if (vc-registered file-or-list)
377 (vc-file-getprop file-or-list 'vc-backend)
378 nil)))))
379 ((and file-or-list (listp file-or-list))
380 (vc-backend (car file-or-list)))
381 (t
382 nil)))
383
384
385 (defun vc-backend-subdirectory-name (file)
386 "Return where the repository for the current directory is kept."
387 (symbol-name (vc-backend file)))
388
389 (defun vc-name (file)
390 "Return the master name of FILE.
391 If the file is not registered, or the master name is not known, return nil."
392 ;; TODO: This should ultimately become obsolete, at least up here
393 ;; in vc-hooks.
394 (or (vc-file-getprop file 'vc-name)
395 ;; force computation of the property by calling
396 ;; vc-BACKEND-registered explicitly
397 (let ((backend (vc-backend file)))
398 (if (and backend
399 (vc-call-backend backend 'registered file))
400 (vc-file-getprop file 'vc-name)))))
401
402 (defun vc-checkout-model (backend files)
403 "Indicate how FILES are checked out.
404
405 If FILES are not registered, this function always returns nil.
406 For registered files, the possible values are:
407
408 'implicit FILES are always writable, and checked out `implicitly'
409 when the user saves the first changes to the file.
410
411 'locking FILES are read-only if up-to-date; user must type
412 \\[vc-next-action] before editing. Strict locking
413 is assumed.
414
415 'announce FILES are read-only if up-to-date; user must type
416 \\[vc-next-action] before editing. But other users
417 may be editing at the same time."
418 (vc-call-backend backend 'checkout-model files))
419
420 (defun vc-user-login-name (file)
421 "Return the name under which the user accesses the given FILE."
422 (or (and (eq (string-match tramp-file-name-regexp file) 0)
423 ;; tramp case: execute "whoami" via tramp
424 (let ((default-directory (file-name-directory file))
425 process-file-side-effects)
426 (with-temp-buffer
427 (if (not (zerop (process-file "whoami" nil t)))
428 ;; fall through if "whoami" didn't work
429 nil
430 ;; remove trailing newline
431 (delete-region (1- (point-max)) (point-max))
432 (buffer-string)))))
433 ;; normal case
434 (user-login-name)
435 ;; if user-login-name is nil, return the UID as a string
436 (number-to-string (user-uid))))
437
438 (defun vc-state (file &optional backend)
439 "Return the version control state of FILE.
440
441 If FILE is not registered, this function always returns nil.
442 For registered files, the value returned is one of:
443
444 'up-to-date The working file is unmodified with respect to the
445 latest version on the current branch, and not locked.
446
447 'edited The working file has been edited by the user. If
448 locking is used for the file, this state means that
449 the current version is locked by the calling user.
450 This status should *not* be reported for files
451 which have a changed mtime but the same content
452 as the repo copy.
453
454 USER The current version of the working file is locked by
455 some other USER (a string).
456
457 'needs-update The file has not been edited by the user, but there is
458 a more recent version on the current branch stored
459 in the repository.
460
461 'needs-merge The file has been edited by the user, and there is also
462 a more recent version on the current branch stored in
463 the repository. This state can only occur if locking
464 is not used for the file.
465
466 'unlocked-changes The working version of the file is not locked,
467 but the working file has been changed with respect
468 to that version. This state can only occur for files
469 with locking; it represents an erroneous condition that
470 should be resolved by the user (vc-next-action will
471 prompt the user to do it).
472
473 'added Scheduled to go into the repository on the next commit.
474 Often represented by vc-working-revision = \"0\" in VCSes
475 with monotonic IDs like Subversion and Mercurial.
476
477 'removed Scheduled to be deleted from the repository on next commit.
478
479 'conflict The file contains conflicts as the result of a merge.
480 For now the conflicts are text conflicts. In the
481 future this might be extended to deal with metadata
482 conflicts too.
483
484 'missing The file is not present in the file system, but the VC
485 system still tracks it.
486
487 'ignored The file showed up in a dir-status listing with a flag
488 indicating the version-control system is ignoring it,
489 Note: This property is not set reliably (some VCSes
490 don't have useful directory-status commands) so assume
491 that any file with vc-state nil might be ignorable
492 without VC knowing it.
493
494 'unregistered The file is not under version control.
495
496 A return of nil from this function means we have no information on the
497 status of this file."
498 ;; Note: in Emacs 22 and older, return of nil meant the file was
499 ;; unregistered. This is potentially a source of
500 ;; backward-compatibility bugs.
501
502 ;; FIXME: New (sub)states needed (?):
503 ;; - `copied' and `moved' (might be handled by `removed' and `added')
504 (or (vc-file-getprop file 'vc-state)
505 (when (> (length file) 0) ;Why?? --Stef
506 (setq backend (or backend (vc-backend file)))
507 (when backend
508 (vc-state-refresh file backend)))))
509
510 (defun vc-state-refresh (file backend)
511 "Quickly recompute the `state' of FILE."
512 (vc-file-setprop
513 file 'vc-state
514 (vc-call-backend backend 'state-heuristic file)))
515
516 (defsubst vc-up-to-date-p (file)
517 "Convenience function that checks whether `vc-state' of FILE is `up-to-date'."
518 (eq (vc-state file) 'up-to-date))
519
520 (defun vc-default-state-heuristic (backend file)
521 "Default implementation of vc-BACKEND-state-heuristic.
522 It simply calls the real state computation function `vc-BACKEND-state'
523 and does not employ any heuristic at all."
524 (vc-call-backend backend 'state file))
525
526 (defun vc-workfile-unchanged-p (file)
527 "Return non-nil if FILE has not changed since the last checkout."
528 (let ((checkout-time (vc-file-getprop file 'vc-checkout-time))
529 (lastmod (nth 5 (file-attributes file))))
530 ;; This is a shortcut for determining when the workfile is
531 ;; unchanged. It can fail under some circumstances; see the
532 ;; discussion in bug#694.
533 (if (and checkout-time
534 ;; Tramp and Ange-FTP return this when they don't know the time.
535 (not (equal lastmod '(0 0))))
536 (equal checkout-time lastmod)
537 (let ((unchanged (vc-call workfile-unchanged-p file)))
538 (vc-file-setprop file 'vc-checkout-time (if unchanged lastmod 0))
539 unchanged))))
540
541 (defun vc-default-workfile-unchanged-p (backend file)
542 "Check if FILE is unchanged by diffing against the repository version.
543 Return non-nil if FILE is unchanged."
544 (zerop (condition-case err
545 ;; If the implementation supports it, let the output
546 ;; go to *vc*, not *vc-diff*, since this is an internal call.
547 (vc-call-backend backend 'diff (list file) nil nil "*vc*")
548 (wrong-number-of-arguments
549 ;; If this error came from the above call to vc-BACKEND-diff,
550 ;; try again without the optional buffer argument (for
551 ;; backward compatibility). Otherwise, resignal.
552 (if (or (not (eq (cadr err)
553 (indirect-function
554 (vc-find-backend-function backend 'diff))))
555 (not (eq (cl-caddr err) 4)))
556 (signal (car err) (cdr err))
557 (vc-call-backend backend 'diff (list file)))))))
558
559 (defun vc-working-revision (file &optional backend)
560 "Return the repository version from which FILE was checked out.
561 If FILE is not registered, this function always returns nil."
562 (or (vc-file-getprop file 'vc-working-revision)
563 (progn
564 (setq backend (or backend (vc-backend file)))
565 (when backend
566 (vc-file-setprop file 'vc-working-revision
567 (vc-call-backend backend 'working-revision file))))))
568
569 ;; Backward compatibility.
570 (define-obsolete-function-alias
571 'vc-workfile-version 'vc-working-revision "23.1")
572 (defun vc-default-working-revision (backend file)
573 (message
574 "`working-revision' not found: using the old `workfile-version' instead")
575 (vc-call-backend backend 'workfile-version file))
576
577 (defun vc-default-registered (backend file)
578 "Check if FILE is registered in BACKEND using vc-BACKEND-master-templates."
579 (let ((sym (vc-make-backend-sym backend 'master-templates)))
580 (unless (get backend 'vc-templates-grabbed)
581 (put backend 'vc-templates-grabbed t))
582 (let ((result (vc-check-master-templates file (symbol-value sym))))
583 (if (stringp result)
584 (vc-file-setprop file 'vc-name result)
585 nil)))) ; Not registered
586
587 (defun vc-possible-master (s dirname basename)
588 (cond
589 ((stringp s) (format s dirname basename))
590 ((functionp s)
591 ;; The template is a function to invoke. If the
592 ;; function returns non-nil, that means it has found a
593 ;; master. For backward compatibility, we also handle
594 ;; the case that the function throws a 'found atom
595 ;; and a pair (cons MASTER-FILE BACKEND).
596 (let ((result (catch 'found (funcall s dirname basename))))
597 (if (consp result) (car result) result)))))
598
599 (defun vc-check-master-templates (file templates)
600 "Return non-nil if there is a master corresponding to FILE.
601
602 TEMPLATES is a list of strings or functions. If an element is a
603 string, it must be a control string as required by `format', with two
604 string placeholders, such as \"%sRCS/%s,v\". The directory part of
605 FILE is substituted for the first placeholder, the basename of FILE
606 for the second. If a file with the resulting name exists, it is taken
607 as the master of FILE, and returned.
608
609 If an element of TEMPLATES is a function, it is called with the
610 directory part and the basename of FILE as arguments. It should
611 return non-nil if it finds a master; that value is then returned by
612 this function."
613 (let ((dirname (or (file-name-directory file) ""))
614 (basename (file-name-nondirectory file)))
615 (catch 'found
616 (mapcar
617 (lambda (s)
618 (let ((trial (vc-possible-master s dirname basename)))
619 (when (and trial (file-exists-p trial)
620 ;; Make sure the file we found with name
621 ;; TRIAL is not the source file itself.
622 ;; That can happen with RCS-style names if
623 ;; the file name is truncated (e.g. to 14
624 ;; chars). See if either directory or
625 ;; attributes differ.
626 (or (not (string= dirname
627 (file-name-directory trial)))
628 (not (equal (file-attributes file)
629 (file-attributes trial)))))
630 (throw 'found trial))))
631 templates))))
632
633 (define-obsolete-function-alias
634 'vc-toggle-read-only 'toggle-read-only "24.1")
635
636 (defun vc-default-make-version-backups-p (backend file)
637 "Return non-nil if unmodified versions should be backed up locally.
638 The default is to switch off this feature."
639 nil)
640
641 (defun vc-version-backup-file-name (file &optional rev manual regexp)
642 "Return a backup file name for REV or the current version of FILE.
643 If MANUAL is non-nil it means that a name for backups created by
644 the user should be returned; if REGEXP is non-nil that means to return
645 a regexp for matching all such backup files, regardless of the version."
646 (if regexp
647 (concat (regexp-quote (file-name-nondirectory file))
648 "\\.~.+" (unless manual "\\.") "~")
649 (expand-file-name (concat (file-name-nondirectory file)
650 ".~" (subst-char-in-string
651 ?/ ?_ (or rev (vc-working-revision file)))
652 (unless manual ".") "~")
653 (file-name-directory file))))
654
655 (defun vc-delete-automatic-version-backups (file)
656 "Delete all existing automatic version backups for FILE."
657 (condition-case nil
658 (mapc
659 'delete-file
660 (directory-files (or (file-name-directory file) default-directory) t
661 (vc-version-backup-file-name file nil nil t)))
662 ;; Don't fail when the directory doesn't exist.
663 (file-error nil)))
664
665 (defun vc-make-version-backup (file)
666 "Make a backup copy of FILE, which is assumed in sync with the repository.
667 Before doing that, check if there are any old backups and get rid of them."
668 (unless (and (fboundp 'msdos-long-file-names)
669 (not (with-no-warnings (msdos-long-file-names))))
670 (vc-delete-automatic-version-backups file)
671 (condition-case nil
672 (copy-file file (vc-version-backup-file-name file)
673 nil 'keep-date)
674 ;; It's ok if it doesn't work (e.g. directory not writable),
675 ;; since this is just for efficiency.
676 (file-error
677 (message
678 (concat "Warning: Cannot make version backup; "
679 "diff/revert therefore not local"))))))
680
681 (defun vc-before-save ()
682 "Function to be called by `basic-save-buffer' (in files.el)."
683 ;; If the file on disk is still in sync with the repository,
684 ;; and version backups should be made, copy the file to
685 ;; another name. This enables local diffs and local reverting.
686 (let ((file buffer-file-name)
687 backend)
688 (ignore-errors ;Be careful not to prevent saving the file.
689 (unless (file-exists-p file)
690 (vc-file-clearprops file))
691 (and (setq backend (vc-backend file))
692 (vc-up-to-date-p file)
693 (eq (vc-checkout-model backend (list file)) 'implicit)
694 (vc-call-backend backend 'make-version-backups-p file)
695 (vc-make-version-backup file)))))
696
697 (declare-function vc-dir-resynch-file "vc-dir" (&optional fname))
698
699 (defvar vc-dir-buffers nil "List of vc-dir buffers.")
700
701 (defun vc-after-save ()
702 "Function to be called by `basic-save-buffer' (in files.el)."
703 ;; If the file in the current buffer is under version control,
704 ;; up-to-date, and locking is not used for the file, set
705 ;; the state to 'edited and redisplay the mode line.
706 (let* ((file buffer-file-name)
707 (backend (vc-backend file)))
708 (and backend
709 (or (and (equal (vc-file-getprop file 'vc-checkout-time)
710 (nth 5 (file-attributes file)))
711 ;; File has been saved in the same second in which
712 ;; it was checked out. Clear the checkout-time
713 ;; to avoid confusion.
714 (vc-file-setprop file 'vc-checkout-time nil))
715 t)
716 (eq (vc-checkout-model backend (list file)) 'implicit)
717 (vc-state-refresh file backend)
718 (vc-mode-line file backend))
719 ;; Try to avoid unnecessary work, a *vc-dir* buffer is
720 ;; present if this is true.
721 (when vc-dir-buffers
722 (vc-dir-resynch-file file))))
723
724 (defvar vc-menu-entry
725 `(menu-item ,(purecopy "Version Control") vc-menu-map
726 :filter vc-menu-map-filter))
727
728 (when (boundp 'menu-bar-tools-menu)
729 ;; We do not need to worry here about the placement of this entry
730 ;; because menu-bar.el has already created the proper spot for us
731 ;; and this will simply use it.
732 (define-key menu-bar-tools-menu [vc] vc-menu-entry))
733
734 (defconst vc-mode-line-map
735 (let ((map (make-sparse-keymap)))
736 (define-key map [mode-line down-mouse-1] vc-menu-entry)
737 map))
738
739 (defun vc-mode-line (file &optional backend)
740 "Set `vc-mode' to display type of version control for FILE.
741 The value is set in the current buffer, which should be the buffer
742 visiting FILE.
743 If BACKEND is passed use it as the VC backend when computing the result."
744 (interactive (list buffer-file-name))
745 (setq backend (or backend (vc-backend file)))
746 (if (not backend)
747 (setq vc-mode nil)
748 (let* ((ml-string (vc-call-backend backend 'mode-line-string file))
749 (ml-echo (get-text-property 0 'help-echo ml-string)))
750 (setq vc-mode
751 (concat
752 " "
753 (if (null vc-display-status)
754 (symbol-name backend)
755 (propertize
756 ml-string
757 'mouse-face 'mode-line-highlight
758 'help-echo
759 (concat (or ml-echo
760 (format "File under the %s version control system"
761 backend))
762 "\nmouse-1: Version Control menu")
763 'local-map vc-mode-line-map)))))
764 ;; If the user is root, and the file is not owner-writable,
765 ;; then pretend that we can't write it
766 ;; even though we can (because root can write anything).
767 ;; This way, even root cannot modify a file that isn't locked.
768 (and (equal file buffer-file-name)
769 (not buffer-read-only)
770 (zerop (user-real-uid))
771 (zerop (logand (file-modes buffer-file-name) 128))
772 (setq buffer-read-only t)))
773 (force-mode-line-update)
774 backend)
775
776 (defun vc-default-mode-line-string (backend file)
777 "Return a string for `vc-mode-line' to put in the mode line for FILE.
778 Format:
779
780 \"BACKEND-REV\" if the file is up-to-date
781 \"BACKEND:REV\" if the file is edited (or locked by the calling user)
782 \"BACKEND:LOCKER:REV\" if the file is locked by somebody else
783 \"BACKEND@REV\" if the file was locally added
784 \"BACKEND!REV\" if the file contains conflicts or was removed
785 \"BACKEND?REV\" if the file is under VC, but is missing
786
787 This function assumes that the file is registered."
788 (let* ((backend-name (symbol-name backend))
789 (state (vc-state file backend))
790 (state-echo nil)
791 (rev (vc-working-revision file backend)))
792 (propertize
793 (cond ((or (eq state 'up-to-date)
794 (eq state 'needs-update))
795 (setq state-echo "Up to date file")
796 (concat backend-name "-" rev))
797 ((stringp state)
798 (setq state-echo (concat "File locked by" state))
799 (concat backend-name ":" state ":" rev))
800 ((eq state 'added)
801 (setq state-echo "Locally added file")
802 (concat backend-name "@" rev))
803 ((eq state 'conflict)
804 (setq state-echo "File contains conflicts after the last merge")
805 (concat backend-name "!" rev))
806 ((eq state 'removed)
807 (setq state-echo "File removed from the VC system")
808 (concat backend-name "!" rev))
809 ((eq state 'missing)
810 (setq state-echo "File tracked by the VC system, but missing from the file system")
811 (concat backend-name "?" rev))
812 (t
813 ;; Not just for the 'edited state, but also a fallback
814 ;; for all other states. Think about different symbols
815 ;; for 'needs-update and 'needs-merge.
816 (setq state-echo "Locally modified file")
817 (concat backend-name ":" rev)))
818 'help-echo (concat state-echo " under the " backend-name
819 " version control system"))))
820
821 (defun vc-follow-link ()
822 "If current buffer visits a symbolic link, visit the real file.
823 If the real file is already visited in another buffer, make that buffer
824 current, and kill the buffer that visits the link."
825 (let* ((true-buffer (find-buffer-visiting buffer-file-truename))
826 (this-buffer (current-buffer)))
827 (if (eq true-buffer this-buffer)
828 (let ((truename buffer-file-truename))
829 (kill-buffer this-buffer)
830 ;; In principle, we could do something like set-visited-file-name.
831 ;; However, it can't be exactly the same as set-visited-file-name.
832 ;; I'm not going to work out the details right now. -- rms.
833 (set-buffer (find-file-noselect truename)))
834 (set-buffer true-buffer)
835 (kill-buffer this-buffer))))
836
837 (defun vc-default-find-file-hook (backend)
838 nil)
839
840 (defun vc-find-file-hook ()
841 "Function for `find-file-hook' activating VC mode if appropriate."
842 ;; Recompute whether file is version controlled,
843 ;; if user has killed the buffer and revisited.
844 (when vc-mode
845 (setq vc-mode nil))
846 (when buffer-file-name
847 (vc-file-clearprops buffer-file-name)
848 ;; FIXME: Why use a hook? Why pass it buffer-file-name?
849 (add-hook 'vc-mode-line-hook 'vc-mode-line nil t)
850 (let (backend)
851 (cond
852 ((setq backend (with-demoted-errors (vc-backend buffer-file-name)))
853 ;; Compute the state and put it in the mode line.
854 (vc-mode-line buffer-file-name backend)
855 (unless vc-make-backup-files
856 ;; Use this variable, not make-backup-files,
857 ;; because this is for things that depend on the file name.
858 (set (make-local-variable 'backup-inhibited) t))
859 ;; Let the backend setup any buffer-local things he needs.
860 (vc-call-backend backend 'find-file-hook))
861 ((let ((link-type (and (not (equal buffer-file-name buffer-file-truename))
862 (vc-backend buffer-file-truename))))
863 (cond ((not link-type) nil) ;Nothing to do.
864 ((eq vc-follow-symlinks nil)
865 (message
866 "Warning: symbolic link to %s-controlled source file" link-type))
867 ((or (not (eq vc-follow-symlinks 'ask))
868 ;; If we already visited this file by following
869 ;; the link, don't ask again if we try to visit
870 ;; it again. GUD does that, and repeated questions
871 ;; are painful.
872 (get-file-buffer
873 (abbreviate-file-name
874 (file-chase-links buffer-file-name))))
875
876 (vc-follow-link)
877 (message "Followed link to %s" buffer-file-name)
878 (vc-find-file-hook))
879 (t
880 (if (yes-or-no-p (format
881 "Symbolic link to %s-controlled source file; follow link? " link-type))
882 (progn (vc-follow-link)
883 (message "Followed link to %s" buffer-file-name)
884 (vc-find-file-hook))
885 (message
886 "Warning: editing through the link bypasses version control")
887 )))))))))
888
889 (add-hook 'find-file-hook 'vc-find-file-hook)
890
891 (defun vc-kill-buffer-hook ()
892 "Discard VC info about a file when we kill its buffer."
893 (when buffer-file-name (vc-file-clearprops buffer-file-name)))
894
895 (add-hook 'kill-buffer-hook 'vc-kill-buffer-hook)
896
897 ;; Now arrange for (autoloaded) bindings of the main package.
898 ;; Bindings for this have to go in the global map, as we'll often
899 ;; want to call them from random buffers.
900
901 ;; Autoloading works fine, but it prevents shortcuts from appearing
902 ;; in the menu because they don't exist yet when the menu is built.
903 ;; (autoload 'vc-prefix-map "vc" nil nil 'keymap)
904 (defvar vc-prefix-map
905 (let ((map (make-sparse-keymap)))
906 (define-key map "a" 'vc-update-change-log)
907 (define-key map "b" 'vc-switch-backend)
908 (define-key map "c" 'vc-rollback)
909 (define-key map "d" 'vc-dir)
910 (define-key map "g" 'vc-annotate)
911 (define-key map "h" 'vc-insert-headers)
912 (define-key map "i" 'vc-register)
913 (define-key map "l" 'vc-print-log)
914 (define-key map "L" 'vc-print-root-log)
915 (define-key map "I" 'vc-log-incoming)
916 (define-key map "O" 'vc-log-outgoing)
917 (define-key map "m" 'vc-merge)
918 (define-key map "r" 'vc-retrieve-tag)
919 (define-key map "s" 'vc-create-tag)
920 (define-key map "u" 'vc-revert)
921 (define-key map "v" 'vc-next-action)
922 (define-key map "+" 'vc-update)
923 (define-key map "=" 'vc-diff)
924 (define-key map "D" 'vc-root-diff)
925 (define-key map "~" 'vc-revision-other-window)
926 map))
927 (fset 'vc-prefix-map vc-prefix-map)
928 (define-key ctl-x-map "v" 'vc-prefix-map)
929
930 (defvar vc-menu-map
931 (let ((map (make-sparse-keymap "Version Control")))
932 ;;(define-key map [show-files]
933 ;; '("Show Files under VC" . (vc-directory t)))
934 (bindings--define-key map [vc-retrieve-tag]
935 '(menu-item "Retrieve Tag" vc-retrieve-tag
936 :help "Retrieve tagged version or branch"))
937 (bindings--define-key map [vc-create-tag]
938 '(menu-item "Create Tag" vc-create-tag
939 :help "Create version tag"))
940 (bindings--define-key map [separator1] menu-bar-separator)
941 (bindings--define-key map [vc-annotate]
942 '(menu-item "Annotate" vc-annotate
943 :help "Display the edit history of the current file using colors"))
944 (bindings--define-key map [vc-rename-file]
945 '(menu-item "Rename File" vc-rename-file
946 :help "Rename file"))
947 (bindings--define-key map [vc-revision-other-window]
948 '(menu-item "Show Other Version" vc-revision-other-window
949 :help "Visit another version of the current file in another window"))
950 (bindings--define-key map [vc-diff]
951 '(menu-item "Compare with Base Version" vc-diff
952 :help "Compare file set with the base version"))
953 (bindings--define-key map [vc-root-diff]
954 '(menu-item "Compare Tree with Base Version" vc-root-diff
955 :help "Compare current tree with the base version"))
956 (bindings--define-key map [vc-update-change-log]
957 '(menu-item "Update ChangeLog" vc-update-change-log
958 :help "Find change log file and add entries from recent version control logs"))
959 (bindings--define-key map [vc-log-out]
960 '(menu-item "Show Outgoing Log" vc-log-outgoing
961 :help "Show a log of changes that will be sent with a push operation"))
962 (bindings--define-key map [vc-log-in]
963 '(menu-item "Show Incoming Log" vc-log-incoming
964 :help "Show a log of changes that will be received with a pull operation"))
965 (bindings--define-key map [vc-print-log]
966 '(menu-item "Show History" vc-print-log
967 :help "List the change log of the current file set in a window"))
968 (bindings--define-key map [vc-print-root-log]
969 '(menu-item "Show Top of the Tree History " vc-print-root-log
970 :help "List the change log for the current tree in a window"))
971 (bindings--define-key map [separator2] menu-bar-separator)
972 (bindings--define-key map [vc-insert-header]
973 '(menu-item "Insert Header" vc-insert-headers
974 :help "Insert headers into a file for use with a version control system.
975 "))
976 (bindings--define-key map [undo]
977 '(menu-item "Undo Last Check-In" vc-rollback
978 :help "Remove the most recent changeset committed to the repository"))
979 (bindings--define-key map [vc-revert]
980 '(menu-item "Revert to Base Version" vc-revert
981 :help "Revert working copies of the selected file set to their repository contents"))
982 (bindings--define-key map [vc-update]
983 '(menu-item "Update to Latest Version" vc-update
984 :help "Update the current fileset's files to their tip revisions"))
985 (bindings--define-key map [vc-next-action]
986 '(menu-item "Check In/Out" vc-next-action
987 :help "Do the next logical version control operation on the current fileset"))
988 (bindings--define-key map [vc-register]
989 '(menu-item "Register" vc-register
990 :help "Register file set into a version control system"))
991 (bindings--define-key map [vc-dir]
992 '(menu-item "VC Dir" vc-dir
993 :help "Show the VC status of files in a directory"))
994 map))
995
996 (defalias 'vc-menu-map vc-menu-map)
997
998 (declare-function vc-responsible-backend "vc" (file))
999
1000 (defun vc-menu-map-filter (orig-binding)
1001 (if (and (symbolp orig-binding) (fboundp orig-binding))
1002 (setq orig-binding (indirect-function orig-binding)))
1003 (let ((ext-binding
1004 (when vc-mode
1005 (vc-call-backend
1006 (if buffer-file-name
1007 (vc-backend buffer-file-name)
1008 (vc-responsible-backend default-directory))
1009 'extra-menu))))
1010 ;; Give the VC backend a chance to add menu entries
1011 ;; specific for that backend.
1012 (if (null ext-binding)
1013 orig-binding
1014 (append orig-binding
1015 '((ext-menu-separator "--"))
1016 ext-binding))))
1017
1018 (defun vc-default-extra-menu (backend)
1019 nil)
1020
1021 (provide 'vc-hooks)
1022
1023 ;;; vc-hooks.el ends here