(Fdisplay_buffer): If largest or LRU window is the
[emacs.git] / lisp / vc-hooks.el
blob38ddb35c9769475f51e782b2f88c350af911ddcf
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 Free Software Foundation, Inc.
6 ;; Author: FSF (see vc.el for full credits)
7 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
9 ;; $Id$
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
28 ;;; Commentary:
30 ;; This is the always-loaded portion of VC. It takes care of
31 ;; VC-related activities that are done when you visit a file, so that
32 ;; vc.el itself is loaded only when you use a VC command. See the
33 ;; commentary of vc.el.
35 ;;; Code:
37 (eval-when-compile
38 (require 'cl))
40 ;; Customization Variables (the rest is in vc.el)
42 (defvar vc-ignore-vc-files nil)
43 (make-obsolete-variable 'vc-ignore-vc-files
44 "set `vc-handled-backends' to nil to disable VC.")
46 (defvar vc-master-templates ())
47 (make-obsolete-variable 'vc-master-templates
48 "to define master templates for a given BACKEND, use
49 vc-BACKEND-master-templates. To enable or disable VC for a given
50 BACKEND, use `vc-handled-backends'.")
52 (defvar vc-header-alist ())
53 (make-obsolete-variable 'vc-header-alist 'vc-BACKEND-header)
55 (defcustom vc-ignore-dir-regexp
56 ;; Stop SMB, automounter, AFS, and DFS host lookups.
57 "\\`\\(?:[\\/][\\/]\\|/\\(?:net\\|afs\\|\\.\\\.\\.\\)/\\)\\'"
58 "Regexp matching directory names that are not under VC's control.
59 The default regexp prevents fruitless and time-consuming attempts
60 to determine the VC status in directories in which filenames are
61 interpreted as hostnames."
62 :type 'regexp
63 :group 'vc)
65 (defcustom vc-handled-backends '(RCS CVS SVN SCCS BZR HG Arch MCVS)
66 ;; BZR, HG, Arch and MCVS come last because they are per-tree rather
67 ;; than per-dir.
68 "List of version control backends for which VC will be used.
69 Entries in this list will be tried in order to determine whether a
70 file is under that sort of version control.
71 Removing an entry from the list prevents VC from being activated
72 when visiting a file managed by that backend.
73 An empty list disables VC altogether."
74 :type '(repeat symbol)
75 :version "23.1"
76 :group 'vc)
78 (defcustom vc-path
79 (if (file-directory-p "/usr/sccs")
80 '("/usr/sccs")
81 nil)
82 "List of extra directories to search for version control commands."
83 :type '(repeat directory)
84 :group 'vc)
86 (defcustom vc-make-backup-files nil
87 "If non-nil, backups of registered files are made as with other files.
88 If nil (the default), files covered by version control don't get backups."
89 :type 'boolean
90 :group 'vc
91 :group 'backup)
93 (defcustom vc-follow-symlinks 'ask
94 "What to do if visiting a symbolic link to a file under version control.
95 Editing such a file through the link bypasses the version control system,
96 which is dangerous and probably not what you want.
98 If this variable is t, VC follows the link and visits the real file,
99 telling you about it in the echo area. If it is `ask', VC asks for
100 confirmation whether it should follow the link. If nil, the link is
101 visited and a warning displayed."
102 :type '(choice (const :tag "Ask for confirmation" ask)
103 (const :tag "Visit link and warn" nil)
104 (const :tag "Follow link" t))
105 :group 'vc)
107 (defcustom vc-display-status t
108 "If non-nil, display revision number and lock status in modeline.
109 Otherwise, not displayed."
110 :type 'boolean
111 :group 'vc)
114 (defcustom vc-consult-headers t
115 "If non-nil, identify work files by searching for version headers."
116 :type 'boolean
117 :group 'vc)
119 (defcustom vc-keep-workfiles t
120 "If non-nil, don't delete working files after registering changes.
121 If the back-end is CVS, workfiles are always kept, regardless of the
122 value of this flag."
123 :type 'boolean
124 :group 'vc)
126 (defcustom vc-mistrust-permissions nil
127 "If non-nil, don't assume permissions/ownership track version-control status.
128 If nil, do rely on the permissions.
129 See also variable `vc-consult-headers'."
130 :type 'boolean
131 :group 'vc)
133 (defun vc-mistrust-permissions (file)
134 "Internal access function to variable `vc-mistrust-permissions' for FILE."
135 (or (eq vc-mistrust-permissions 't)
136 (and vc-mistrust-permissions
137 (funcall vc-mistrust-permissions
138 (vc-backend-subdirectory-name file)))))
140 (defcustom vc-stay-local t
141 "Non-nil means use local operations when possible for remote repositories.
142 This avoids slow queries over the network and instead uses heuristics
143 and past information to determine the current status of a file.
145 The value can also be a regular expression or list of regular
146 expressions to match against the host name of a repository; then VC
147 only stays local for hosts that match it. Alternatively, the value
148 can be a list of regular expressions where the first element is the
149 symbol `except'; then VC always stays local except for hosts matched
150 by these regular expressions."
151 :type '(choice (const :tag "Always stay local" t)
152 (const :tag "Don't stay local" nil)
153 (list :format "\nExamine hostname and %v" :tag "Examine hostname ..."
154 (set :format "%v" :inline t (const :format "%t" :tag "don't" except))
155 (regexp :format " stay local,\n%t: %v" :tag "if it matches")
156 (repeat :format "%v%i\n" :inline t (regexp :tag "or"))))
157 :version "22.1"
158 :group 'vc)
160 (defun vc-stay-local-p (file)
161 "Return non-nil if VC should stay local when handling FILE.
162 This uses the `repository-hostname' backend operation."
163 (let* ((backend (vc-backend file))
164 (sym (vc-make-backend-sym backend 'stay-local))
165 (stay-local (if (boundp sym) (symbol-value sym) t)))
166 (if (eq stay-local t) (setq stay-local vc-stay-local))
167 (if (symbolp stay-local) stay-local
168 (let ((dirname (if (file-directory-p file)
169 (directory-file-name file)
170 (file-name-directory file))))
171 (eq 'yes
172 (or (vc-file-getprop dirname 'vc-stay-local-p)
173 (vc-file-setprop
174 dirname 'vc-stay-local-p
175 (let ((hostname (vc-call-backend
176 backend 'repository-hostname dirname)))
177 (if (not hostname)
179 (let ((default t))
180 (if (eq (car-safe stay-local) 'except)
181 (setq default nil stay-local (cdr stay-local)))
182 (when (consp stay-local)
183 (setq stay-local
184 (mapconcat 'identity stay-local "\\|")))
185 (if (if (string-match stay-local hostname)
186 default (not default))
187 'yes 'no)))))))))))
189 ;;; This is handled specially now.
190 ;; Tell Emacs about this new kind of minor mode
191 ;; (add-to-list 'minor-mode-alist '(vc-mode vc-mode))
193 (make-variable-buffer-local 'vc-mode)
194 (put 'vc-mode 'permanent-local t)
196 (defun vc-mode (&optional arg)
197 ;; Dummy function for C-h m
198 "Version Control minor mode.
199 This minor mode is automatically activated whenever you visit a file under
200 control of one of the revision control systems in `vc-handled-backends'.
201 VC commands are globally reachable under the prefix `\\[vc-prefix-map]':
202 \\{vc-prefix-map}")
204 (defmacro vc-error-occurred (&rest body)
205 `(condition-case nil (progn ,@body nil) (error t)))
207 ;; We need a notion of per-file properties because the version
208 ;; control state of a file is expensive to derive --- we compute
209 ;; them when the file is initially found, keep them up to date
210 ;; during any subsequent VC operations, and forget them when
211 ;; the buffer is killed.
213 (defvar vc-file-prop-obarray (make-vector 17 0)
214 "Obarray for per-file properties.")
216 (defvar vc-touched-properties nil)
218 (defun vc-file-setprop (file property value)
219 "Set per-file VC PROPERTY for FILE to VALUE."
220 (if (and vc-touched-properties
221 (not (memq property vc-touched-properties)))
222 (setq vc-touched-properties (append (list property)
223 vc-touched-properties)))
224 (put (intern file vc-file-prop-obarray) property value))
226 (defun vc-file-getprop (file property)
227 "Get per-file VC PROPERTY for FILE."
228 (get (intern file vc-file-prop-obarray) property))
230 (defun vc-file-clearprops (file)
231 "Clear all VC properties of FILE."
232 (setplist (intern file vc-file-prop-obarray) nil))
235 ;; We keep properties on each symbol naming a backend as follows:
236 ;; * `vc-functions': an alist mapping vc-FUNCTION to vc-BACKEND-FUNCTION.
238 (defun vc-make-backend-sym (backend sym)
239 "Return BACKEND-specific version of VC symbol SYM."
240 (intern (concat "vc-" (downcase (symbol-name backend))
241 "-" (symbol-name sym))))
243 (defun vc-find-backend-function (backend fun)
244 "Return BACKEND-specific implementation of FUN.
245 If there is no such implementation, return the default implementation;
246 if that doesn't exist either, return nil."
247 (let ((f (vc-make-backend-sym backend fun)))
248 (if (fboundp f) f
249 ;; Load vc-BACKEND.el if needed.
250 (require (intern (concat "vc-" (downcase (symbol-name backend)))))
251 (if (fboundp f) f
252 (let ((def (vc-make-backend-sym 'default fun)))
253 (if (fboundp def) (cons def backend) nil))))))
255 (defun vc-call-backend (backend function-name &rest args)
256 "Call for BACKEND the implementation of FUNCTION-NAME with the given ARGS.
257 Calls
259 (apply 'vc-BACKEND-FUN ARGS)
261 if vc-BACKEND-FUN exists (after trying to find it in vc-BACKEND.el)
262 and else calls
264 (apply 'vc-default-FUN BACKEND ARGS)
266 It is usually called via the `vc-call' macro."
267 (let ((f (assoc function-name (get backend 'vc-functions))))
268 (if f (setq f (cdr f))
269 (setq f (vc-find-backend-function backend function-name))
270 (push (cons function-name f) (get backend 'vc-functions)))
271 (cond
272 ((null f)
273 (error "Sorry, %s is not implemented for %s" function-name backend))
274 ((consp f) (apply (car f) (cdr f) args))
275 (t (apply f args)))))
277 (defmacro vc-call (fun file &rest args)
278 ;; BEWARE!! `file' is evaluated twice!!
279 `(vc-call-backend (vc-backend ,file) ',fun ,file ,@args))
281 (defsubst vc-parse-buffer (pattern i)
282 "Find PATTERN in the current buffer and return its Ith submatch."
283 (goto-char (point-min))
284 (if (re-search-forward pattern nil t)
285 (match-string i)))
287 (defun vc-insert-file (file &optional limit blocksize)
288 "Insert the contents of FILE into the current buffer.
290 Optional argument LIMIT is a regexp. If present, the file is inserted
291 in chunks of size BLOCKSIZE (default 8 kByte), until the first
292 occurrence of LIMIT is found. Anything from the start of that occurrence
293 to the end of the buffer is then deleted. The function returns
294 non-nil if FILE exists and its contents were successfully inserted."
295 (erase-buffer)
296 (when (file-exists-p file)
297 (if (not limit)
298 (insert-file-contents file)
299 (if (not blocksize) (setq blocksize 8192))
300 (let ((filepos 0))
301 (while
302 (and (< 0 (cadr (insert-file-contents
303 file nil filepos (incf filepos blocksize))))
304 (progn (beginning-of-line)
305 (let ((pos (re-search-forward limit nil 'move)))
306 (if pos (delete-region (match-beginning 0)
307 (point-max)))
308 (not pos)))))))
309 (set-buffer-modified-p nil)
312 (defun vc-find-root (file witness)
313 "Find the root of a checked out project.
314 The function walks up the directory tree from FILE looking for WITNESS.
315 If WITNESS if not found, return nil, otherwise return the root."
316 ;; Represent /home/luser/foo as ~/foo so that we don't try to look for
317 ;; witnesses in /home or in /.
318 (setq file (abbreviate-file-name file))
319 (let ((root nil)
320 (user (nth 2 (file-attributes file))))
321 (while (not (or root
322 (equal file (setq file (file-name-directory file)))
323 (null file)
324 ;; As a heuristic, we stop looking up the hierarchy of
325 ;; directories as soon as we find a directory belonging
326 ;; to another user. This should save us from looking in
327 ;; things like /net and /afs. This assumes that all the
328 ;; files inside a project belong to the same user.
329 (not (equal user (nth 2 (file-attributes file))))
330 (string-match vc-ignore-dir-regexp file)))
331 (if (file-exists-p (expand-file-name witness file))
332 (setq root file)
333 (setq file (directory-file-name file))))
334 root))
336 ;; Access functions to file properties
337 ;; (Properties should be _set_ using vc-file-setprop, but
338 ;; _retrieved_ only through these functions, which decide
339 ;; if the property is already known or not. A property should
340 ;; only be retrieved by vc-file-getprop if there is no
341 ;; access function.)
343 ;; properties indicating the backend being used for FILE
345 (defun vc-registered (file)
346 "Return non-nil if FILE is registered in a version control system.
348 This function performs the check each time it is called. To rely
349 on the result of a previous call, use `vc-backend' instead. If the
350 file was previously registered under a certain backend, then that
351 backend is tried first."
352 (let (handler)
353 (cond
354 ((string-match vc-ignore-dir-regexp (file-name-directory file)) nil)
355 ((and (boundp 'file-name-handler-alist)
356 (setq handler (find-file-name-handler file 'vc-registered)))
357 ;; handler should set vc-backend and return t if registered
358 (funcall handler 'vc-registered file))
360 ;; There is no file name handler.
361 ;; Try vc-BACKEND-registered for each handled BACKEND.
362 (catch 'found
363 (let ((backend (vc-file-getprop file 'vc-backend)))
364 (mapcar
365 (lambda (b)
366 (and (vc-call-backend b 'registered file)
367 (vc-file-setprop file 'vc-backend b)
368 (throw 'found t)))
369 (if (or (not backend) (eq backend 'none))
370 vc-handled-backends
371 (cons backend vc-handled-backends))))
372 ;; File is not registered.
373 (vc-file-setprop file 'vc-backend 'none)
374 nil)))))
376 (defun vc-backend (file)
377 "Return the version control type of FILE, nil if it is not registered."
378 ;; `file' can be nil in several places (typically due to the use of
379 ;; code like (vc-backend buffer-file-name)).
380 (when (stringp file)
381 (let ((property (vc-file-getprop file 'vc-backend)))
382 ;; Note that internally, Emacs remembers unregistered
383 ;; files by setting the property to `none'.
384 (cond ((eq property 'none) nil)
385 (property)
386 ;; vc-registered sets the vc-backend property
387 (t (if (vc-registered file)
388 (vc-file-getprop file 'vc-backend)
389 nil))))))
391 (defun vc-backend-subdirectory-name (file)
392 "Return where the master and lock FILEs for the current directory are kept."
393 (symbol-name (vc-backend file)))
395 (defun vc-name (file)
396 "Return the master name of FILE.
397 If the file is not registered, or the master name is not known, return nil."
398 ;; TODO: This should ultimately become obsolete, at least up here
399 ;; in vc-hooks.
400 (or (vc-file-getprop file 'vc-name)
401 ;; force computation of the property by calling
402 ;; vc-BACKEND-registered explicitly
403 (if (and (vc-backend file)
404 (vc-call-backend (vc-backend file) 'registered file))
405 (vc-file-getprop file 'vc-name))))
407 (defun vc-checkout-model (file)
408 "Indicate how FILE is checked out.
410 If FILE is not registered, this function always returns nil.
411 For registered files, the possible values are:
413 'implicit FILE is always writeable, and checked out `implicitly'
414 when the user saves the first changes to the file.
416 'locking FILE is read-only if up-to-date; user must type
417 \\[vc-next-action] before editing. Strict locking
418 is assumed.
420 'announce FILE is read-only if up-to-date; user must type
421 \\[vc-next-action] before editing. But other users
422 may be editing at the same time."
423 (or (vc-file-getprop file 'vc-checkout-model)
424 (if (vc-backend file)
425 (vc-file-setprop file 'vc-checkout-model
426 (vc-call checkout-model file)))))
428 (defun vc-user-login-name (file)
429 "Return the name under which the user accesses the given FILE."
430 (or (and (eq (string-match tramp-file-name-regexp file) 0)
431 ;; tramp case: execute "whoami" via tramp
432 (let ((default-directory (file-name-directory file)))
433 (with-temp-buffer
434 (if (not (zerop (process-file "whoami" nil t)))
435 ;; fall through if "whoami" didn't work
437 ;; remove trailing newline
438 (delete-region (1- (point-max)) (point-max))
439 (buffer-string)))))
440 ;; normal case
441 (user-login-name)
442 ;; if user-login-name is nil, return the UID as a string
443 (number-to-string (user-uid))))
445 (defun vc-state (file)
446 "Return the version control state of FILE.
448 If FILE is not registered, this function always returns nil.
449 For registered files, the value returned is one of:
451 'up-to-date The working file is unmodified with respect to the
452 latest version on the current branch, and not locked.
454 'edited The working file has been edited by the user. If
455 locking is used for the file, this state means that
456 the current version is locked by the calling user.
458 USER The current version of the working file is locked by
459 some other USER (a string).
461 'needs-patch The file has not been edited by the user, but there is
462 a more recent version on the current branch stored
463 in the master file.
465 'needs-merge The file has been edited by the user, and there is also
466 a more recent version on the current branch stored in
467 the master file. This state can only occur if locking
468 is not used for the file.
470 'unlocked-changes The current version of the working file is not locked,
471 but the working file has been changed with respect
472 to that version. This state can only occur for files
473 with locking; it represents an erroneous condition that
474 should be resolved by the user (vc-next-action will
475 prompt the user to do it)."
476 ;; FIXME: New (sub)states needed (?):
477 ;; - `added' (i.e. `edited' but with no base version yet,
478 ;; typically represented by vc-workfile-version = "0")
479 ;; - `conflict' (i.e. `edited' with conflict markers)
480 ;; - `removed'
481 ;; - `copied' and `moved' (might be handled by `removed' and `added')
482 (or (vc-file-getprop file 'vc-state)
483 (if (vc-backend file)
484 (vc-file-setprop file 'vc-state
485 (vc-call state-heuristic file)))))
487 (defun vc-recompute-state (file)
488 "Recompute the version control state of FILE, and return it.
489 This calls the possibly expensive function vc-BACKEND-state,
490 rather than the heuristic."
491 (vc-file-setprop file 'vc-state (vc-call state file)))
493 (defsubst vc-up-to-date-p (file)
494 "Convenience function that checks whether `vc-state' of FILE is `up-to-date'."
495 (eq (vc-state file) 'up-to-date))
497 (defun vc-default-state-heuristic (backend file)
498 "Default implementation of vc-state-heuristic.
499 It simply calls the real state computation function `vc-BACKEND-state'
500 and does not employ any heuristic at all."
501 (vc-call-backend backend 'state file))
503 (defun vc-workfile-unchanged-p (file)
504 "Return non-nil if FILE has not changed since the last checkout."
505 (let ((checkout-time (vc-file-getprop file 'vc-checkout-time))
506 (lastmod (nth 5 (file-attributes file))))
507 (if (and checkout-time
508 ;; Tramp and Ange-FTP return this when they don't know the time.
509 (not (equal lastmod '(0 0))))
510 (equal checkout-time lastmod)
511 (let ((unchanged (vc-call workfile-unchanged-p file)))
512 (vc-file-setprop file 'vc-checkout-time (if unchanged lastmod 0))
513 unchanged))))
515 (defun vc-default-workfile-unchanged-p (backend file)
516 "Check if FILE is unchanged by diffing against the master version.
517 Return non-nil if FILE is unchanged."
518 (zerop (condition-case err
519 ;; If the implementation supports it, let the output
520 ;; go to *vc*, not *vc-diff*, since this is an internal call.
521 (vc-call diff file nil nil "*vc*")
522 (wrong-number-of-arguments
523 ;; If this error came from the above call to vc-BACKEND-diff,
524 ;; try again without the optional buffer argument (for
525 ;; backward compatibility). Otherwise, resignal.
526 (if (or (not (eq (cadr err)
527 (indirect-function
528 (vc-find-backend-function (vc-backend file)
529 'diff))))
530 (not (eq (caddr err) 4)))
531 (signal (car err) (cdr err))
532 (vc-call diff file))))))
534 (defun vc-workfile-version (file)
535 "Return the version level of the current workfile FILE.
536 If FILE is not registered, this function always returns nil."
537 (or (vc-file-getprop file 'vc-workfile-version)
538 (if (vc-backend file)
539 (vc-file-setprop file 'vc-workfile-version
540 (vc-call workfile-version file)))))
542 (defun vc-default-registered (backend file)
543 "Check if FILE is registered in BACKEND using vc-BACKEND-master-templates."
544 (let ((sym (vc-make-backend-sym backend 'master-templates)))
545 (unless (get backend 'vc-templates-grabbed)
546 (put backend 'vc-templates-grabbed t)
547 (set sym (append (delq nil
548 (mapcar
549 (lambda (template)
550 (and (consp template)
551 (eq (cdr template) backend)
552 (car template)))
553 (with-no-warnings
554 vc-master-templates)))
555 (symbol-value sym))))
556 (let ((result (vc-check-master-templates file (symbol-value sym))))
557 (if (stringp result)
558 (vc-file-setprop file 'vc-name result)
559 nil)))) ; Not registered
561 (defun vc-possible-master (s dirname basename)
562 (cond
563 ((stringp s) (format s dirname basename))
564 ((functionp s)
565 ;; The template is a function to invoke. If the
566 ;; function returns non-nil, that means it has found a
567 ;; master. For backward compatibility, we also handle
568 ;; the case that the function throws a 'found atom
569 ;; and a pair (cons MASTER-FILE BACKEND).
570 (let ((result (catch 'found (funcall s dirname basename))))
571 (if (consp result) (car result) result)))))
573 (defun vc-check-master-templates (file templates)
574 "Return non-nil if there is a master corresponding to FILE.
576 TEMPLATES is a list of strings or functions. If an element is a
577 string, it must be a control string as required by `format', with two
578 string placeholders, such as \"%sRCS/%s,v\". The directory part of
579 FILE is substituted for the first placeholder, the basename of FILE
580 for the second. If a file with the resulting name exists, it is taken
581 as the master of FILE, and returned.
583 If an element of TEMPLATES is a function, it is called with the
584 directory part and the basename of FILE as arguments. It should
585 return non-nil if it finds a master; that value is then returned by
586 this function."
587 (let ((dirname (or (file-name-directory file) ""))
588 (basename (file-name-nondirectory file)))
589 (catch 'found
590 (mapcar
591 (lambda (s)
592 (let ((trial (vc-possible-master s dirname basename)))
593 (if (and trial (file-exists-p trial)
594 ;; Make sure the file we found with name
595 ;; TRIAL is not the source file itself.
596 ;; That can happen with RCS-style names if
597 ;; the file name is truncated (e.g. to 14
598 ;; chars). See if either directory or
599 ;; attributes differ.
600 (or (not (string= dirname
601 (file-name-directory trial)))
602 (not (equal (file-attributes file)
603 (file-attributes trial)))))
604 (throw 'found trial))))
605 templates))))
607 (defun vc-toggle-read-only (&optional verbose)
608 "Change read-only status of current buffer, perhaps via version control.
610 If the buffer is visiting a file registered with version control,
611 then check the file in or out. Otherwise, just change the read-only flag
612 of the buffer.
613 With prefix argument, ask for version number to check in or check out.
614 Check-out of a specified version number does not lock the file;
615 to do that, use this command a second time with no argument.
617 If you bind this function to \\[toggle-read-only], then Emacs checks files
618 in or out whenever you toggle the read-only flag."
619 (interactive "P")
620 (if (or (and (boundp 'vc-dired-mode) vc-dired-mode)
621 ;; use boundp because vc.el might not be loaded
622 (vc-backend buffer-file-name))
623 (vc-next-action verbose)
624 (toggle-read-only)))
626 (defun vc-default-make-version-backups-p (backend file)
627 "Return non-nil if unmodified versions should be backed up locally.
628 The default is to switch off this feature."
629 nil)
631 (defun vc-version-backup-file-name (file &optional rev manual regexp)
632 "Return a backup file name for REV or the current version of FILE.
633 If MANUAL is non-nil it means that a name for backups created by
634 the user should be returned; if REGEXP is non-nil that means to return
635 a regexp for matching all such backup files, regardless of the version."
636 (if regexp
637 (concat (regexp-quote (file-name-nondirectory file))
638 "\\.~.+" (unless manual "\\.") "~")
639 (expand-file-name (concat (file-name-nondirectory file)
640 ".~" (subst-char-in-string
641 ?/ ?_ (or rev (vc-workfile-version file)))
642 (unless manual ".") "~")
643 (file-name-directory file))))
645 (defun vc-delete-automatic-version-backups (file)
646 "Delete all existing automatic version backups for FILE."
647 (condition-case nil
648 (mapcar
649 'delete-file
650 (directory-files (or (file-name-directory file) default-directory) t
651 (vc-version-backup-file-name file nil nil t)))
652 ;; Don't fail when the directory doesn't exist.
653 (file-error nil)))
655 (defun vc-make-version-backup (file)
656 "Make a backup copy of FILE, which is assumed in sync with the repository.
657 Before doing that, check if there are any old backups and get rid of them."
658 (unless (and (fboundp 'msdos-long-file-names)
659 (not (with-no-warnings (msdos-long-file-names))))
660 (vc-delete-automatic-version-backups file)
661 (condition-case nil
662 (copy-file file (vc-version-backup-file-name file)
663 nil 'keep-date)
664 ;; It's ok if it doesn't work (e.g. directory not writable),
665 ;; since this is just for efficiency.
666 (file-error
667 (message
668 (concat "Warning: Cannot make version backup; "
669 "diff/revert therefore not local"))))))
671 (defun vc-before-save ()
672 "Function to be called by `basic-save-buffer' (in files.el)."
673 ;; If the file on disk is still in sync with the repository,
674 ;; and version backups should be made, copy the file to
675 ;; another name. This enables local diffs and local reverting.
676 (let ((file buffer-file-name))
677 (and (vc-backend file)
678 (vc-up-to-date-p file)
679 (eq (vc-checkout-model file) 'implicit)
680 (vc-call make-version-backups-p file)
681 (vc-make-version-backup file))))
683 (defun vc-after-save ()
684 "Function to be called by `basic-save-buffer' (in files.el)."
685 ;; If the file in the current buffer is under version control,
686 ;; up-to-date, and locking is not used for the file, set
687 ;; the state to 'edited and redisplay the mode line.
688 (let ((file buffer-file-name))
689 (and (vc-backend file)
690 (or (and (equal (vc-file-getprop file 'vc-checkout-time)
691 (nth 5 (file-attributes file)))
692 ;; File has been saved in the same second in which
693 ;; it was checked out. Clear the checkout-time
694 ;; to avoid confusion.
695 (vc-file-setprop file 'vc-checkout-time nil))
697 (vc-up-to-date-p file)
698 (eq (vc-checkout-model file) 'implicit)
699 (vc-file-setprop file 'vc-state 'edited)
700 (vc-mode-line file)
701 (if (featurep 'vc)
702 ;; If VC is not loaded, then there can't be
703 ;; any VC Dired buffer to synchronize.
704 (vc-dired-resynch-file file)))))
706 (defun vc-mode-line (file)
707 "Set `vc-mode' to display type of version control for FILE.
708 The value is set in the current buffer, which should be the buffer
709 visiting FILE."
710 (interactive (list buffer-file-name))
711 (let ((backend (vc-backend file)))
712 (if (not backend)
713 (setq vc-mode nil)
714 (setq vc-mode (concat " " (if vc-display-status
715 (vc-call mode-line-string file)
716 (symbol-name backend))))
717 ;; If the file is locked by some other user, make
718 ;; the buffer read-only. Like this, even root
719 ;; cannot modify a file that someone else has locked.
720 (and (equal file buffer-file-name)
721 (stringp (vc-state file))
722 (setq buffer-read-only t))
723 ;; If the user is root, and the file is not owner-writable,
724 ;; then pretend that we can't write it
725 ;; even though we can (because root can write anything).
726 ;; This way, even root cannot modify a file that isn't locked.
727 (and (equal file buffer-file-name)
728 (not buffer-read-only)
729 (zerop (user-real-uid))
730 (zerop (logand (file-modes buffer-file-name) 128))
731 (setq buffer-read-only t)))
732 (force-mode-line-update)
733 backend))
735 (defun vc-default-mode-line-string (backend file)
736 "Return string for placement in modeline by `vc-mode-line' for FILE.
737 Format:
739 \"BACKEND-REV\" if the file is up-to-date
740 \"BACKEND:REV\" if the file is edited (or locked by the calling user)
741 \"BACKEND:LOCKER:REV\" if the file is locked by somebody else
743 This function assumes that the file is registered."
744 (setq backend (symbol-name backend))
745 (let ((state (vc-state file))
746 (state-echo nil)
747 (rev (vc-workfile-version file)))
748 (propertize
749 (cond ((or (eq state 'up-to-date)
750 (eq state 'needs-patch))
751 (setq state-echo "Up to date file")
752 (concat backend "-" rev))
753 ((stringp state)
754 (setq state-echo (concat "File locked by" state))
755 (concat backend ":" state ":" rev))
757 ;; Not just for the 'edited state, but also a fallback
758 ;; for all other states. Think about different symbols
759 ;; for 'needs-patch and 'needs-merge.
760 (setq state-echo "Edited file")
761 (concat backend ":" rev)))
762 'mouse-face 'mode-line-highlight
763 'local-map (let ((map (make-sparse-keymap)))
764 (define-key map [mode-line down-mouse-1] 'vc-menu-map) map)
765 'help-echo (concat state-echo " under the " backend
766 " version control system\nmouse-1: VC Menu"))))
768 (defun vc-follow-link ()
769 "If current buffer visits a symbolic link, visit the real file.
770 If the real file is already visited in another buffer, make that buffer
771 current, and kill the buffer that visits the link."
772 (let* ((truename (abbreviate-file-name (file-chase-links buffer-file-name)))
773 (true-buffer (find-buffer-visiting truename))
774 (this-buffer (current-buffer)))
775 (if (eq true-buffer this-buffer)
776 (progn
777 (kill-buffer this-buffer)
778 ;; In principle, we could do something like set-visited-file-name.
779 ;; However, it can't be exactly the same as set-visited-file-name.
780 ;; I'm not going to work out the details right now. -- rms.
781 (set-buffer (find-file-noselect truename)))
782 (set-buffer true-buffer)
783 (kill-buffer this-buffer))))
785 (defun vc-default-find-file-hook (backend)
786 nil)
788 (defun vc-find-file-hook ()
789 "Function for `find-file-hook' activating VC mode if appropriate."
790 ;; Recompute whether file is version controlled,
791 ;; if user has killed the buffer and revisited.
792 (if vc-mode
793 (setq vc-mode nil))
794 (when buffer-file-name
795 (vc-file-clearprops buffer-file-name)
796 (cond
797 ((with-demoted-errors (vc-backend buffer-file-name))
798 ;; Compute the state and put it in the modeline.
799 (vc-mode-line buffer-file-name)
800 (unless vc-make-backup-files
801 ;; Use this variable, not make-backup-files,
802 ;; because this is for things that depend on the file name.
803 (set (make-local-variable 'backup-inhibited) t))
804 ;; Let the backend setup any buffer-local things he needs.
805 (vc-call-backend (vc-backend buffer-file-name) 'find-file-hook))
806 ((let ((link-type (and (file-symlink-p buffer-file-name)
807 (vc-backend (file-chase-links buffer-file-name)))))
808 (cond ((not link-type) nil) ;Nothing to do.
809 ((eq vc-follow-symlinks nil)
810 (message
811 "Warning: symbolic link to %s-controlled source file" link-type))
812 ((or (not (eq vc-follow-symlinks 'ask))
813 ;; If we already visited this file by following
814 ;; the link, don't ask again if we try to visit
815 ;; it again. GUD does that, and repeated questions
816 ;; are painful.
817 (get-file-buffer
818 (abbreviate-file-name
819 (file-chase-links buffer-file-name))))
821 (vc-follow-link)
822 (message "Followed link to %s" buffer-file-name)
823 (vc-find-file-hook))
825 (if (yes-or-no-p (format
826 "Symbolic link to %s-controlled source file; follow link? " link-type))
827 (progn (vc-follow-link)
828 (message "Followed link to %s" buffer-file-name)
829 (vc-find-file-hook))
830 (message
831 "Warning: editing through the link bypasses version control")
832 ))))))))
834 (add-hook 'find-file-hook 'vc-find-file-hook)
836 ;; more hooks, this time for file-not-found
837 (defun vc-file-not-found-hook ()
838 "When file is not found, try to check it out from version control.
839 Returns t if checkout was successful, nil otherwise.
840 Used in `find-file-not-found-functions'."
841 ;; When a file does not exist, ignore cached info about it
842 ;; from a previous visit.
843 (vc-file-clearprops buffer-file-name)
844 (let ((backend (vc-backend buffer-file-name)))
845 (if backend (vc-call-backend backend 'find-file-not-found-hook))))
847 (defun vc-default-find-file-not-found-hook (backend)
848 (if (yes-or-no-p
849 (format "File %s was lost; check out from version control? "
850 (file-name-nondirectory buffer-file-name)))
851 (save-excursion
852 (require 'vc)
853 (setq default-directory (file-name-directory buffer-file-name))
854 (not (vc-error-occurred (vc-checkout buffer-file-name))))))
856 (add-hook 'find-file-not-found-functions 'vc-file-not-found-hook)
858 (defun vc-kill-buffer-hook ()
859 "Discard VC info about a file when we kill its buffer."
860 (if buffer-file-name
861 (vc-file-clearprops buffer-file-name)))
863 (add-hook 'kill-buffer-hook 'vc-kill-buffer-hook)
865 ;; Now arrange for (autoloaded) bindings of the main package.
866 ;; Bindings for this have to go in the global map, as we'll often
867 ;; want to call them from random buffers.
869 ;; Autoloading works fine, but it prevents shortcuts from appearing
870 ;; in the menu because they don't exist yet when the menu is built.
871 ;; (autoload 'vc-prefix-map "vc" nil nil 'keymap)
872 (defvar vc-prefix-map
873 (let ((map (make-sparse-keymap)))
874 (define-key map "a" 'vc-update-change-log)
875 (define-key map "b" 'vc-switch-backend)
876 (define-key map "c" 'vc-cancel-version)
877 (define-key map "d" 'vc-directory)
878 (define-key map "g" 'vc-annotate)
879 (define-key map "h" 'vc-insert-headers)
880 (define-key map "i" 'vc-register)
881 (define-key map "l" 'vc-print-log)
882 (define-key map "m" 'vc-merge)
883 (define-key map "r" 'vc-retrieve-snapshot)
884 (define-key map "s" 'vc-create-snapshot)
885 (define-key map "u" 'vc-revert-buffer)
886 (define-key map "v" 'vc-next-action)
887 (define-key map "=" 'vc-diff)
888 (define-key map "~" 'vc-version-other-window)
889 map))
890 (fset 'vc-prefix-map vc-prefix-map)
891 (define-key global-map "\C-xv" 'vc-prefix-map)
893 (if (not (boundp 'vc-menu-map))
894 ;; Don't do the menu bindings if menu-bar.el wasn't loaded to defvar
895 ;; vc-menu-map.
897 ;;(define-key vc-menu-map [show-files]
898 ;; '("Show Files under VC" . (vc-directory t)))
899 (define-key vc-menu-map [vc-retrieve-snapshot]
900 '("Retrieve Snapshot" . vc-retrieve-snapshot))
901 (define-key vc-menu-map [vc-create-snapshot]
902 '("Create Snapshot" . vc-create-snapshot))
903 (define-key vc-menu-map [vc-directory] '("VC Directory Listing" . vc-directory))
904 (define-key vc-menu-map [separator1] '("----"))
905 (define-key vc-menu-map [vc-annotate] '("Annotate" . vc-annotate))
906 (define-key vc-menu-map [vc-rename-file] '("Rename File" . vc-rename-file))
907 (define-key vc-menu-map [vc-version-other-window]
908 '("Show Other Version" . vc-version-other-window))
909 (define-key vc-menu-map [vc-diff] '("Compare with Base Version" . vc-diff))
910 (define-key vc-menu-map [vc-update-change-log]
911 '("Update ChangeLog" . vc-update-change-log))
912 (define-key vc-menu-map [vc-print-log] '("Show History" . vc-print-log))
913 (define-key vc-menu-map [separator2] '("----"))
914 (define-key vc-menu-map [vc-insert-header]
915 '("Insert Header" . vc-insert-headers))
916 (define-key vc-menu-map [undo] '("Undo Last Check-In" . vc-cancel-version))
917 (define-key vc-menu-map [vc-revert-buffer]
918 '("Revert to Base Version" . vc-revert-buffer))
919 (define-key vc-menu-map [vc-update]
920 '("Update to Latest Version" . vc-update))
921 (define-key vc-menu-map [vc-next-action] '("Check In/Out" . vc-next-action))
922 (define-key vc-menu-map [vc-register] '("Register" . vc-register)))
924 ;; These are not correct and it's not currently clear how doing it
925 ;; better (with more complicated expressions) might slow things down
926 ;; on older systems.
928 ;;(put 'vc-rename-file 'menu-enable 'vc-mode)
929 ;;(put 'vc-annotate 'menu-enable '(eq (vc-buffer-backend) 'CVS))
930 ;;(put 'vc-version-other-window 'menu-enable 'vc-mode)
931 ;;(put 'vc-diff 'menu-enable 'vc-mode)
932 ;;(put 'vc-update-change-log 'menu-enable
933 ;; '(member (vc-buffer-backend) '(RCS CVS)))
934 ;;(put 'vc-print-log 'menu-enable 'vc-mode)
935 ;;(put 'vc-cancel-version 'menu-enable 'vc-mode)
936 ;;(put 'vc-revert-buffer 'menu-enable 'vc-mode)
937 ;;(put 'vc-insert-headers 'menu-enable 'vc-mode)
938 ;;(put 'vc-next-action 'menu-enable 'vc-mode)
939 ;;(put 'vc-register 'menu-enable '(and buffer-file-name (not vc-mode)))
941 (provide 'vc-hooks)
943 ;; arch-tag: 2e5a6fa7-1d30-48e2-8bd0-e3d335f04f32
944 ;;; vc-hooks.el ends here