(frame-parameter) <defsetf>: Make it return the assigned value.
[emacs.git] / lisp / vc-hooks.el
blob05adcd5c6aa6d0e7c9da3a0c008db063c0d846c1
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 'missing The file is not present in the file system, but the VC
521 system still tracks it.
523 'ignored The file showed up in a dir-state listing with a flag
524 indicating the version-control system is ignoring it,
525 Note: This property is not set reliably (some VCSes
526 don't have useful directory-status commands) so assume
527 that any file with vc-state nil might be ignorable
528 without VC knowing it.
530 'unregistered The file showed up in a dir-state listing with a flag
531 indicating that it is not under version control.
532 Note: This property is not set reliably (some VCSes
533 don't have useful directory-status commands) so assume
534 that any file with vc-state nil might be unregistered
535 without VC knowing it.
537 A return of nil from this function means we have no information on the
538 status of this file.
540 ;; Note: in Emacs 22 and older, return of nil meant the file was unregistered.
541 ;; This is potentially a source of backward-compatibility bugs.
543 ;; FIXME: New (sub)states needed (?):
544 ;; - `conflict' (i.e. `edited' with conflict markers)
545 ;; - `removed'
546 ;; - `copied' and `moved' (might be handled by `removed' and `added')
547 (or (vc-file-getprop file 'vc-state)
548 (if (and (> (length file) 0) (vc-backend file))
549 (vc-file-setprop file 'vc-state
550 (vc-call state-heuristic file)))))
552 (defun vc-recompute-state (file)
553 "Recompute the version control state of FILE, and return it.
554 This calls the possibly expensive function vc-BACKEND-state,
555 rather than the heuristic."
556 (vc-file-setprop file 'vc-state (vc-call state file)))
558 (defsubst vc-up-to-date-p (file)
559 "Convenience function that checks whether `vc-state' of FILE is `up-to-date'."
560 (eq (vc-state file) 'up-to-date))
562 (defun vc-default-state-heuristic (backend file)
563 "Default implementation of vc-state-heuristic.
564 It simply calls the real state computation function `vc-BACKEND-state'
565 and does not employ any heuristic at all."
566 (vc-call-backend backend 'state file))
568 (defun vc-workfile-unchanged-p (file)
569 "Return non-nil if FILE has not changed since the last checkout."
570 (let ((checkout-time (vc-file-getprop file 'vc-checkout-time))
571 (lastmod (nth 5 (file-attributes file))))
572 (if (and checkout-time
573 ;; Tramp and Ange-FTP return this when they don't know the time.
574 (not (equal lastmod '(0 0))))
575 (equal checkout-time lastmod)
576 (let ((unchanged (vc-call workfile-unchanged-p file)))
577 (vc-file-setprop file 'vc-checkout-time (if unchanged lastmod 0))
578 unchanged))))
580 (defun vc-default-workfile-unchanged-p (backend file)
581 "Check if FILE is unchanged by diffing against the master version.
582 Return non-nil if FILE is unchanged."
583 (zerop (condition-case err
584 ;; If the implementation supports it, let the output
585 ;; go to *vc*, not *vc-diff*, since this is an internal call.
586 (vc-call diff (list file) nil nil "*vc*")
587 (wrong-number-of-arguments
588 ;; If this error came from the above call to vc-BACKEND-diff,
589 ;; try again without the optional buffer argument (for
590 ;; backward compatibility). Otherwise, resignal.
591 (if (or (not (eq (cadr err)
592 (indirect-function
593 (vc-find-backend-function (vc-backend file)
594 'diff))))
595 (not (eq (caddr err) 4)))
596 (signal (car err) (cdr err))
597 (vc-call diff (list file)))))))
599 (defun vc-working-revision (file)
600 "Return the repository version from which FILE was checked out.
601 If FILE is not registered, this function always returns nil."
602 (or (vc-file-getprop file 'vc-working-revision)
603 (if (vc-backend file)
604 (vc-file-setprop file 'vc-working-revision
605 (vc-call working-revision file)))))
606 ;; Backward compatibility.
607 (define-obsolete-function-alias
608 'vc-workfile-version 'vc-working-revision "23.1")
609 (define-obsolete-function-alias
610 'vc-previous-version 'vc-previous-revision "23.1")
611 (defun vc-default-working-revision (backend file)
612 (message
613 "`working-revision' not found: using the old `workfile-version' instead")
614 (vc-call-backend backend 'workfile-version file))
616 (defun vc-default-registered (backend file)
617 "Check if FILE is registered in BACKEND using vc-BACKEND-master-templates."
618 (let ((sym (vc-make-backend-sym backend 'master-templates)))
619 (unless (get backend 'vc-templates-grabbed)
620 (put backend 'vc-templates-grabbed t)
621 (set sym (append (delq nil
622 (mapcar
623 (lambda (template)
624 (and (consp template)
625 (eq (cdr template) backend)
626 (car template)))
627 (with-no-warnings
628 vc-master-templates)))
629 (symbol-value sym))))
630 (let ((result (vc-check-master-templates file (symbol-value sym))))
631 (if (stringp result)
632 (vc-file-setprop file 'vc-name result)
633 nil)))) ; Not registered
635 (defun vc-possible-master (s dirname basename)
636 (cond
637 ((stringp s) (format s dirname basename))
638 ((functionp s)
639 ;; The template is a function to invoke. If the
640 ;; function returns non-nil, that means it has found a
641 ;; master. For backward compatibility, we also handle
642 ;; the case that the function throws a 'found atom
643 ;; and a pair (cons MASTER-FILE BACKEND).
644 (let ((result (catch 'found (funcall s dirname basename))))
645 (if (consp result) (car result) result)))))
647 (defun vc-check-master-templates (file templates)
648 "Return non-nil if there is a master corresponding to FILE.
650 TEMPLATES is a list of strings or functions. If an element is a
651 string, it must be a control string as required by `format', with two
652 string placeholders, such as \"%sRCS/%s,v\". The directory part of
653 FILE is substituted for the first placeholder, the basename of FILE
654 for the second. If a file with the resulting name exists, it is taken
655 as the master of FILE, and returned.
657 If an element of TEMPLATES is a function, it is called with the
658 directory part and the basename of FILE as arguments. It should
659 return non-nil if it finds a master; that value is then returned by
660 this function."
661 (let ((dirname (or (file-name-directory file) ""))
662 (basename (file-name-nondirectory file)))
663 (catch 'found
664 (mapcar
665 (lambda (s)
666 (let ((trial (vc-possible-master s dirname basename)))
667 (if (and trial (file-exists-p trial)
668 ;; Make sure the file we found with name
669 ;; TRIAL is not the source file itself.
670 ;; That can happen with RCS-style names if
671 ;; the file name is truncated (e.g. to 14
672 ;; chars). See if either directory or
673 ;; attributes differ.
674 (or (not (string= dirname
675 (file-name-directory trial)))
676 (not (equal (file-attributes file)
677 (file-attributes trial)))))
678 (throw 'found trial))))
679 templates))))
681 (defun vc-toggle-read-only (&optional verbose)
682 "Change read-only status of current buffer, perhaps via version control.
684 If the buffer is visiting a file registered with version control,
685 then check the file in or out. Otherwise, just change the read-only flag
686 of the buffer.
687 With prefix argument, ask for version number to check in or check out.
688 Check-out of a specified version number does not lock the file;
689 to do that, use this command a second time with no argument.
691 If you bind this function to \\[toggle-read-only], then Emacs checks files
692 in or out whenever you toggle the read-only flag."
693 (interactive "P")
694 (if (or (and (boundp 'vc-dired-mode) vc-dired-mode)
695 ;; use boundp because vc.el might not be loaded
696 (vc-backend buffer-file-name))
697 (vc-next-action verbose)
698 (toggle-read-only)))
700 (defun vc-default-make-version-backups-p (backend file)
701 "Return non-nil if unmodified versions should be backed up locally.
702 The default is to switch off this feature."
703 nil)
705 (defun vc-version-backup-file-name (file &optional rev manual regexp)
706 "Return a backup file name for REV or the current version of FILE.
707 If MANUAL is non-nil it means that a name for backups created by
708 the user should be returned; if REGEXP is non-nil that means to return
709 a regexp for matching all such backup files, regardless of the version."
710 (if regexp
711 (concat (regexp-quote (file-name-nondirectory file))
712 "\\.~.+" (unless manual "\\.") "~")
713 (expand-file-name (concat (file-name-nondirectory file)
714 ".~" (subst-char-in-string
715 ?/ ?_ (or rev (vc-working-revision file)))
716 (unless manual ".") "~")
717 (file-name-directory file))))
719 (defun vc-delete-automatic-version-backups (file)
720 "Delete all existing automatic version backups for FILE."
721 (condition-case nil
722 (mapc
723 'delete-file
724 (directory-files (or (file-name-directory file) default-directory) t
725 (vc-version-backup-file-name file nil nil t)))
726 ;; Don't fail when the directory doesn't exist.
727 (file-error nil)))
729 (defun vc-make-version-backup (file)
730 "Make a backup copy of FILE, which is assumed in sync with the repository.
731 Before doing that, check if there are any old backups and get rid of them."
732 (unless (and (fboundp 'msdos-long-file-names)
733 (not (with-no-warnings (msdos-long-file-names))))
734 (vc-delete-automatic-version-backups file)
735 (condition-case nil
736 (copy-file file (vc-version-backup-file-name file)
737 nil 'keep-date)
738 ;; It's ok if it doesn't work (e.g. directory not writable),
739 ;; since this is just for efficiency.
740 (file-error
741 (message
742 (concat "Warning: Cannot make version backup; "
743 "diff/revert therefore not local"))))))
745 (defun vc-before-save ()
746 "Function to be called by `basic-save-buffer' (in files.el)."
747 ;; If the file on disk is still in sync with the repository,
748 ;; and version backups should be made, copy the file to
749 ;; another name. This enables local diffs and local reverting.
750 (let ((file buffer-file-name))
751 (ignore-errors ;Be careful not to prevent saving the file.
752 (and (vc-backend file)
753 (vc-up-to-date-p file)
754 (eq (vc-checkout-model file) 'implicit)
755 (vc-call make-version-backups-p file)
756 (vc-make-version-backup file)))))
758 (declare-function vc-dired-resynch-file "vc" (file))
760 (defun vc-after-save ()
761 "Function to be called by `basic-save-buffer' (in files.el)."
762 ;; If the file in the current buffer is under version control,
763 ;; up-to-date, and locking is not used for the file, set
764 ;; the state to 'edited and redisplay the mode line.
765 (let ((file buffer-file-name))
766 (and (vc-backend file)
767 (or (and (equal (vc-file-getprop file 'vc-checkout-time)
768 (nth 5 (file-attributes file)))
769 ;; File has been saved in the same second in which
770 ;; it was checked out. Clear the checkout-time
771 ;; to avoid confusion.
772 (vc-file-setprop file 'vc-checkout-time nil))
774 (vc-up-to-date-p file)
775 (eq (vc-checkout-model file) 'implicit)
776 (vc-file-setprop file 'vc-state 'edited)
777 (vc-mode-line file)
778 (if (featurep 'vc)
779 ;; If VC is not loaded, then there can't be
780 ;; any VC Dired buffer to synchronize.
781 (vc-dired-resynch-file file)))))
783 (defvar vc-menu-entry
784 '(menu-item "Version Control" vc-menu-map
785 :filter vc-menu-map-filter))
787 (when (boundp 'menu-bar-tools-menu)
788 ;; We do not need to worry here about the placement of this entry
789 ;; because menu-bar.el has already created the proper spot for us
790 ;; and this will simply use it.
791 (define-key menu-bar-tools-menu [vc] vc-menu-entry))
793 (defconst vc-mode-line-map
794 (let ((map (make-sparse-keymap)))
795 (define-key map [mode-line down-mouse-1] vc-menu-entry)
796 map))
798 (defun vc-mode-line (file)
799 "Set `vc-mode' to display type of version control for FILE.
800 The value is set in the current buffer, which should be the buffer
801 visiting FILE."
802 (interactive (list buffer-file-name))
803 (let ((backend (vc-backend file)))
804 (if (not backend)
805 (setq vc-mode nil)
806 (let* ((ml-string (vc-call mode-line-string file))
807 (ml-echo (get-text-property 0 'help-echo ml-string)))
808 (setq vc-mode
809 (concat
811 (if (null vc-display-status)
812 (symbol-name backend)
813 (propertize
814 ml-string
815 'mouse-face 'mode-line-highlight
816 'help-echo
817 (concat (or ml-echo
818 (format "File under the %s version control system"
819 backend))
820 "\nmouse-1: Version Control menu")
821 'local-map vc-mode-line-map)))))
822 ;; If the file is locked by some other user, make
823 ;; the buffer read-only. Like this, even root
824 ;; cannot modify a file that someone else has locked.
825 (and (equal file buffer-file-name)
826 (stringp (vc-state file))
827 (setq buffer-read-only t))
828 ;; If the user is root, and the file is not owner-writable,
829 ;; then pretend that we can't write it
830 ;; even though we can (because root can write anything).
831 ;; This way, even root cannot modify a file that isn't locked.
832 (and (equal file buffer-file-name)
833 (not buffer-read-only)
834 (zerop (user-real-uid))
835 (zerop (logand (file-modes buffer-file-name) 128))
836 (setq buffer-read-only t)))
837 (force-mode-line-update)
838 backend))
840 (defun vc-default-mode-line-string (backend file)
841 "Return string for placement in modeline by `vc-mode-line' for FILE.
842 Format:
844 \"BACKEND-REV\" if the file is up-to-date
845 \"BACKEND:REV\" if the file is edited (or locked by the calling user)
846 \"BACKEND:LOCKER:REV\" if the file is locked by somebody else
848 This function assumes that the file is registered."
849 (setq backend (symbol-name backend))
850 (let ((state (vc-state file))
851 (state-echo nil)
852 (rev (vc-working-revision file)))
853 (propertize
854 (cond ((or (eq state 'up-to-date)
855 (eq state 'needs-patch))
856 (setq state-echo "Up to date file")
857 (concat backend "-" rev))
858 ((stringp state)
859 (setq state-echo (concat "File locked by" state))
860 (concat backend ":" state ":" rev))
861 ((eq state 'added)
862 (setq state-echo "Locally added file")
863 (concat backend "@" rev))
864 ((eq state 'removed)
865 (setq state-echo "File removed from the VC system")
866 (concat backend "!" rev))
867 ((eq state 'missing)
868 (setq state-echo "File tracked by the VC system, but missing from the file system")
869 (concat backend "^" rev))
871 ;; Not just for the 'edited state, but also a fallback
872 ;; for all other states. Think about different symbols
873 ;; for 'needs-patch and 'needs-merge.
874 (setq state-echo "Locally modified file")
875 (concat backend ":" rev)))
876 'help-echo (concat state-echo " under the " backend
877 " version control system"))))
879 (defun vc-follow-link ()
880 "If current buffer visits a symbolic link, visit the real file.
881 If the real file is already visited in another buffer, make that buffer
882 current, and kill the buffer that visits the link."
883 (let* ((truename (abbreviate-file-name (file-chase-links buffer-file-name)))
884 (true-buffer (find-buffer-visiting truename))
885 (this-buffer (current-buffer)))
886 (if (eq true-buffer this-buffer)
887 (progn
888 (kill-buffer this-buffer)
889 ;; In principle, we could do something like set-visited-file-name.
890 ;; However, it can't be exactly the same as set-visited-file-name.
891 ;; I'm not going to work out the details right now. -- rms.
892 (set-buffer (find-file-noselect truename)))
893 (set-buffer true-buffer)
894 (kill-buffer this-buffer))))
896 (defun vc-default-find-file-hook (backend)
897 nil)
899 (defun vc-find-file-hook ()
900 "Function for `find-file-hook' activating VC mode if appropriate."
901 ;; Recompute whether file is version controlled,
902 ;; if user has killed the buffer and revisited.
903 (if vc-mode
904 (setq vc-mode nil))
905 (when buffer-file-name
906 (vc-file-clearprops buffer-file-name)
907 (cond
908 ((with-demoted-errors (vc-backend buffer-file-name))
909 ;; Compute the state and put it in the modeline.
910 (vc-mode-line buffer-file-name)
911 (unless vc-make-backup-files
912 ;; Use this variable, not make-backup-files,
913 ;; because this is for things that depend on the file name.
914 (set (make-local-variable 'backup-inhibited) t))
915 ;; Let the backend setup any buffer-local things he needs.
916 (vc-call-backend (vc-backend buffer-file-name) 'find-file-hook))
917 ((let ((link-type (and (file-symlink-p buffer-file-name)
918 (vc-backend (file-chase-links buffer-file-name)))))
919 (cond ((not link-type) nil) ;Nothing to do.
920 ((eq vc-follow-symlinks nil)
921 (message
922 "Warning: symbolic link to %s-controlled source file" link-type))
923 ((or (not (eq vc-follow-symlinks 'ask))
924 ;; If we already visited this file by following
925 ;; the link, don't ask again if we try to visit
926 ;; it again. GUD does that, and repeated questions
927 ;; are painful.
928 (get-file-buffer
929 (abbreviate-file-name
930 (file-chase-links buffer-file-name))))
932 (vc-follow-link)
933 (message "Followed link to %s" buffer-file-name)
934 (vc-find-file-hook))
936 (if (yes-or-no-p (format
937 "Symbolic link to %s-controlled source file; follow link? " link-type))
938 (progn (vc-follow-link)
939 (message "Followed link to %s" buffer-file-name)
940 (vc-find-file-hook))
941 (message
942 "Warning: editing through the link bypasses version control")
943 ))))))))
945 (add-hook 'find-file-hook 'vc-find-file-hook)
947 ;; more hooks, this time for file-not-found
948 (defun vc-file-not-found-hook ()
949 "When file is not found, try to check it out from version control.
950 Returns t if checkout was successful, nil otherwise.
951 Used in `find-file-not-found-functions'."
952 ;; When a file does not exist, ignore cached info about it
953 ;; from a previous visit.
954 (vc-file-clearprops buffer-file-name)
955 (let ((backend (vc-backend buffer-file-name)))
956 (if backend (vc-call-backend backend 'find-file-not-found-hook))))
958 (defun vc-default-find-file-not-found-hook (backend)
959 ;; This used to do what vc-rcs-find-file-not-found-hook does, but it only
960 ;; really makes sense for RCS. For other backends, better not do anything.
961 nil)
963 (add-hook 'find-file-not-found-functions 'vc-file-not-found-hook)
965 (defun vc-kill-buffer-hook ()
966 "Discard VC info about a file when we kill its buffer."
967 (if buffer-file-name
968 (vc-file-clearprops buffer-file-name)))
970 (add-hook 'kill-buffer-hook 'vc-kill-buffer-hook)
972 ;; Now arrange for (autoloaded) bindings of the main package.
973 ;; Bindings for this have to go in the global map, as we'll often
974 ;; want to call them from random buffers.
976 ;; Autoloading works fine, but it prevents shortcuts from appearing
977 ;; in the menu because they don't exist yet when the menu is built.
978 ;; (autoload 'vc-prefix-map "vc" nil nil 'keymap)
979 (defvar vc-prefix-map
980 (let ((map (make-sparse-keymap)))
981 (define-key map "a" 'vc-update-change-log)
982 (define-key map "b" 'vc-switch-backend)
983 (define-key map "c" 'vc-rollback)
984 (define-key map "d" 'vc-directory)
985 (define-key map "g" 'vc-annotate)
986 (define-key map "h" 'vc-insert-headers)
987 (define-key map "i" 'vc-register)
988 (define-key map "l" 'vc-print-log)
989 (define-key map "m" 'vc-merge)
990 (define-key map "r" 'vc-retrieve-snapshot)
991 (define-key map "s" 'vc-create-snapshot)
992 (define-key map "u" 'vc-revert)
993 (define-key map "v" 'vc-next-action)
994 (define-key map "+" 'vc-update)
995 (define-key map "=" 'vc-diff)
996 (define-key map "~" 'vc-revision-other-window)
997 ;; `vc-status' is a not-quite-ready replacement for `vc-directory'
998 ;; (define-key map "?" 'vc-status)
999 map))
1000 (fset 'vc-prefix-map vc-prefix-map)
1001 (define-key global-map "\C-xv" 'vc-prefix-map)
1003 (defvar vc-menu-map
1004 (let ((map (make-sparse-keymap "Version Control")))
1005 ;;(define-key map [show-files]
1006 ;; '("Show Files under VC" . (vc-directory t)))
1007 (define-key map [vc-retrieve-snapshot]
1008 '(menu-item "Retrieve Snapshot" vc-retrieve-snapshot
1009 :help "Retrieve snapshot"))
1010 (define-key map [vc-create-snapshot]
1011 '(menu-item "Create Snapshot" vc-create-snapshot
1012 :help "Create Snapshot"))
1013 (define-key map [vc-directory]
1014 '(menu-item "VC Directory Listing" vc-directory
1015 :help "Show the VC status of files in a directory"))
1016 ;; `vc-status' is a not-quite-ready replacement for `vc-directory'
1017 ;; (define-key map [vc-status] '("VC Status" . vc-status))
1018 (define-key map [separator1] '("----"))
1019 (define-key map [vc-annotate]
1020 '(menu-item "Annotate" vc-annotate
1021 :help "Display the edit history of the current file using colors"))
1022 (define-key map [vc-rename-file]
1023 '(menu-item "Rename File" vc-rename-file
1024 :help "Rename file"))
1025 (define-key map [vc-revision-other-window]
1026 '(menu-item "Show Other Version" vc-revision-other-window
1027 :help "Visit another version of the current file in another window"))
1028 (define-key map [vc-diff]
1029 '(menu-item "Compare with Base Version" vc-diff
1030 :help "Compare file set with the base version"))
1031 (define-key map [vc-update-change-log]
1032 '(menu-item "Update ChangeLog" vc-update-change-log
1033 :help "Find change log file and add entries from recent version control logs"))
1034 (define-key map [vc-print-log]
1035 '(menu-item "Show History" vc-print-log
1036 :help "List the change log of the current file set in a window"))
1037 (define-key map [separator2] '("----"))
1038 (define-key map [vc-insert-header]
1039 '(menu-item "Insert Header" vc-insert-headers
1040 :help "Insert headers into a file for use with a version control system.
1042 (define-key map [undo]
1043 '(menu-item "Undo Last Check-In" vc-rollback
1044 :help "Remove the most recent changeset committed to the repository"))
1045 (define-key map [vc-revert]
1046 '(menu-item "Revert to Base Version" vc-revert
1047 :help "Revert working copies of the selected file set to their repository contents"))
1048 (define-key map [vc-update]
1049 '(menu-item "Update to Latest Version" vc-update
1050 :help "Update the current fileset's files to their tip revisions"))
1051 (define-key map [vc-next-action]
1052 '(menu-item "Check In/Out" vc-next-action
1053 :help "Do the next logical version control operation on the current fileset"))
1054 (define-key map [vc-register]
1055 '(menu-item "Register" vc-register
1056 :help "Register file set into a version control system"))
1057 map))
1059 (defalias 'vc-menu-map vc-menu-map)
1061 (declare-function vc-responsible-backend "vc" (file &optional register))
1063 (defun vc-menu-map-filter (orig-binding)
1064 (if (and (symbolp orig-binding) (fboundp orig-binding))
1065 (setq orig-binding (indirect-function orig-binding)))
1066 (let ((ext-binding
1067 (when vc-mode
1068 (vc-call-backend
1069 (if buffer-file-name
1070 (vc-backend buffer-file-name)
1071 (vc-responsible-backend default-directory))
1072 'extra-menu))))
1073 ;; Give the VC backend a chance to add menu entries
1074 ;; specific for that backend.
1075 (if (null ext-binding)
1076 orig-binding
1077 (append orig-binding
1078 '((ext-menu-separator "---"))
1079 ext-binding))))
1081 (defun vc-default-extra-menu (backend)
1082 nil)
1084 ;; These are not correct and it's not currently clear how doing it
1085 ;; better (with more complicated expressions) might slow things down
1086 ;; on older systems.
1088 ;;(put 'vc-rename-file 'menu-enable 'vc-mode)
1089 ;;(put 'vc-annotate 'menu-enable '(eq (vc-buffer-backend) 'CVS))
1090 ;;(put 'vc-revision-other-window 'menu-enable 'vc-mode)
1091 ;;(put 'vc-diff 'menu-enable 'vc-mode)
1092 ;;(put 'vc-update-change-log 'menu-enable
1093 ;; '(member (vc-buffer-backend) '(RCS CVS)))
1094 ;;(put 'vc-print-log 'menu-enable 'vc-mode)
1095 ;;(put 'vc-rollback 'menu-enable 'vc-mode)
1096 ;;(put 'vc-revert 'menu-enable 'vc-mode)
1097 ;;(put 'vc-insert-headers 'menu-enable 'vc-mode)
1098 ;;(put 'vc-next-action 'menu-enable 'vc-mode)
1099 ;;(put 'vc-register 'menu-enable '(and buffer-file-name (not vc-mode)))
1101 (provide 'vc-hooks)
1103 ;; arch-tag: 2e5a6fa7-1d30-48e2-8bd0-e3d335f04f32
1104 ;;; vc-hooks.el ends here