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