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