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