1 ;;; vc-hooks.el -- resident support for version-control
3 ;; Copyright (C) 1992 Free Software Foundation, Inc.
5 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
8 ;; $Id: vc-hooks.el,v 1.9 1993/03/16 20:21:05 eggert Exp eric $
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to
24 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
28 ;; See the commentary of vc.el.
32 (defvar vc-master-templates
33 '(("%sRCS/%s,v" . RCS
) ("%s%s,v" . RCS
) ("%sRCS/%s" . RCS
)
34 ("%sSCCS/s.%s" . SCCS
) ("%ss.%s". SCCS
))
35 "*Where to look for version-control master files.
36 The first pair corresponding to a given back end is used as a template
37 when creating new masters.")
39 (defvar vc-make-backup-files nil
40 "*If non-nil, backups of registered files are made according to
41 the make-backup-files variable. Otherwise, prevents backups being made.")
43 ;; Tell Emacs about this new kind of minor mode
44 (if (not (assoc 'vc-mode-string minor-mode-alist
))
45 (setq minor-mode-alist
(cons '(vc-mode-string vc-mode-string
)
48 (make-variable-buffer-local 'vc-mode-string
)
50 ;; We need a notion of per-file properties because the version
51 ;; control state of a file is expensive to derive --- we don't
52 ;; want to recompute it even on every find.
54 (defmacro vc-error-occurred
(&rest body
)
55 (list 'condition-case nil
(cons 'progn
(append body
'(nil))) '(error t
)))
57 (defvar vc-file-prop-obarray
[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]
58 "Obarray for per-file properties.")
60 (defun vc-file-setprop (file property value
)
61 ;; set per-file property
62 (put (intern file vc-file-prop-obarray
) property value
))
64 (defun vc-file-getprop (file property
)
65 ;; get per-file property
66 (get (intern file vc-file-prop-obarray
) property
))
68 ;;; actual version-control code starts here
70 (defun vc-registered (file)
71 (let (handler handlers
)
72 (if (boundp 'file-name-handler-alist
)
74 (setq handlers file-name-handler-alist
)
75 (while (and (consp handlers
) (null handler
))
76 (if (and (consp (car handlers
))
77 (stringp (car (car handlers
)))
78 (string-match (car (car handlers
)) file
))
79 (setq handler
(cdr (car handlers
))))
80 (setq handlers
(cdr handlers
)))))
82 (funcall handler
'vc-registered file
)
83 ;; Search for a master corresponding to the given file
84 (let ((dirname (or (file-name-directory file
) ""))
85 (basename (file-name-nondirectory file
)))
89 (let ((trial (format (car s
) dirname basename
)))
90 (if (and (file-exists-p trial
)
91 ;; Make sure the file we found with name
92 ;; TRIAL is not the source file itself.
93 ;; That can happen with RCS-style names
94 ;; if the file name is truncated
95 ;; (e.g. to 14 chars). See if either
96 ;; directory or attributes differ.
97 (or (not (string= dirname
98 (file-name-directory trial
)))
100 (file-attributes file
)
101 (file-attributes trial
)))))
102 (throw 'found
(cons trial
(cdr s
)))))))
106 (defun vc-backend-deduce (file)
107 "Return the version-control type of a file, nil if it is not registered"
109 (or (vc-file-getprop file
'vc-backend
)
110 (vc-file-setprop file
'vc-backend
(cdr (vc-registered file
))))))
112 (defun vc-toggle-read-only ()
113 "If the file in the current buffer is under version control, perform the
114 logical next version-control action; otherwise, just toggle the buffer's
117 (if (vc-backend-deduce (buffer-file-name))
121 (defun vc-mode-line (file &optional label
)
122 "Set `vc-mode-string' to display type of version control for FILE.
123 The value is set in the current buffer, which should be the buffer
125 (interactive (list buffer-file-name nil
))
126 (let ((vc-type (vc-backend-deduce file
)))
129 (if (null (current-local-map))
130 (use-local-map (make-sparse-keymap)))
131 (define-key (current-local-map) "\C-x\C-q" 'vc-toggle-read-only
)
133 (concat " " (or label
(symbol-name vc-type
))))))
134 ;; force update of mode line
135 (set-buffer-modified-p (buffer-modified-p))
138 ;;; install a call to the above as a find-file hook
139 (defun vc-find-file-hook ()
140 ;; Recompute whether file is version controlled,
141 ;; if user has killed the buffer and revisited.
142 (vc-file-setprop buffer-file-name
'vc-backend nil
)
143 (if (and (vc-mode-line buffer-file-name
) (not vc-make-backup-files
))
145 (make-local-variable 'make-backup-files
)
146 (setq make-backup-files nil
))))
148 (or (memq 'vc-find-file-hook find-file-hooks
)
149 (setq find-file-hooks
150 (cons 'vc-find-file-hook find-file-hooks
)))
152 ;;; more hooks, this time for file-not-found
153 (defun vc-file-not-found-hook ()
154 "When file is not found, try to check it out from RCS or SCCS.
155 Returns t if checkout was successful, nil otherwise."
156 (if (vc-backend-deduce buffer-file-name
)
159 (not (vc-error-occurred (vc-checkout buffer-file-name
))))))
161 (or (memq 'vc-file-not-found-hook find-file-not-found-hooks
)
162 (setq find-file-not-found-hooks
163 (cons 'vc-file-not-found-hook find-file-not-found-hooks
)))
165 ;;; Now arrange for bindings and autoloading of the main package.
166 ;;; Bindings for this have to go in the global map, as it may have
167 ;;; to coexist with a lot of different major modes.
169 (setq vc-prefix-map
(lookup-key global-map
"\C-xv"))
170 (if (not (keymapp vc-prefix-map
))
172 (setq vc-prefix-map
(make-sparse-keymap))
173 (define-key global-map
"\C-xv" vc-prefix-map
)
174 (define-key vc-prefix-map
"a" 'vc-update-change-log
)
175 (define-key vc-prefix-map
"c" 'vc-cancel-version
)
176 (define-key vc-prefix-map
"d" 'vc-directory
)
177 (define-key vc-prefix-map
"h" 'vc-insert-headers
)
178 (define-key vc-prefix-map
"i" 'vc-register
)
179 (define-key vc-prefix-map
"l" 'vc-print-log
)
180 (define-key vc-prefix-map
"r" 'vc-retrieve-snapshot
)
181 (define-key vc-prefix-map
"s" 'vc-create-snapshot
)
182 (define-key vc-prefix-map
"u" 'vc-revert-buffer
)
183 (define-key vc-prefix-map
"v" 'vc-next-action
)
184 (define-key vc-prefix-map
"=" 'vc-diff
)
189 ;;; vc-hooks.el ends here