]> code.delx.au - gnu-emacs/blob - lisp/vc.el
(replace_buffer_in_all_windows): Only re-select old
[gnu-emacs] / lisp / vc.el
1 ;;; vc.el --- drive a version-control system from within Emacs
2
3 ;; Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
4
5 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
6 ;; Modified by:
7 ;; ttn@netcom.com
8 ;; Per Cederqvist <ceder@lysator.liu.edu>
9 ;; Andre Spiegel <spiegel@berlin.informatik.uni-stuttgart.de>
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 2, or (at your option)
16 ;; 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; see the file COPYING. If not, write to
25 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
26
27 ;;; Commentary:
28
29 ;; This mode is fully documented in the Emacs user's manual.
30 ;;
31 ;; This was designed and implemented by Eric Raymond <esr@snark.thyrsus.com>.
32 ;; Paul Eggert <eggert@twinsun.com>, Sebastian Kremer <sk@thp.uni-koeln.de>,
33 ;; and Richard Stallman contributed valuable criticism, support, and testing.
34 ;; CVS support was added by Per Cederqvist <ceder@lysator.liu.se>
35 ;; in Jan-Feb 1994.
36 ;;
37 ;; Supported version-control systems presently include SCCS, RCS, and CVS.
38 ;;
39 ;; Some features will not work with old RCS versions. Where
40 ;; appropriate, VC finds out which version you have, and allows or
41 ;; disallows those features (stealing locks, for example, works only
42 ;; from 5.6.2 onwards).
43 ;; Even initial checkins will fail if your RCS version is so old that ci
44 ;; doesn't understand -t-; this has been known to happen to people running
45 ;; NExTSTEP 3.0.
46 ;;
47 ;; You can support the RCS -x option by adding pairs to the
48 ;; vc-master-templates list.
49 ;;
50 ;; Proper function of the SCCS diff commands requires the shellscript vcdiff
51 ;; to be installed somewhere on Emacs's path for executables.
52 ;;
53 ;; If your site uses the ChangeLog convention supported by Emacs, the
54 ;; function vc-comment-to-change-log should prove a useful checkin hook.
55 ;;
56 ;; This code depends on call-process passing back the subprocess exit
57 ;; status. Thus, you need Emacs 18.58 or later to run it. For the
58 ;; vc-directory command to work properly as documented, you need 19.
59 ;; You also need Emacs 19's ring.el.
60 ;;
61 ;; The vc code maintains some internal state in order to reduce expensive
62 ;; version-control operations to a minimum. Some names are only computed
63 ;; once. If you perform version control operations with RCS/SCCS/CVS while
64 ;; vc's back is turned, or move/rename master files while vc is running,
65 ;; vc may get seriously confused. Don't do these things!
66 ;;
67 ;; Developer's notes on some concurrency issues are included at the end of
68 ;; the file.
69
70 ;;; Code:
71
72 (require 'vc-hooks)
73 (require 'ring)
74 (eval-when-compile (require 'dired)) ; for dired-map-over-marks macro
75
76 (if (not (assoc 'vc-parent-buffer minor-mode-alist))
77 (setq minor-mode-alist
78 (cons '(vc-parent-buffer vc-parent-buffer-name)
79 minor-mode-alist)))
80
81 ;; To implement support for a new version-control system, add another
82 ;; branch to the vc-backend-dispatch macro and fill it in in each
83 ;; call. The variable vc-master-templates in vc-hooks.el will also
84 ;; have to change.
85
86 (defmacro vc-backend-dispatch (f s r c)
87 "Execute FORM1, FORM2 or FORM3 for SCCS, RCS or CVS respectively.
88 If FORM3 is `RCS', use FORM2 for CVS as well as RCS.
89 \(CVS shares some code with RCS)."
90 (list 'let (list (list 'type (list 'vc-backend f)))
91 (list 'cond
92 (list (list 'eq 'type (quote 'SCCS)) s) ;; SCCS
93 (list (list 'eq 'type (quote 'RCS)) r) ;; RCS
94 (list (list 'eq 'type (quote 'CVS)) ;; CVS
95 (if (eq c 'RCS) r c))
96 )))
97
98 ;; General customization
99
100 (defvar vc-suppress-confirm nil
101 "*If non-nil, treat user as expert; suppress yes-no prompts on some things.")
102 (defvar vc-initial-comment nil
103 "*If non-nil, prompt for initial comment when a file is registered.")
104 (defvar vc-command-messages nil
105 "*If non-nil, display run messages from back-end commands.")
106 (defvar vc-checkin-switches nil
107 "*A string or list of strings specifying extra switches passed
108 to the checkin program by \\[vc-checkin].")
109 (defvar vc-checkout-switches nil
110 "*A string or list of strings specifying extra switches passed
111 to the checkout program by \\[vc-checkout].")
112 (defvar vc-directory-exclusion-list '("SCCS" "RCS" "CVS")
113 "*A list of directory names ignored by functions that recursively
114 walk file trees.")
115
116 (defconst vc-maximum-comment-ring-size 32
117 "Maximum number of saved comments in the comment ring.")
118
119 ;;; This is duplicated in diff.el.
120 (defvar diff-switches "-c"
121 "*A string or list of strings specifying switches to be be passed to diff.")
122
123 ;;;###autoload
124 (defvar vc-checkin-hook nil
125 "*List of functions called after a checkin is done. See `run-hooks'.")
126
127 (defvar vc-make-buffer-writable-hook nil
128 "*List of functions called when a buffer is made writable. See `run-hooks.'
129 This hook is only used when the version control system is CVS. It
130 might be useful for sites who uses locking with CVS, or who uses link
131 farms to gold trees.")
132
133 ;; Header-insertion hair
134
135 (defvar vc-header-alist
136 '((SCCS "\%W\%") (RCS "\$Id\$") (CVS "\$Id\$"))
137 "*Header keywords to be inserted by `vc-insert-headers'.
138 Must be a list of two-element lists, the first element of each must
139 be `RCS', `CVS', or `SCCS'. The second element is the string to
140 be inserted for this particular backend.")
141 (defvar vc-static-header-alist
142 '(("\\.c$" .
143 "\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n#endif /* lint */\n"))
144 "*Associate static header string templates with file types. A \%s in the
145 template is replaced with the first string associated with the file's
146 version-control type in `vc-header-alist'.")
147
148 (defvar vc-comment-alist
149 '((nroff-mode ".\\\"" ""))
150 "*Special comment delimiters to be used in generating vc headers only.
151 Add an entry in this list if you need to override the normal comment-start
152 and comment-end variables. This will only be necessary if the mode language
153 is sensitive to blank lines.")
154
155 ;; Default is to be extra careful for super-user.
156 (defvar vc-checkout-carefully (= (user-uid) 0)
157 "*Non-nil means be extra-careful in checkout.
158 Verify that the file really is not locked
159 and that its contents match what the master file says.")
160
161 (defvar vc-rcs-release nil
162 "*The release number of your RCS installation, as a string.
163 If nil, VC itself computes this value when it is first needed.")
164
165 (defvar vc-sccs-release nil
166 "*The release number of your SCCS installation, as a string.
167 If nil, VC itself computes this value when it is first needed.")
168
169 (defvar vc-cvs-release nil
170 "*The release number of your CVS installation, as a string.
171 If nil, VC itself computes this value when it is first needed.")
172
173 ;; Variables the user doesn't need to know about.
174 (defvar vc-log-entry-mode nil)
175 (defvar vc-log-operation nil)
176 (defvar vc-log-after-operation-hook nil)
177 (defvar vc-checkout-writable-buffer-hook 'vc-checkout-writable-buffer)
178 ;; In a log entry buffer, this is a local variable
179 ;; that points to the buffer for which it was made
180 ;; (either a file, or a VC dired buffer).
181 (defvar vc-parent-buffer nil)
182 (defvar vc-parent-buffer-name nil)
183
184 (defvar vc-log-file)
185 (defvar vc-log-version)
186
187 (defconst vc-name-assoc-file "VC-names")
188
189 (defvar vc-dired-mode nil)
190 (make-variable-buffer-local 'vc-dired-mode)
191
192 (defvar vc-comment-ring nil)
193 (defvar vc-comment-ring-index nil)
194 (defvar vc-last-comment-match nil)
195
196 ;; Back-portability to Emacs 18
197
198 (defun file-executable-p-18 (f)
199 (let ((modes (file-modes f)))
200 (and modes (not (zerop (logand 292))))))
201
202 (defun file-regular-p-18 (f)
203 (let ((attributes (file-attributes f)))
204 (and attributes (not (car attributes)))))
205
206 ; Conditionally rebind some things for Emacs 18 compatibility
207 (if (not (boundp 'minor-mode-map-alist))
208 (progn
209 (setq compilation-old-error-list nil)
210 (fset 'file-executable-p 'file-executable-p-18)
211 (fset 'shrink-window-if-larger-than-buffer 'beginning-of-buffer)
212 ))
213
214 (if (not (fboundp 'file-regular-p))
215 (fset 'file-regular-p 'file-regular-p-18))
216
217 ;;; Find and compare backend releases
218
219 (defun vc-backend-release (backend)
220 ;; Returns which backend release is installed on this system.
221 (cond
222 ((eq backend 'RCS)
223 (or vc-rcs-release
224 (and (zerop (vc-do-command nil 2 "rcs" nil nil "-V"))
225 (save-excursion
226 (set-buffer (get-buffer "*vc*"))
227 (setq vc-rcs-release
228 (car (vc-parse-buffer
229 '(("^RCS version \\([0-9.]+ *.*\\)" 1)))))))
230 (setq vc-rcs-release 'unknown)))
231 ((eq backend 'CVS)
232 (or vc-cvs-release
233 (and (zerop (vc-do-command nil 1 "cvs" nil nil "-v"))
234 (save-excursion
235 (set-buffer (get-buffer "*vc*"))
236 (setq vc-cvs-release
237 (car (vc-parse-buffer
238 '(("^Concurrent Versions System (CVS) \\([0-9.]+\\)"
239 1)))))))
240 (setq vc-cvs-release 'unknown)))
241 ((eq backend 'SCCS)
242 vc-sccs-release)))
243
244 (defun vc-release-greater-or-equal (r1 r2)
245 ;; Compare release numbers, represented as strings.
246 ;; Release components are assumed cardinal numbers, not decimal
247 ;; fractions (5.10 is a higher release than 5.9). Omitted fields
248 ;; are considered lower (5.6.7 is earlier than 5.6.7.1).
249 ;; Comparison runs till the end of the string is found, or a
250 ;; non-numeric component shows up (5.6.7 is earlier than "5.6.7 beta",
251 ;; which is probably not what you want in some cases).
252 ;; This code is suitable for existing RCS release numbers.
253 ;; CVS releases are handled reasonably, too (1.3 < 1.4* < 1.5).
254 (let (v1 v2 i1 i2)
255 (catch 'done
256 (or (and (string-match "^\\.?\\([0-9]+\\)" r1)
257 (setq i1 (match-end 0))
258 (setq v1 (string-to-number (match-string 1 r1)))
259 (or (and (string-match "^\\.?\\([0-9]+\\)" r2)
260 (setq i2 (match-end 0))
261 (setq v2 (string-to-number (match-string 1 r2)))
262 (if (> v1 v2) (throw 'done t)
263 (if (< v1 v2) (throw 'done nil)
264 (throw 'done
265 (vc-release-greater-or-equal
266 (substring r1 i1)
267 (substring r2 i2)))))))
268 (throw 'done t)))
269 (or (and (string-match "^\\.?\\([0-9]+\\)" r2)
270 (throw 'done nil))
271 (throw 'done t)))))
272
273 (defun vc-backend-release-p (backend release)
274 ;; Return t if we have RELEASE of BACKEND or better
275 (let (i r (ri 0) (ii 0) is rs (installation (vc-backend-release backend)))
276 (if (not (eq installation 'unknown))
277 (cond
278 ((or (eq backend 'RCS) (eq backend 'CVS))
279 (vc-release-greater-or-equal installation release))))))
280
281 ;;; functions that operate on RCS revision numbers
282
283 (defun vc-trunk-p (rev)
284 ;; return t if REV is a revision on the trunk
285 (not (eq nil (string-match "\\`[0-9]+\\.[0-9]+\\'" rev))))
286
287 (defun vc-branch-part (rev)
288 ;; return the branch part of a revision number REV
289 (substring rev 0 (string-match "\\.[0-9]+\\'" rev)))
290
291 ;; File property caching
292
293 (defun vc-clear-context ()
294 "Clear all cached file properties and the comment ring."
295 (interactive)
296 (fillarray vc-file-prop-obarray nil)
297 ;; Note: there is potential for minor lossage here if there is an open
298 ;; log buffer with a nonzero local value of vc-comment-ring-index.
299 (setq vc-comment-ring nil))
300
301 (defun vc-file-clear-masterprops (file)
302 ;; clear all properties of FILE that were retrieved
303 ;; from the master file
304 (vc-file-setprop file 'vc-latest-version nil)
305 (vc-file-setprop file 'vc-your-latest-version nil)
306 (vc-backend-dispatch file
307 (progn ;; SCCS
308 (vc-file-setprop file 'vc-master-locks nil))
309 (progn ;; RCS
310 (vc-file-setprop file 'vc-default-branch nil)
311 (vc-file-setprop file 'vc-head-version nil)
312 (vc-file-setprop file 'vc-master-workfile-version nil)
313 (vc-file-setprop file 'vc-master-locks nil))
314 (progn
315 (vc-file-setprop file 'vc-cvs-status nil))))
316
317 (defun vc-head-version (file)
318 ;; Return the RCS head version of FILE
319 (cond ((vc-file-getprop file 'vc-head-version))
320 (t (vc-fetch-master-properties file)
321 (vc-file-getprop file 'vc-head-version))))
322
323 ;; Random helper functions
324
325 (defun vc-latest-on-branch-p (file)
326 ;; return t iff the current workfile version of FILE is
327 ;; the latest on its branch.
328 (vc-backend-dispatch file
329 ;; SCCS
330 (string= (vc-workfile-version file) (vc-latest-version file))
331 ;; RCS
332 (let ((workfile-version (vc-workfile-version file)) tip-version)
333 (if (vc-trunk-p workfile-version)
334 (progn
335 ;; Re-fetch the head version number. This is to make
336 ;; sure that no-one has checked in a new version behind
337 ;; our back.
338 (vc-fetch-master-properties file)
339 (string= (vc-file-getprop file 'vc-head-version)
340 workfile-version))
341 ;; If we are not on the trunk, we need to examine the
342 ;; whole current branch. (vc-master-workfile-version
343 ;; is not what we need.)
344 (save-excursion
345 (set-buffer (get-buffer-create "*vc-info*"))
346 (vc-insert-file (vc-name file) "^desc")
347 (setq tip-version (car (vc-parse-buffer (list (list
348 (concat "^\\(" (regexp-quote (vc-branch-part workfile-version))
349 "\\.[0-9]+\\)\ndate[ \t]+\\([0-9.]+\\);") 1 2)))))
350 (if (get-buffer "*vc-info*")
351 (kill-buffer (get-buffer "*vc-info*")))
352 (string= tip-version workfile-version))))
353 ;; CVS
354 t))
355
356 (defun vc-registration-error (file)
357 (if file
358 (error "File %s is not under version control" file)
359 (error "Buffer %s is not associated with a file" (buffer-name))))
360
361 (defvar vc-binary-assoc nil)
362
363 (defun vc-find-binary (name)
364 "Look for a command anywhere on the subprocess-command search path."
365 (or (cdr (assoc name vc-binary-assoc))
366 (catch 'found
367 (mapcar
368 (function
369 (lambda (s)
370 (if s
371 (let ((full (concat s "/" name)))
372 (if (file-executable-p full)
373 (progn
374 (setq vc-binary-assoc
375 (cons (cons name full) vc-binary-assoc))
376 (throw 'found full)))))))
377 exec-path)
378 nil)))
379
380 (defun vc-do-command (buffer okstatus command file last &rest flags)
381 "Execute a version-control command, notifying user and checking for errors.
382 Output from COMMAND goes to BUFFER, or *vc* if BUFFER is nil.
383 The command is successful if its exit status does not exceed OKSTATUS.
384 The last argument of the command is the master name of FILE if LAST is
385 `MASTER', or the workfile of FILE if LAST is `WORKFILE'; this is appended
386 to an optional list of FLAGS."
387 (and file (setq file (expand-file-name file)))
388 (if (not buffer) (setq buffer "*vc*"))
389 (if vc-command-messages
390 (message "Running %s on %s..." command file))
391 (let ((obuf (current-buffer)) (camefrom (current-buffer))
392 (squeezed nil)
393 (vc-file (and file (vc-name file)))
394 (olddir default-directory)
395 status)
396 (set-buffer (get-buffer-create buffer))
397 (set (make-local-variable 'vc-parent-buffer) camefrom)
398 (set (make-local-variable 'vc-parent-buffer-name)
399 (concat " from " (buffer-name camefrom)))
400 (setq default-directory olddir)
401
402 (erase-buffer)
403
404 (mapcar
405 (function (lambda (s) (and s (setq squeezed (append squeezed (list s))))))
406 flags)
407 (if (and vc-file (eq last 'MASTER))
408 (setq squeezed (append squeezed (list vc-file))))
409 (if (eq last 'WORKFILE)
410 (progn
411 (let* ((pwd (expand-file-name default-directory))
412 (preflen (length pwd)))
413 (if (string= (substring file 0 preflen) pwd)
414 (setq file (substring file preflen))))
415 (setq squeezed (append squeezed (list file)))))
416 (let ((exec-path (append vc-path exec-path))
417 ;; Add vc-path to PATH for the execution of this command.
418 (process-environment
419 (cons (concat "PATH=" (getenv "PATH")
420 path-separator
421 (mapconcat 'identity vc-path path-separator))
422 process-environment)))
423 (setq status (apply 'call-process command nil t nil squeezed)))
424 (goto-char (point-max))
425 (set-buffer-modified-p nil)
426 (forward-line -1)
427 (if (or (not (integerp status)) (< okstatus status))
428 (progn
429 (pop-to-buffer buffer)
430 (goto-char (point-min))
431 (shrink-window-if-larger-than-buffer)
432 (error "Running %s...FAILED (%s)" command
433 (if (integerp status)
434 (format "status %d" status)
435 status))
436 )
437 (if vc-command-messages
438 (message "Running %s...OK" command))
439 )
440 (set-buffer obuf)
441 status)
442 )
443
444 ;;; Save a bit of the text around POSN in the current buffer, to help
445 ;;; us find the corresponding position again later. This works even
446 ;;; if all markers are destroyed or corrupted.
447 ;;; A lot of this was shamelessly lifted from Sebastian Kremer's rcs.el mode.
448 (defun vc-position-context (posn)
449 (list posn
450 (buffer-size)
451 (buffer-substring posn
452 (min (point-max) (+ posn 100)))))
453
454 ;;; Return the position of CONTEXT in the current buffer, or nil if we
455 ;;; couldn't find it.
456 (defun vc-find-position-by-context (context)
457 (let ((context-string (nth 2 context)))
458 (if (equal "" context-string)
459 (point-max)
460 (save-excursion
461 (let ((diff (- (nth 1 context) (buffer-size))))
462 (if (< diff 0) (setq diff (- diff)))
463 (goto-char (nth 0 context))
464 (if (or (search-forward context-string nil t)
465 ;; Can't use search-backward since the match may continue
466 ;; after point.
467 (progn (goto-char (- (point) diff (length context-string)))
468 ;; goto-char doesn't signal an error at
469 ;; beginning of buffer like backward-char would
470 (search-forward context-string nil t)))
471 ;; to beginning of OSTRING
472 (- (point) (length context-string))))))))
473
474 (defun vc-buffer-context ()
475 ;; Return a list '(point-context mark-context reparse); from which
476 ;; vc-restore-buffer-context can later restore the context.
477 (let ((point-context (vc-position-context (point)))
478 ;; Use mark-marker to avoid confusion in transient-mark-mode.
479 (mark-context (if (eq (marker-buffer (mark-marker)) (current-buffer))
480 (vc-position-context (mark-marker))))
481 ;; Make the right thing happen in transient-mark-mode.
482 (mark-active nil)
483 ;; We may want to reparse the compilation buffer after revert
484 (reparse (and (boundp 'compilation-error-list) ;compile loaded
485 (let ((curbuf (current-buffer)))
486 ;; Construct a list; each elt is nil or a buffer
487 ;; iff that buffer is a compilation output buffer
488 ;; that contains markers into the current buffer.
489 (save-excursion
490 (mapcar (function
491 (lambda (buffer)
492 (set-buffer buffer)
493 (let ((errors (or
494 compilation-old-error-list
495 compilation-error-list))
496 (buffer-error-marked-p nil))
497 (while (and (consp errors)
498 (not buffer-error-marked-p))
499 (and (markerp (cdr (car errors)))
500 (eq buffer
501 (marker-buffer
502 (cdr (car errors))))
503 (setq buffer-error-marked-p t))
504 (setq errors (cdr errors)))
505 (if buffer-error-marked-p buffer))))
506 (buffer-list)))))))
507 (list point-context mark-context reparse)))
508
509 (defun vc-restore-buffer-context (context)
510 ;; Restore point/mark, and reparse any affected compilation buffers.
511 ;; CONTEXT is that which vc-buffer-context returns.
512 (let ((point-context (nth 0 context))
513 (mark-context (nth 1 context))
514 (reparse (nth 2 context)))
515 ;; Reparse affected compilation buffers.
516 (while reparse
517 (if (car reparse)
518 (save-excursion
519 (set-buffer (car reparse))
520 (let ((compilation-last-buffer (current-buffer)) ;select buffer
521 ;; Record the position in the compilation buffer of
522 ;; the last error next-error went to.
523 (error-pos (marker-position
524 (car (car-safe compilation-error-list)))))
525 ;; Reparse the error messages as far as they were parsed before.
526 (compile-reinitialize-errors '(4) compilation-parsing-end)
527 ;; Move the pointer up to find the error we were at before
528 ;; reparsing. Now next-error should properly go to the next one.
529 (while (and compilation-error-list
530 (/= error-pos (car (car compilation-error-list))))
531 (setq compilation-error-list (cdr compilation-error-list))))))
532 (setq reparse (cdr reparse)))
533
534 ;; Restore point and mark
535 (let ((new-point (vc-find-position-by-context point-context)))
536 (if new-point (goto-char new-point)))
537 (if mark-context
538 (let ((new-mark (vc-find-position-by-context mark-context)))
539 (if new-mark (set-mark new-mark))))))
540
541 (defun vc-revert-buffer1 (&optional arg no-confirm)
542 ;; Revert buffer, try to keep point and mark where user expects them in spite
543 ;; of changes because of expanded version-control key words.
544 ;; This is quite important since otherwise typeahead won't work as expected.
545 (interactive "P")
546 (widen)
547 (let ((context (vc-buffer-context)))
548 ;; t means don't call normal-mode; that's to preserve various minor modes.
549 (revert-buffer arg no-confirm t)
550 (vc-restore-buffer-context context)))
551
552
553 (defun vc-buffer-sync (&optional not-urgent)
554 ;; Make sure the current buffer and its working file are in sync
555 ;; NOT-URGENT means it is ok to continue if the user says not to save.
556 (if (buffer-modified-p)
557 (if (or vc-suppress-confirm
558 (y-or-n-p (format "Buffer %s modified; save it? " (buffer-name))))
559 (save-buffer)
560 (if not-urgent
561 nil
562 (error "Aborted")))))
563
564
565 (defun vc-workfile-unchanged-p (file &optional want-differences-if-changed)
566 ;; Has the given workfile changed since last checkout?
567 (let ((checkout-time (vc-file-getprop file 'vc-checkout-time))
568 (lastmod (nth 5 (file-attributes file))))
569 (or (equal checkout-time lastmod)
570 (and (or (not checkout-time) want-differences-if-changed)
571 (let ((unchanged (zerop (vc-backend-diff file nil nil
572 (not want-differences-if-changed)))))
573 ;; 0 stands for an unknown time; it can't match any mod time.
574 (vc-file-setprop file 'vc-checkout-time (if unchanged lastmod 0))
575 unchanged)))))
576
577 (defun vc-next-action-on-file (file verbose &optional comment)
578 ;;; If comment is specified, it will be used as an admin or checkin comment.
579 (let ((vc-file (vc-name file))
580 (vc-type (vc-backend file))
581 owner version buffer)
582 (cond
583
584 ;; if there is no master file corresponding, create one
585 ((not vc-file)
586 (vc-register verbose comment)
587 (if vc-initial-comment
588 (setq vc-log-after-operation-hook
589 'vc-checkout-writable-buffer-hook)
590 (vc-checkout-writable-buffer file)))
591
592 ;; CVS: changes to the master file need to be
593 ;; merged back into the working file
594 ((and (eq vc-type 'CVS)
595 (or (eq (vc-cvs-status file) 'needs-checkout)
596 (eq (vc-cvs-status file) 'needs-merge)))
597 (if (or vc-dired-mode
598 (yes-or-no-p
599 (format "%s is not up-to-date. Merge in changes now? "
600 (buffer-name))))
601 (progn
602 (if vc-dired-mode
603 (and (setq buffer (get-file-buffer file))
604 (buffer-modified-p buffer)
605 (switch-to-buffer-other-window buffer)
606 (vc-buffer-sync t))
607 (setq buffer (current-buffer))
608 (vc-buffer-sync t))
609 (if (and buffer (buffer-modified-p buffer)
610 (not (yes-or-no-p
611 (format
612 "Buffer %s modified; merge file on disc anyhow? "
613 (buffer-name buffer)))))
614 (error "Merge aborted"))
615 (if (not (zerop (vc-backend-merge-news file)))
616 ;; Overlaps detected - what now? Should use some
617 ;; fancy RCS conflict resolving package, or maybe
618 ;; emerge, but for now, simply warn the user with a
619 ;; message.
620 (message "Conflicts detected!"))
621 (and buffer
622 (vc-resynch-buffer file t (not (buffer-modified-p buffer)))))
623 (error "%s needs update" (buffer-name))))
624
625 ;; if there is no lock on the file, assert one and get it
626 ((not (setq owner (vc-locking-user file)))
627 (if (and vc-checkout-carefully
628 (not (vc-workfile-unchanged-p file t)))
629 (if (save-window-excursion
630 (pop-to-buffer "*vc-diff*")
631 (goto-char (point-min))
632 (insert-string (format "Changes to %s since last lock:\n\n"
633 file))
634 (not (beep))
635 (yes-or-no-p
636 (concat "File has unlocked changes, "
637 "claim lock retaining changes? ")))
638 (progn (vc-backend-steal file)
639 (vc-mode-line file))
640 (if (not (yes-or-no-p "Revert to checked-in version, instead? "))
641 (error "Checkout aborted")
642 (vc-revert-buffer1 t t)
643 (vc-checkout-writable-buffer file))
644 )
645 (if verbose
646 (if (not (eq vc-type 'SCCS))
647 (vc-checkout file nil
648 (read-string "Branch or version to move to: "))
649 (error "Sorry, this is not implemented for SCCS"))
650 (if (vc-latest-on-branch-p file)
651 (vc-checkout-writable-buffer file)
652 (if (yes-or-no-p
653 "This is not the latest version. Really lock it? ")
654 (vc-checkout-writable-buffer file)
655 (if (yes-or-no-p "Lock the latest version instead? ")
656 (vc-checkout-writable-buffer file
657 (if (vc-trunk-p (vc-workfile-version file))
658 "" ;; this means check out latest on trunk
659 (vc-branch-part (vc-workfile-version file)))))))
660 )))
661
662 ;; a checked-out version exists, but the user may not own the lock
663 ((and (not (eq vc-type 'CVS))
664 (not (string-equal owner (user-login-name))))
665 (if comment
666 (error "Sorry, you can't steal the lock on %s this way" file))
667 (and (eq vc-type 'RCS)
668 (not (vc-backend-release-p 'RCS "5.6.2"))
669 (error "File is locked by %s" owner))
670 (vc-steal-lock
671 file
672 (if verbose (read-string "Version to steal: ")
673 (vc-workfile-version file))
674 owner))
675
676 ;; OK, user owns the lock on the file
677 (t
678 (if vc-dired-mode
679 (find-file-other-window file)
680 (find-file file))
681
682 ;; give luser a chance to save before checking in.
683 (vc-buffer-sync)
684
685 ;; Revert if file is unchanged and buffer is too.
686 ;; If buffer is modified, that means the user just said no
687 ;; to saving it; in that case, don't revert,
688 ;; because the user might intend to save
689 ;; after finishing the log entry.
690 (if (and (vc-workfile-unchanged-p file)
691 (not (buffer-modified-p)))
692 ;; DO NOT revert the file without asking the user!
693 (cond
694 ((yes-or-no-p "Revert to master version? ")
695 (vc-backend-revert file)
696 (vc-resynch-window file t t)))
697
698 ;; user may want to set nonstandard parameters
699 (if verbose
700 (setq version (read-string "New version level: ")))
701
702 ;; OK, let's do the checkin
703 (vc-checkin file version comment)
704 )))))
705
706 (defun vc-next-action-dired (file rev comment)
707 ;; Do a vc-next-action-on-file on all the marked files, possibly
708 ;; passing on the log comment we've just entered.
709 (let ((configuration (current-window-configuration))
710 (dired-buffer (current-buffer))
711 (dired-dir default-directory))
712 (dired-map-over-marks
713 (let ((file (dired-get-filename)) p)
714 (message "Processing %s..." file)
715 ;; Adjust the default directory so that checkouts
716 ;; go to the right place.
717 (setq default-directory (file-name-directory file))
718 (vc-next-action-on-file file nil comment)
719 (set-buffer dired-buffer)
720 (setq default-directory dired-dir)
721 (vc-dired-update-line file)
722 (set-window-configuration configuration)
723 (message "Processing %s...done" file))
724 nil t)))
725
726 ;; Here's the major entry point.
727
728 ;;;###autoload
729 (defun vc-next-action (verbose)
730 "Do the next logical checkin or checkout operation on the current file.
731 If you call this from within a VC dired buffer with no files marked,
732 it will operate on the file in the current line.
733 If you call this from within a VC dired buffer, and one or more
734 files are marked, it will accept a log message and then operate on
735 each one. The log message will be used as a comment for any register
736 or checkin operations, but ignored when doing checkouts. Attempted
737 lock steals will raise an error.
738 A prefix argument lets you specify the version number to use.
739
740 For RCS and SCCS files:
741 If the file is not already registered, this registers it for version
742 control and then retrieves a writable, locked copy for editing.
743 If the file is registered and not locked by anyone, this checks out
744 a writable and locked file ready for editing.
745 If the file is checked out and locked by the calling user, this
746 first checks to see if the file has changed since checkout. If not,
747 it performs a revert.
748 If the file has been changed, this pops up a buffer for entry
749 of a log message; when the message has been entered, it checks in the
750 resulting changes along with the log message as change commentary. If
751 the variable `vc-keep-workfiles' is non-nil (which is its default), a
752 read-only copy of the changed file is left in place afterwards.
753 If the file is registered and locked by someone else, you are given
754 the option to steal the lock.
755
756 For CVS files:
757 If the file is not already registered, this registers it for version
758 control. This does a \"cvs add\", but no \"cvs commit\".
759 If the file is added but not committed, it is committed.
760 If your working file is changed, but the repository file is
761 unchanged, this pops up a buffer for entry of a log message; when the
762 message has been entered, it checks in the resulting changes along
763 with the logmessage as change commentary. A writable file is retained.
764 If the repository file is changed, you are asked if you want to
765 merge in the changes into your working copy."
766
767 (interactive "P")
768 (catch 'nogo
769 (if vc-dired-mode
770 (let ((files (dired-get-marked-files)))
771 (if (string= ""
772 (mapconcat
773 (function (lambda (f)
774 (if (eq (vc-backend f) 'CVS)
775 (if (or (eq (vc-cvs-status f) 'locally-modified)
776 (eq (vc-cvs-status f) 'locally-added))
777 "@" "")
778 (if (vc-locking-user f) "@" ""))))
779 files ""))
780 (vc-next-action-dired nil nil "dummy")
781 (vc-start-entry nil nil nil
782 "Enter a change comment for the marked files."
783 'vc-next-action-dired))
784 (throw 'nogo nil)))
785 (while vc-parent-buffer
786 (pop-to-buffer vc-parent-buffer))
787 (if buffer-file-name
788 (vc-next-action-on-file buffer-file-name verbose)
789 (vc-registration-error nil))))
790
791 ;;; These functions help the vc-next-action entry point
792
793 (defun vc-checkout-writable-buffer (&optional file rev)
794 "Retrieve a writable copy of the latest version of the current buffer's file."
795 (vc-checkout (or file (buffer-file-name)) t rev)
796 )
797
798 ;;;###autoload
799 (defun vc-register (&optional override comment)
800 "Register the current file into your version-control system."
801 (interactive "P")
802 (or buffer-file-name
803 (error "No visited file"))
804 (let ((master (vc-name buffer-file-name)))
805 (and master (file-exists-p master)
806 (error "This file is already registered"))
807 (and master
808 (not (y-or-n-p "Previous master file has vanished. Make a new one? "))
809 (error "This file is already registered")))
810 ;; Watch out for new buffers of size 0: the corresponding file
811 ;; does not exist yet, even though buffer-modified-p is nil.
812 (if (and (not (buffer-modified-p))
813 (zerop (buffer-size))
814 (not (file-exists-p buffer-file-name)))
815 (set-buffer-modified-p t))
816 (vc-buffer-sync)
817 (cond ((not vc-make-backup-files)
818 ;; inhibit backup for this buffer
819 (make-local-variable 'backup-inhibited)
820 (setq backup-inhibited t)))
821 (vc-admin
822 buffer-file-name
823 (and override
824 (read-string
825 (format "Initial version level for %s: " buffer-file-name))))
826 )
827
828 (defun vc-resynch-window (file &optional keep noquery)
829 ;; If the given file is in the current buffer,
830 ;; either revert on it so we see expanded keyworks,
831 ;; or unvisit it (depending on vc-keep-workfiles)
832 ;; NOQUERY if non-nil inhibits confirmation for reverting.
833 ;; NOQUERY should be t *only* if it is known the only difference
834 ;; between the buffer and the file is due to RCS rather than user editing!
835 (and (string= buffer-file-name file)
836 (if keep
837 (progn
838 ;; temporarily remove vc-find-file-hook, so that
839 ;; we don't lose the properties
840 (remove-hook 'find-file-hooks 'vc-find-file-hook)
841 (vc-revert-buffer1 t noquery)
842 (add-hook 'find-file-hooks 'vc-find-file-hook)
843 (vc-mode-line buffer-file-name))
844 (kill-buffer (current-buffer)))))
845
846 (defun vc-resynch-buffer (file &optional keep noquery)
847 ;; if FILE is currently visited, resynch its buffer
848 (let ((buffer (get-file-buffer file)))
849 (if buffer
850 (save-excursion
851 (set-buffer buffer)
852 (vc-resynch-window file keep noquery)))))
853
854 (defun vc-start-entry (file rev comment msg action &optional after-hook)
855 ;; Accept a comment for an operation on FILE revision REV. If COMMENT
856 ;; is nil, pop up a VC-log buffer, emit MSG, and set the
857 ;; action on close to ACTION; otherwise, do action immediately.
858 ;; Remember the file's buffer in vc-parent-buffer (current one if no file).
859 ;; AFTER-HOOK specifies the local value for vc-log-operation-hook.
860 (let ((parent (if file (find-file-noselect file) (current-buffer))))
861 (if comment
862 (set-buffer (get-buffer-create "*VC-log*"))
863 (pop-to-buffer (get-buffer-create "*VC-log*")))
864 (set (make-local-variable 'vc-parent-buffer) parent)
865 (set (make-local-variable 'vc-parent-buffer-name)
866 (concat " from " (buffer-name vc-parent-buffer)))
867 (if file (vc-mode-line file))
868 (vc-log-mode)
869 (make-local-variable 'vc-log-after-operation-hook)
870 (if after-hook
871 (setq vc-log-after-operation-hook after-hook))
872 (setq vc-log-operation action)
873 (setq vc-log-file file)
874 (setq vc-log-version rev)
875 (if comment
876 (progn
877 (erase-buffer)
878 (if (eq comment t)
879 (vc-finish-logentry t)
880 (insert comment)
881 (vc-finish-logentry nil)))
882 (message "%s Type C-c C-c when done." msg))))
883
884 (defun vc-admin (file rev &optional comment)
885 "Check a file into your version-control system.
886 FILE is the unmodified name of the file. REV should be the base version
887 level to check it in under. COMMENT, if specified, is the checkin comment."
888 (vc-start-entry file rev
889 (or comment (not vc-initial-comment))
890 "Enter initial comment." 'vc-backend-admin
891 nil))
892
893 (defun vc-checkout (file &optional writable rev)
894 "Retrieve a copy of the latest version of the given file."
895 ;; If ftp is on this system and the name matches the ange-ftp format
896 ;; for a remote file, the user is trying something that won't work.
897 (if (and (string-match "^/[^/:]+:" file) (vc-find-binary "ftp"))
898 (error "Sorry, you can't check out files over FTP"))
899 (vc-backend-checkout file writable rev)
900 (vc-resynch-buffer file t t))
901
902 (defun vc-steal-lock (file rev &optional owner)
903 "Steal the lock on the current workfile."
904 (let (file-description)
905 (if (not owner)
906 (setq owner (vc-locking-user file)))
907 (if rev
908 (setq file-description (format "%s:%s" file rev))
909 (setq file-description file))
910 (if (not (y-or-n-p (format "Take the lock on %s from %s? "
911 file-description owner)))
912 (error "Steal cancelled"))
913 (pop-to-buffer (get-buffer-create "*VC-mail*"))
914 (setq default-directory (expand-file-name "~/"))
915 (auto-save-mode auto-save-default)
916 (mail-mode)
917 (erase-buffer)
918 (mail-setup owner (format "Stolen lock on %s" file-description) nil nil nil
919 (list (list 'vc-finish-steal file rev)))
920 (goto-char (point-max))
921 (insert
922 (format "I stole the lock on %s, " file-description)
923 (current-time-string)
924 ".\n")
925 (message "Please explain why you stole the lock. Type C-c C-c when done.")))
926
927 ;; This is called when the notification has been sent.
928 (defun vc-finish-steal (file version)
929 (vc-backend-steal file version)
930 (if (get-file-buffer file)
931 (save-excursion
932 (set-buffer (get-file-buffer file))
933 (vc-resynch-window file t t))))
934
935 (defun vc-checkin (file &optional rev comment)
936 "Check in the file specified by FILE.
937 The optional argument REV may be a string specifying the new version level
938 \(if nil increment the current level). The file is either retained with write
939 permissions zeroed, or deleted (according to the value of `vc-keep-workfiles').
940 If the back-end is CVS, a writable workfile is always kept.
941 COMMENT is a comment string; if omitted, a buffer is
942 popped up to accept a comment."
943 (vc-start-entry file rev comment
944 "Enter a change comment." 'vc-backend-checkin
945 'vc-checkin-hook))
946
947 ;;; Here is a checkin hook that may prove useful to sites using the
948 ;;; ChangeLog facility supported by Emacs.
949 (defun vc-comment-to-change-log (&optional whoami file-name)
950 "Enter last VC comment into change log file for current buffer's file.
951 Optional arg (interactive prefix) non-nil means prompt for user name and site.
952 Second arg is file name of change log. \
953 If nil, uses `change-log-default-name'."
954 (interactive (if current-prefix-arg
955 (list current-prefix-arg
956 (prompt-for-change-log-name))))
957 ;; Make sure the defvar for add-log-current-defun-function has been executed
958 ;; before binding it.
959 (require 'add-log)
960 (let (;; Extract the comment first so we get any error before doing anything.
961 (comment (ring-ref vc-comment-ring 0))
962 ;; Don't let add-change-log-entry insert a defun name.
963 (add-log-current-defun-function 'ignore)
964 end)
965 ;; Call add-log to do half the work.
966 (add-change-log-entry whoami file-name t t)
967 ;; Insert the VC comment, leaving point before it.
968 (setq end (save-excursion (insert comment) (point-marker)))
969 (if (looking-at "\\s *\\s(")
970 ;; It starts with an open-paren, as in "(foo): Frobbed."
971 ;; So remove the ": " add-log inserted.
972 (delete-char -2))
973 ;; Canonicalize the white space between the file name and comment.
974 (just-one-space)
975 ;; Indent rest of the text the same way add-log indented the first line.
976 (let ((indentation (current-indentation)))
977 (save-excursion
978 (while (< (point) end)
979 (forward-line 1)
980 (indent-to indentation))
981 (setq end (point))))
982 ;; Fill the inserted text, preserving open-parens at bol.
983 (let ((paragraph-separate (concat paragraph-separate "\\|\\s *\\s("))
984 (paragraph-start (concat paragraph-start "\\|\\s *\\s(")))
985 (beginning-of-line)
986 (fill-region (point) end))
987 ;; Canonicalize the white space at the end of the entry so it is
988 ;; separated from the next entry by a single blank line.
989 (skip-syntax-forward " " end)
990 (delete-char (- (skip-syntax-backward " ")))
991 (or (eobp) (looking-at "\n\n")
992 (insert "\n"))))
993
994
995 (defun vc-finish-logentry (&optional nocomment)
996 "Complete the operation implied by the current log entry."
997 (interactive)
998 ;; Check and record the comment, if any.
999 (if (not nocomment)
1000 (progn
1001 (goto-char (point-max))
1002 (if (not (bolp))
1003 (newline))
1004 ;; Comment too long?
1005 (vc-backend-logentry-check vc-log-file)
1006 ;; Record the comment in the comment ring
1007 (if (null vc-comment-ring)
1008 (setq vc-comment-ring (make-ring vc-maximum-comment-ring-size)))
1009 (ring-insert vc-comment-ring (buffer-string))
1010 ))
1011 ;; Sync parent buffer in case the user modified it while editing the comment.
1012 ;; But not if it is a vc-dired buffer.
1013 (save-excursion
1014 (set-buffer vc-parent-buffer)
1015 (or vc-dired-mode
1016 (vc-buffer-sync)))
1017 (if (not vc-log-operation) (error "No log operation is pending"))
1018 ;; save the parameters held in buffer-local variables
1019 (let ((log-operation vc-log-operation)
1020 (log-file vc-log-file)
1021 (log-version vc-log-version)
1022 (log-entry (buffer-string))
1023 (after-hook vc-log-after-operation-hook))
1024 ;; Return to "parent" buffer of this checkin and remove checkin window
1025 (pop-to-buffer vc-parent-buffer)
1026 (let ((logbuf (get-buffer "*VC-log*")))
1027 (delete-windows-on logbuf)
1028 (kill-buffer logbuf))
1029 ;; OK, do it to it
1030 (save-excursion
1031 (funcall log-operation
1032 log-file
1033 log-version
1034 log-entry))
1035 ;; Now make sure we see the expanded headers
1036 (if buffer-file-name
1037 (vc-resynch-window buffer-file-name vc-keep-workfiles t))
1038 (run-hooks after-hook)))
1039
1040 ;; Code for access to the comment ring
1041
1042 (defun vc-previous-comment (arg)
1043 "Cycle backwards through comment history."
1044 (interactive "*p")
1045 (let ((len (ring-length vc-comment-ring)))
1046 (cond ((<= len 0)
1047 (message "Empty comment ring")
1048 (ding))
1049 (t
1050 (erase-buffer)
1051 ;; Initialize the index on the first use of this command
1052 ;; so that the first M-p gets index 0, and the first M-n gets
1053 ;; index -1.
1054 (if (null vc-comment-ring-index)
1055 (setq vc-comment-ring-index
1056 (if (> arg 0) -1
1057 (if (< arg 0) 1 0))))
1058 (setq vc-comment-ring-index
1059 (mod (+ vc-comment-ring-index arg) len))
1060 (message "%d" (1+ vc-comment-ring-index))
1061 (insert (ring-ref vc-comment-ring vc-comment-ring-index))))))
1062
1063 (defun vc-next-comment (arg)
1064 "Cycle forwards through comment history."
1065 (interactive "*p")
1066 (vc-previous-comment (- arg)))
1067
1068 (defun vc-comment-search-reverse (str)
1069 "Searches backwards through comment history for substring match."
1070 (interactive "sComment substring: ")
1071 (if (string= str "")
1072 (setq str vc-last-comment-match)
1073 (setq vc-last-comment-match str))
1074 (if (null vc-comment-ring-index)
1075 (setq vc-comment-ring-index -1))
1076 (let ((str (regexp-quote str))
1077 (len (ring-length vc-comment-ring))
1078 (n (1+ vc-comment-ring-index)))
1079 (while (and (< n len) (not (string-match str (ring-ref vc-comment-ring n))))
1080 (setq n (+ n 1)))
1081 (cond ((< n len)
1082 (vc-previous-comment (- n vc-comment-ring-index)))
1083 (t (error "Not found")))))
1084
1085 (defun vc-comment-search-forward (str)
1086 "Searches forwards through comment history for substring match."
1087 (interactive "sComment substring: ")
1088 (if (string= str "")
1089 (setq str vc-last-comment-match)
1090 (setq vc-last-comment-match str))
1091 (if (null vc-comment-ring-index)
1092 (setq vc-comment-ring-index 0))
1093 (let ((str (regexp-quote str))
1094 (len (ring-length vc-comment-ring))
1095 (n vc-comment-ring-index))
1096 (while (and (>= n 0) (not (string-match str (ring-ref vc-comment-ring n))))
1097 (setq n (- n 1)))
1098 (cond ((>= n 0)
1099 (vc-next-comment (- n vc-comment-ring-index)))
1100 (t (error "Not found")))))
1101
1102 ;; Additional entry points for examining version histories
1103
1104 ;;;###autoload
1105 (defun vc-diff (historic &optional not-urgent)
1106 "Display diffs between file versions.
1107 Normally this compares the current file and buffer with the most recent
1108 checked in version of that file. This uses no arguments.
1109 With a prefix argument, it reads the file name to use
1110 and two version designators specifying which versions to compare."
1111 (interactive "P")
1112 (if vc-dired-mode
1113 (set-buffer (find-file-noselect (dired-get-filename))))
1114 (while vc-parent-buffer
1115 (pop-to-buffer vc-parent-buffer))
1116 (if historic
1117 (call-interactively 'vc-version-diff)
1118 (if (or (null buffer-file-name) (null (vc-name buffer-file-name)))
1119 (error
1120 "There is no version-control master associated with this buffer"))
1121 (let ((file buffer-file-name)
1122 unchanged)
1123 (or (and file (vc-name file))
1124 (vc-registration-error file))
1125 (vc-buffer-sync not-urgent)
1126 (setq unchanged (vc-workfile-unchanged-p buffer-file-name))
1127 (if unchanged
1128 (message "No changes to %s since latest version" file)
1129 (vc-backend-diff file)
1130 ;; Ideally, we'd like at this point to parse the diff so that
1131 ;; the buffer effectively goes into compilation mode and we
1132 ;; can visit the old and new change locations via next-error.
1133 ;; Unfortunately, this is just too painful to do. The basic
1134 ;; problem is that the `old' file doesn't exist to be
1135 ;; visited. This plays hell with numerous assumptions in
1136 ;; the diff.el and compile.el machinery.
1137 (set-buffer "*vc-diff*")
1138 (setq default-directory (file-name-directory file))
1139 (if (= 0 (buffer-size))
1140 (progn
1141 (setq unchanged t)
1142 (message "No changes to %s since latest version" file))
1143 (pop-to-buffer "*vc-diff*")
1144 (goto-char (point-min))
1145 (shrink-window-if-larger-than-buffer)))
1146 (not unchanged))))
1147
1148 (defun vc-version-diff (file rel1 rel2)
1149 "For FILE, report diffs between two stored versions REL1 and REL2 of it.
1150 If FILE is a directory, generate diffs between versions for all registered
1151 files in or below it."
1152 (interactive "FFile or directory to diff: \nsOlder version: \nsNewer version: ")
1153 (if (string-equal rel1 "") (setq rel1 nil))
1154 (if (string-equal rel2 "") (setq rel2 nil))
1155 (if (file-directory-p file)
1156 (let ((camefrom (current-buffer)))
1157 (set-buffer (get-buffer-create "*vc-status*"))
1158 (set (make-local-variable 'vc-parent-buffer) camefrom)
1159 (set (make-local-variable 'vc-parent-buffer-name)
1160 (concat " from " (buffer-name camefrom)))
1161 (erase-buffer)
1162 (insert "Diffs between "
1163 (or rel1 "last version checked in")
1164 " and "
1165 (or rel2 "current workfile(s)")
1166 ":\n\n")
1167 (set-buffer (get-buffer-create "*vc-diff*"))
1168 (cd file)
1169 (vc-file-tree-walk
1170 default-directory
1171 (function (lambda (f)
1172 (message "Looking at %s" f)
1173 (and
1174 (not (file-directory-p f))
1175 (vc-registered f)
1176 (vc-backend-diff f rel1 rel2)
1177 (append-to-buffer "*vc-status*" (point-min) (point-max)))
1178 )))
1179 (pop-to-buffer "*vc-status*")
1180 (insert "\nEnd of diffs.\n")
1181 (goto-char (point-min))
1182 (set-buffer-modified-p nil)
1183 )
1184 (if (zerop (vc-backend-diff file rel1 rel2))
1185 (message "No changes to %s between %s and %s." file rel1 rel2)
1186 (pop-to-buffer "*vc-diff*"))))
1187
1188 ;;;###autoload
1189 (defun vc-version-other-window (rev)
1190 "Visit version REV of the current buffer in another window.
1191 If the current buffer is named `F', the version is named `F.~REV~'.
1192 If `F.~REV~' already exists, it is used instead of being re-created."
1193 (interactive "sVersion to visit (default is latest version): ")
1194 (if vc-dired-mode
1195 (set-buffer (find-file-noselect (dired-get-filename))))
1196 (while vc-parent-buffer
1197 (pop-to-buffer vc-parent-buffer))
1198 (if (and buffer-file-name (vc-name buffer-file-name))
1199 (let* ((version (if (string-equal rev "")
1200 (vc-latest-version buffer-file-name)
1201 rev))
1202 (filename (concat buffer-file-name ".~" version "~")))
1203 (or (file-exists-p filename)
1204 (vc-backend-checkout buffer-file-name nil version filename))
1205 (find-file-other-window filename))
1206 (vc-registration-error buffer-file-name)))
1207
1208 ;; Header-insertion code
1209
1210 ;;;###autoload
1211 (defun vc-insert-headers ()
1212 "Insert headers in a file for use with your version-control system.
1213 Headers desired are inserted at the start of the buffer, and are pulled from
1214 the variable `vc-header-alist'."
1215 (interactive)
1216 (if vc-dired-mode
1217 (find-file-other-window (dired-get-filename)))
1218 (while vc-parent-buffer
1219 (pop-to-buffer vc-parent-buffer))
1220 (save-excursion
1221 (save-restriction
1222 (widen)
1223 (if (or (not (vc-check-headers))
1224 (y-or-n-p "Version headers already exist. Insert another set? "))
1225 (progn
1226 (let* ((delims (cdr (assq major-mode vc-comment-alist)))
1227 (comment-start-vc (or (car delims) comment-start "#"))
1228 (comment-end-vc (or (car (cdr delims)) comment-end ""))
1229 (hdstrings (cdr (assoc (vc-backend (buffer-file-name)) vc-header-alist))))
1230 (mapcar (function (lambda (s)
1231 (insert comment-start-vc "\t" s "\t"
1232 comment-end-vc "\n")))
1233 hdstrings)
1234 (if vc-static-header-alist
1235 (mapcar (function (lambda (f)
1236 (if (string-match (car f) buffer-file-name)
1237 (insert (format (cdr f) (car hdstrings))))))
1238 vc-static-header-alist))
1239 )
1240 )))))
1241
1242 (defun vc-clear-headers ()
1243 ;; Clear all version headers in the current buffer, i.e. reset them
1244 ;; to the nonexpanded form. Only implemented for RCS, yet.
1245 ;; Don't lose point and mark during this.
1246 (let ((context (vc-buffer-context)))
1247 (goto-char (point-min))
1248 (while (re-search-forward "\\$\\([A-Za-z]+\\): [^\\$]+\\$" nil t)
1249 (replace-match "$\\1$"))
1250 (vc-restore-buffer-context context)))
1251
1252 ;; The VC directory major mode. Coopt Dired for this.
1253 ;; All VC commands get mapped into logical equivalents.
1254
1255 (define-derived-mode vc-dired-mode dired-mode "Dired under VC"
1256 "The major mode used in VC directory buffers. It is derived from Dired.
1257 All Dired commands operate normally. Users currently locking listed files
1258 are listed in place of the file's owner and group.
1259 Keystrokes bound to VC commands will execute as though they had been called
1260 on a buffer attached to the file named in the current Dired buffer line."
1261 (setq vc-dired-mode t))
1262
1263 (define-key vc-dired-mode-map "\C-xv" vc-prefix-map)
1264 (define-key vc-dired-mode-map "g" 'vc-dired-update)
1265 (define-key vc-dired-mode-map "=" 'vc-diff)
1266
1267 (defun vc-dired-state-info (file)
1268 ;; Return the string that indicates the version control status
1269 ;; on a VC dired line.
1270 (let ((cvs-state (and (eq (vc-backend file) 'CVS)
1271 (vc-cvs-status file))))
1272 (if cvs-state
1273 (cond ((eq cvs-state 'up-to-date) nil)
1274 ((eq cvs-state 'needs-checkout) "patch")
1275 ((eq cvs-state 'locally-modified) "modified")
1276 ((eq cvs-state 'needs-merge) "merge")
1277 ((eq cvs-state 'unresolved-conflict) "conflict")
1278 ((eq cvs-state 'locally-added) "added"))
1279 (vc-locking-user file))))
1280
1281 (defun vc-dired-reformat-line (x)
1282 ;; Hack a directory-listing line, plugging in locking-user info in
1283 ;; place of the user and group info. Should have the beneficial
1284 ;; side-effect of shortening the listing line. Each call starts with
1285 ;; point immediately following the dired mark area on the line to be
1286 ;; hacked.
1287 ;;
1288 ;; Simplest possible one:
1289 ;; (insert (concat x "\t")))
1290 ;;
1291 ;; This code, like dired, assumes UNIX -l format.
1292 (let ((pos (point)) limit perm owner date-and-file)
1293 (end-of-line)
1294 (setq limit (point))
1295 (goto-char pos)
1296 (cond
1297 ((or
1298 (re-search-forward ;; owner and group
1299 "\\([drwxlts-]+ \\) *[0-9]+ \\([^ ]+\\) +[^ ]+ +[0-9]+\\( [^ 0-9]+ [0-9 ][0-9] .*\\)"
1300 limit t)
1301 (re-search-forward ;; only owner displayed
1302 "\\([drwxlts-]+ \\) *[0-9]+ \\([^ ]+\\) +[0-9]+\\( [^ 0-9]+ [0-9 ][0-9] .*\\)"
1303 limit t))
1304 (setq perm (match-string 1)
1305 owner (match-string 2)
1306 date-and-file (match-string 3)))
1307 ((re-search-forward ;; OS/2 -l format, no links, owner, group
1308 "\\([drwxlts-]+ \\) *[0-9]+\\( [^ 0-9]+ [0-9 ][0-9] .*\\)"
1309 limit t)
1310 (setq perm (match-string 1)
1311 date-and-file (match-string 2))))
1312 (if (numberp x) (setq x (or owner (number-to-string x))))
1313 (if x (setq x (concat "(" x ")")))
1314 (let ((rep (substring (concat x " ") 0 10)))
1315 (replace-match (concat perm rep date-and-file)))))
1316
1317 (defun vc-dired-update-line (file)
1318 ;; Update the vc-dired listing line of file -- it is assumed
1319 ;; that point is already on this line. Don't use dired-do-redisplay
1320 ;; for this, because it cannot handle the way vc-dired deals with
1321 ;; subdirectories.
1322 (beginning-of-line)
1323 (forward-char 2)
1324 (let ((start (point)))
1325 (forward-line 1)
1326 (beginning-of-line)
1327 (delete-region start (point))
1328 (insert-directory file dired-listing-switches)
1329 (forward-line -1)
1330 (end-of-line)
1331 (delete-char (- (length file)))
1332 (insert (substring file (length (expand-file-name default-directory))))
1333 (goto-char start))
1334 (vc-dired-reformat-line (vc-dired-state-info file)))
1335
1336 (defun vc-dired-update (verbose)
1337 (interactive "P")
1338 (vc-directory default-directory verbose))
1339
1340 ;;; Note in Emacs 18 the following defun gets overridden
1341 ;;; with the symbol 'vc-directory-18. See below.
1342 ;;;###autoload
1343 (defun vc-directory (dirname verbose)
1344 "Show version-control status of the current directory and subdirectories.
1345 Normally it creates a Dired buffer that lists only the locked files
1346 in all these directories. With a prefix argument, it lists all files."
1347 (interactive "DDired under VC (directory): \nP")
1348 (require 'dired)
1349 (setq dirname (expand-file-name dirname))
1350 ;; force a trailing slash
1351 (if (not (eq (elt dirname (1- (length dirname))) ?/))
1352 (setq dirname (concat dirname "/")))
1353 (let (nonempty
1354 (dl (length dirname))
1355 (filelist nil) (statelist nil)
1356 (old-dir default-directory)
1357 dired-buf
1358 dired-buf-mod-count)
1359 (vc-file-tree-walk
1360 dirname
1361 (function
1362 (lambda (f)
1363 (if (vc-registered f)
1364 (let ((state (vc-dired-state-info f)))
1365 (and (or verbose state)
1366 (setq filelist (cons (substring f dl) filelist))
1367 (setq statelist (cons state statelist))))))))
1368 (save-window-excursion
1369 (save-excursion
1370 ;; This uses a semi-documented feature of dired; giving a switch
1371 ;; argument forces the buffer to refresh each time.
1372 (setq dired-buf
1373 (dired-internal-noselect
1374 (cons dirname (nreverse filelist))
1375 dired-listing-switches 'vc-dired-mode))
1376 (setq nonempty (not (eq 0 (length filelist))))))
1377 (switch-to-buffer dired-buf)
1378 ;; Make a few modifications to the header
1379 (setq buffer-read-only nil)
1380 (goto-char (point-min))
1381 (forward-line 1) ;; Skip header line
1382 (let ((start (point))) ;; Erase (but don't remove) the
1383 (end-of-line) ;; "wildcard" line.
1384 (delete-region start (point)))
1385 (beginning-of-line)
1386 (if nonempty
1387 (progn
1388 ;; Plug the version information into the individual lines
1389 (mapcar
1390 (function
1391 (lambda (x)
1392 (forward-char 2) ;; skip dired's mark area
1393 (vc-dired-reformat-line x)
1394 (forward-line 1))) ;; go to next line
1395 (nreverse statelist))
1396 (setq buffer-read-only t)
1397 (goto-char (point-min))
1398 (dired-next-line 2)
1399 )
1400 (dired-next-line 1)
1401 (insert " ")
1402 (setq buffer-read-only t)
1403 (message "No files are currently %s under %s"
1404 (if verbose "registered" "locked") dirname))
1405 ))
1406
1407 ;; Emacs 18 version
1408 (defun vc-directory-18 (verbose)
1409 "Show version-control status of all files under the current directory."
1410 (interactive "P")
1411 (let (nonempty (dir default-directory))
1412 (save-excursion
1413 (set-buffer (get-buffer-create "*vc-status*"))
1414 (erase-buffer)
1415 (cd dir)
1416 (vc-file-tree-walk
1417 default-directory
1418 (function (lambda (f)
1419 (if (vc-registered f)
1420 (let ((user (vc-locking-user f)))
1421 (if (or user verbose)
1422 (insert (format
1423 "%s %s\n"
1424 (concat user) f))))))))
1425 (setq nonempty (not (zerop (buffer-size)))))
1426
1427 (if nonempty
1428 (progn
1429 (pop-to-buffer "*vc-status*" t)
1430 (goto-char (point-min))
1431 (shrink-window-if-larger-than-buffer)))
1432 (message "No files are currently %s under %s"
1433 (if verbose "registered" "locked") default-directory))
1434 )
1435
1436 (or (boundp 'minor-mode-map-alist)
1437 (fset 'vc-directory 'vc-directory-18))
1438
1439 ;; Named-configuration support for SCCS
1440
1441 (defun vc-add-triple (name file rev)
1442 (save-excursion
1443 (find-file (expand-file-name
1444 vc-name-assoc-file
1445 (file-name-as-directory
1446 (expand-file-name (vc-backend-subdirectory-name file)
1447 (file-name-directory file)))))
1448 (goto-char (point-max))
1449 (insert name "\t:\t" file "\t" rev "\n")
1450 (basic-save-buffer)
1451 (kill-buffer (current-buffer))
1452 ))
1453
1454 (defun vc-record-rename (file newname)
1455 (save-excursion
1456 (find-file
1457 (expand-file-name
1458 vc-name-assoc-file
1459 (file-name-as-directory
1460 (expand-file-name (vc-backend-subdirectory-name file)
1461 (file-name-directory file)))))
1462 (goto-char (point-min))
1463 ;; (replace-regexp (concat ":" (regexp-quote file) "$") (concat ":" newname))
1464 (while (re-search-forward (concat ":" (regexp-quote file) "$") nil t)
1465 (replace-match (concat ":" newname) nil nil))
1466 (basic-save-buffer)
1467 (kill-buffer (current-buffer))
1468 ))
1469
1470 (defun vc-lookup-triple (file name)
1471 ;; Return the numeric version corresponding to a named snapshot of file
1472 ;; If name is nil or a version number string it's just passed through
1473 (cond ((null name) name)
1474 ((let ((firstchar (aref name 0)))
1475 (and (>= firstchar ?0) (<= firstchar ?9)))
1476 name)
1477 (t
1478 (save-excursion
1479 (set-buffer (get-buffer-create "*vc-info*"))
1480 (vc-insert-file
1481 (expand-file-name
1482 vc-name-assoc-file
1483 (file-name-as-directory
1484 (expand-file-name (vc-backend-subdirectory-name file)
1485 (file-name-directory file)))))
1486 (prog1
1487 (car (vc-parse-buffer
1488 (list (list (concat name "\t:\t" file "\t\\(.+\\)") 1))))
1489 (kill-buffer "*vc-info*"))))
1490 ))
1491
1492 ;; Named-configuration entry points
1493
1494 (defun vc-snapshot-precondition ()
1495 ;; Scan the tree below the current directory.
1496 ;; If any files are locked, return the name of the first such file.
1497 ;; (This means, neither snapshot creation nor retrieval is allowed.)
1498 ;; If one or more of the files are currently visited, return `visited'.
1499 ;; Otherwise, return nil.
1500 (let ((status nil))
1501 (catch 'vc-locked-example
1502 (vc-file-tree-walk
1503 default-directory
1504 (function (lambda (f)
1505 (and (vc-registered f)
1506 (if (vc-locking-user f) (throw 'vc-locked-example f)
1507 (if (get-file-buffer f) (setq status 'visited)))))))
1508 status)))
1509
1510 ;;;###autoload
1511 (defun vc-create-snapshot (name)
1512 "Make a snapshot called NAME.
1513 The snapshot is made from all registered files at or below the current
1514 directory. For each file, the version level of its latest
1515 version becomes part of the named configuration."
1516 (interactive "sNew snapshot name: ")
1517 (let ((result (vc-snapshot-precondition)))
1518 (if (stringp result)
1519 (error "File %s is locked" result)
1520 (vc-file-tree-walk
1521 default-directory
1522 (function (lambda (f) (and
1523 (vc-name f)
1524 (vc-backend-assign-name f name)))))
1525 )))
1526
1527 ;;;###autoload
1528 (defun vc-retrieve-snapshot (name)
1529 "Retrieve the snapshot called NAME.
1530 This function fails if any files are locked at or below the current directory
1531 Otherwise, all registered files are checked out (unlocked) at their version
1532 levels in the snapshot."
1533 (interactive "sSnapshot name to retrieve: ")
1534 (let ((result (vc-snapshot-precondition))
1535 (update nil))
1536 (if (stringp result)
1537 (error "File %s is locked" result)
1538 (if (eq result 'visited)
1539 (setq update (yes-or-no-p "Update the affected buffers? ")))
1540 (vc-file-tree-walk
1541 default-directory
1542 (function (lambda (f) (and
1543 (vc-name f)
1544 (vc-error-occurred
1545 (vc-backend-checkout f nil name)
1546 (if update (vc-resynch-buffer f t t)))))))
1547 )))
1548
1549 ;; Miscellaneous other entry points
1550
1551 ;;;###autoload
1552 (defun vc-print-log ()
1553 "List the change log of the current buffer in a window."
1554 (interactive)
1555 (if vc-dired-mode
1556 (set-buffer (find-file-noselect (dired-get-filename))))
1557 (while vc-parent-buffer
1558 (pop-to-buffer vc-parent-buffer))
1559 (if (and buffer-file-name (vc-name buffer-file-name))
1560 (let ((file buffer-file-name))
1561 (vc-backend-print-log file)
1562 (pop-to-buffer (get-buffer-create "*vc*"))
1563 (setq default-directory (file-name-directory file))
1564 (while (looking-at "=*\n")
1565 (delete-char (- (match-end 0) (match-beginning 0)))
1566 (forward-line -1))
1567 (goto-char (point-min))
1568 (if (looking-at "[\b\t\n\v\f\r ]+")
1569 (delete-char (- (match-end 0) (match-beginning 0))))
1570 (shrink-window-if-larger-than-buffer)
1571 )
1572 (vc-registration-error buffer-file-name)
1573 )
1574 )
1575
1576 ;;;###autoload
1577 (defun vc-revert-buffer ()
1578 "Revert the current buffer's file back to the latest checked-in version.
1579 This asks for confirmation if the buffer contents are not identical
1580 to that version.
1581 If the back-end is CVS, this will give you the most recent revision of
1582 the file on the branch you are editing."
1583 (interactive)
1584 (if vc-dired-mode
1585 (find-file-other-window (dired-get-filename)))
1586 (while vc-parent-buffer
1587 (pop-to-buffer vc-parent-buffer))
1588 (let ((file buffer-file-name)
1589 ;; This operation should always ask for confirmation.
1590 (vc-suppress-confirm nil)
1591 (obuf (current-buffer)) (changed (vc-diff nil t)))
1592 (if (and changed (not (yes-or-no-p "Discard changes? ")))
1593 (progn
1594 (if (and (window-dedicated-p (selected-window))
1595 (one-window-p t 'selected-frame))
1596 (make-frame-invisible (selected-frame))
1597 (delete-window))
1598 (error "Revert cancelled"))
1599 (set-buffer obuf))
1600 (if changed
1601 (if (and (window-dedicated-p (selected-window))
1602 (one-window-p t 'selected-frame))
1603 (make-frame-invisible (selected-frame))
1604 (delete-window)))
1605 (vc-backend-revert file)
1606 (vc-resynch-window file t t)
1607 )
1608 )
1609
1610 ;;;###autoload
1611 (defun vc-cancel-version (norevert)
1612 "Get rid of most recently checked in version of this file.
1613 A prefix argument means do not revert the buffer afterwards."
1614 (interactive "P")
1615 (if vc-dired-mode
1616 (find-file-other-window (dired-get-filename)))
1617 (while vc-parent-buffer
1618 (pop-to-buffer vc-parent-buffer))
1619 (cond
1620 ((not (vc-registered (buffer-file-name)))
1621 (vc-registration-error (buffer-file-name))
1622 (eq (vc-backend (buffer-file-name)) 'CVS)
1623 (error "Unchecking files under CVS is dangerous and not supported in VC"))
1624 ((vc-locking-user (buffer-file-name))
1625 (error "This version is locked; use vc-revert-buffer to discard changes"))
1626 ((not (vc-latest-on-branch-p (buffer-file-name)))
1627 (error "This is not the latest version--VC cannot cancel it")))
1628 (let* ((target (vc-workfile-version (buffer-file-name)))
1629 (recent (if (vc-trunk-p target) "" (vc-branch-part target)))
1630 (config (current-window-configuration)) done)
1631 (if (null (yes-or-no-p (format "Remove version %s from master? " target)))
1632 nil
1633 (setq norevert (or norevert (not
1634 (yes-or-no-p "Revert buffer to most recent remaining version? "))))
1635 (vc-backend-uncheck (buffer-file-name) target)
1636 ;; Check out the most recent remaining version. If it fails, because
1637 ;; the whole branch got deleted, do a double-take and check out the
1638 ;; version where the branch started.
1639 (while (not done)
1640 (condition-case err
1641 (progn
1642 (if norevert
1643 ;; Check out locked, but only to disc, and keep
1644 ;; modifications in the buffer.
1645 (vc-backend-checkout (buffer-file-name) t recent)
1646 ;; Check out unlocked, and revert buffer.
1647 (vc-checkout (buffer-file-name) nil recent))
1648 (setq done t))
1649 (error (set-buffer "*vc*")
1650 (goto-char (point-min))
1651 (if (re-search-forward "no side branches present for" nil t)
1652 (progn (setq recent (vc-branch-part recent))
1653 (set-window-configuration config))
1654 ;; No, it was some other error: re-signal it.
1655 (signal (car err) (cdr err))))))
1656 ;; If norevert, clear version headers and mark the buffer modified.
1657 (if norevert
1658 (progn
1659 (set-visited-file-name (buffer-file-name))
1660 (if (not vc-make-backup-files)
1661 ;; inhibit backup for this buffer
1662 (progn (make-local-variable 'backup-inhibited)
1663 (setq backup-inhibited t)))
1664 (if (eq (vc-backend (buffer-file-name)) 'RCS)
1665 (progn (setq buffer-read-only nil)
1666 (vc-clear-headers)))
1667 (vc-mode-line (buffer-file-name))))
1668 (message "Version %s has been removed from the master" target)
1669 )))
1670
1671 ;;;###autoload
1672 (defun vc-rename-file (old new)
1673 "Rename file OLD to NEW, and rename its master file likewise."
1674 (interactive "fVC rename file: \nFRename to: ")
1675 ;; There are several ways of renaming files under CVS 1.3, but they all
1676 ;; have serious disadvantages. See the FAQ (available from think.com in
1677 ;; pub/cvs/). I'd rather send the user an error, than do something he might
1678 ;; consider to be wrong. When the famous, long-awaited rename database is
1679 ;; implemented things might change for the better. This is unlikely to occur
1680 ;; until CVS 2.0 is released. --ceder 1994-01-23 21:27:51
1681 (if (eq (vc-backend old) 'CVS)
1682 (error "Renaming files under CVS is dangerous and not supported in VC"))
1683 (let ((oldbuf (get-file-buffer old)))
1684 (if (and oldbuf (buffer-modified-p oldbuf))
1685 (error "Please save files before moving them"))
1686 (if (get-file-buffer new)
1687 (error "Already editing new file name"))
1688 (if (file-exists-p new)
1689 (error "New file already exists"))
1690 (let ((oldmaster (vc-name old)))
1691 (if oldmaster
1692 (progn
1693 (if (vc-locking-user old)
1694 (error "Please check in files before moving them"))
1695 (if (or (file-symlink-p oldmaster)
1696 ;; This had FILE, I changed it to OLD. -- rms.
1697 (file-symlink-p (vc-backend-subdirectory-name old)))
1698 (error "This is not a safe thing to do in the presence of symbolic links"))
1699 (rename-file
1700 oldmaster
1701 (let ((backend (vc-backend old))
1702 (newdir (or (file-name-directory new) ""))
1703 (newbase (file-name-nondirectory new)))
1704 (catch 'found
1705 (mapcar
1706 (function
1707 (lambda (s)
1708 (if (eq backend (cdr s))
1709 (let* ((newmaster (format (car s) newdir newbase))
1710 (newmasterdir (file-name-directory newmaster)))
1711 (if (or (not newmasterdir)
1712 (file-directory-p newmasterdir))
1713 (throw 'found newmaster))))))
1714 vc-master-templates)
1715 (error "New file lacks a version control directory"))))))
1716 (if (or (not oldmaster) (file-exists-p old))
1717 (rename-file old new)))
1718 ; ?? Renaming a file might change its contents due to keyword expansion.
1719 ; We should really check out a new copy if the old copy was precisely equal
1720 ; to some checked in version. However, testing for this is tricky....
1721 (if oldbuf
1722 (save-excursion
1723 (set-buffer oldbuf)
1724 (set-visited-file-name new)
1725 (set-buffer-modified-p nil))))
1726 ;; This had FILE, I changed it to OLD. -- rms.
1727 (vc-backend-dispatch old
1728 (vc-record-rename old new) ;SCCS
1729 nil ;RCS
1730 nil ;CVS
1731 )
1732 )
1733
1734 ;;;###autoload
1735 (defun vc-update-change-log (&rest args)
1736 "Find change log file and add entries from recent RCS logs.
1737 The mark is left at the end of the text prepended to the change log.
1738 With prefix arg of C-u, only find log entries for the current buffer's file.
1739 With any numeric prefix arg, find log entries for all files currently visited.
1740 Otherwise, find log entries for all registered files in the default directory.
1741 From a program, any arguments are passed to the `rcs2log' script."
1742 (interactive
1743 (cond ((consp current-prefix-arg) ;C-u
1744 (list buffer-file-name))
1745 (current-prefix-arg ;Numeric argument.
1746 (let ((files nil)
1747 (buffers (buffer-list))
1748 file)
1749 (while buffers
1750 (setq file (buffer-file-name (car buffers)))
1751 (and file (vc-backend file)
1752 (setq files (cons file files)))
1753 (setq buffers (cdr buffers)))
1754 files))
1755 (t
1756 (let ((RCS (concat default-directory "RCS")))
1757 (and (file-directory-p RCS)
1758 (mapcar (function
1759 (lambda (f)
1760 (if (string-match "\\(.*\\),v$" f)
1761 (substring f 0 (match-end 1))
1762 f)))
1763 (directory-files RCS nil "...\\|^[^.]\\|^.[^.]")))))))
1764 (let ((odefault default-directory))
1765 (find-file-other-window (find-change-log))
1766 (barf-if-buffer-read-only)
1767 (vc-buffer-sync)
1768 (undo-boundary)
1769 (goto-char (point-min))
1770 (push-mark)
1771 (message "Computing change log entries...")
1772 (message "Computing change log entries... %s"
1773 (if (or (null args)
1774 (eq 0 (apply 'call-process "rcs2log" nil t nil
1775 "-u"
1776 (concat (user-login-name)
1777 "\t"
1778 (user-full-name)
1779 "\t"
1780 user-mail-address)
1781 (mapcar (function
1782 (lambda (f)
1783 (file-relative-name
1784 (if (file-name-absolute-p f)
1785 f
1786 (concat odefault f)))))
1787 args))))
1788 "done" "failed"))))
1789
1790 ;; Collect back-end-dependent stuff here
1791
1792 (defun vc-backend-admin (file &optional rev comment)
1793 ;; Register a file into the version-control system
1794 ;; Automatically retrieves a read-only version of the file with
1795 ;; keywords expanded if vc-keep-workfiles is non-nil, otherwise
1796 ;; it deletes the workfile.
1797 (vc-file-clearprops file)
1798 (or vc-default-back-end
1799 (setq vc-default-back-end (if (vc-find-binary "rcs") 'RCS 'SCCS)))
1800 (message "Registering %s..." file)
1801 (let ((backend
1802 (cond
1803 ((file-exists-p (vc-backend-subdirectory-name)) vc-default-back-end)
1804 ((file-exists-p "RCS") 'RCS)
1805 ((file-exists-p "SCCS") 'SCCS)
1806 ((file-exists-p "CVS") 'CVS)
1807 (t vc-default-back-end))))
1808 (cond ((eq backend 'SCCS)
1809 (vc-do-command nil 0 "admin" file 'MASTER ;; SCCS
1810 (and rev (concat "-r" rev))
1811 "-fb"
1812 (concat "-i" file)
1813 (and comment (concat "-y" comment))
1814 (format
1815 (car (rassq 'SCCS vc-master-templates))
1816 (or (file-name-directory file) "")
1817 (file-name-nondirectory file)))
1818 (delete-file file)
1819 (if vc-keep-workfiles
1820 (vc-do-command nil 0 "get" file 'MASTER)))
1821 ((eq backend 'RCS)
1822 (vc-do-command nil 0 "ci" file 'MASTER ;; RCS
1823 ;; if available, use the secure registering option
1824 (and (vc-backend-release-p 'RCS "5.6.4") "-i")
1825 (concat (if vc-keep-workfiles "-u" "-r") rev)
1826 (and comment (concat "-t-" comment))
1827 file))
1828 ((eq backend 'CVS)
1829 (vc-do-command nil 0 "cvs" file 'WORKFILE ;; CVS
1830 "add"
1831 (and comment (string-match "[^\t\n ]" comment)
1832 (concat "-m" comment)))
1833 )))
1834 (message "Registering %s...done" file)
1835 )
1836
1837 (defun vc-backend-checkout (file &optional writable rev workfile)
1838 ;; Retrieve a copy of a saved version into a workfile
1839 (let ((filename (or workfile file))
1840 (file-buffer (get-file-buffer file))
1841 (old-default-dir default-directory)
1842 switches)
1843 (message "Checking out %s..." filename)
1844 (save-excursion
1845 ;; Change buffers to get local value of vc-checkout-switches.
1846 (if file-buffer (set-buffer file-buffer))
1847 (setq switches (if (stringp vc-checkout-switches)
1848 (list vc-checkout-switches)
1849 vc-checkout-switches))
1850 ;; Adjust the default-directory so that the check-out creates
1851 ;; the file in the right place. The old value is restored below.
1852 (setq default-directory (file-name-directory filename))
1853 (vc-backend-dispatch file
1854 (progn ;; SCCS
1855 (and rev (string= rev "") (setq rev nil))
1856 (if workfile
1857 ;; Some SCCS implementations allow checking out directly to a
1858 ;; file using the -G option, but then some don't so use the
1859 ;; least common denominator approach and use the -p option
1860 ;; ala RCS.
1861 (let ((vc-modes (logior (file-modes (vc-name file))
1862 (if writable 128 0)))
1863 (failed t))
1864 (unwind-protect
1865 (progn
1866 (apply 'vc-do-command
1867 nil 0 "/bin/sh" file 'MASTER "-c"
1868 ;; Some shells make the "" dummy argument into $0
1869 ;; while others use the shell's name as $0 and
1870 ;; use the "" as $1. The if-statement
1871 ;; converts the latter case to the former.
1872 (format "if [ x\"$1\" = x ]; then shift; fi; \
1873 umask %o; exec >\"$1\" || exit; \
1874 shift; umask %o; exec get \"$@\""
1875 (logand 511 (lognot vc-modes))
1876 (logand 511 (lognot (default-file-modes))))
1877 "" ; dummy argument for shell's $0
1878 filename
1879 (if writable "-e")
1880 "-p"
1881 (and rev
1882 (concat "-r" (vc-lookup-triple file rev)))
1883 switches)
1884 (setq failed nil))
1885 (and failed (file-exists-p filename)
1886 (delete-file filename))))
1887 (apply 'vc-do-command nil 0 "get" file 'MASTER ;; SCCS
1888 (if writable "-e")
1889 (and rev (concat "-r" (vc-lookup-triple file rev)))
1890 switches)
1891 (vc-file-setprop file 'vc-workfile-version nil)))
1892 (if workfile ;; RCS
1893 ;; RCS doesn't let us check out into arbitrary file names directly.
1894 ;; Use `co -p' and make stdout point to the correct file.
1895 (let ((vc-modes (logior (file-modes (vc-name file))
1896 (if writable 128 0)))
1897 (failed t))
1898 (unwind-protect
1899 (progn
1900 (apply 'vc-do-command
1901 nil 0 "/bin/sh" file 'MASTER "-c"
1902 ;; See the SCCS case, above, regarding the
1903 ;; if-statement.
1904 (format "if [ x\"$1\" = x ]; then shift; fi; \
1905 umask %o; exec >\"$1\" || exit; \
1906 shift; umask %o; exec co \"$@\""
1907 (logand 511 (lognot vc-modes))
1908 (logand 511 (lognot (default-file-modes))))
1909 "" ; dummy argument for shell's $0
1910 filename
1911 (if writable "-l")
1912 (concat "-p" rev)
1913 switches)
1914 (setq failed nil))
1915 (and failed (file-exists-p filename) (delete-file filename))))
1916 (let (new-version)
1917 ;; if we should go to the head of the trunk,
1918 ;; clear the default branch first
1919 (and rev (string= rev "")
1920 (vc-do-command nil 0 "rcs" file 'MASTER "-b"))
1921 ;; now do the checkout
1922 (apply 'vc-do-command
1923 nil 0 "co" file 'MASTER
1924 ;; If locking is not strict, force to overwrite
1925 ;; the writable workfile.
1926 (if (eq (vc-checkout-model file) 'implicit) "-f")
1927 (if writable "-l")
1928 (if rev (concat "-r" rev)
1929 ;; if no explicit revision was specified,
1930 ;; check out that of the working file
1931 (let ((workrev (vc-workfile-version file)))
1932 (if workrev (concat "-r" workrev)
1933 nil)))
1934 switches)
1935 ;; determine the new workfile version
1936 (save-excursion
1937 (set-buffer "*vc*")
1938 (goto-char (point-min))
1939 (setq new-version
1940 (if (re-search-forward "^revision \\([0-9.]+\\).*\n" nil t)
1941 (buffer-substring (match-beginning 1) (match-end 1)))))
1942 (vc-file-setprop file 'vc-workfile-version new-version)
1943 ;; if necessary, adjust the default branch
1944 (and rev (not (string= rev ""))
1945 (vc-do-command nil 0 "rcs" file 'MASTER
1946 (concat "-b" (if (vc-latest-on-branch-p file)
1947 (if (vc-trunk-p new-version) nil
1948 (vc-branch-part new-version))
1949 new-version))))))
1950 (if workfile ;; CVS
1951 ;; CVS is much like RCS
1952 (let ((failed t))
1953 (unwind-protect
1954 (progn
1955 (apply 'vc-do-command
1956 nil 0 "/bin/sh" file 'WORKFILE "-c"
1957 "exec >\"$1\" || exit; shift; exec cvs update \"$@\""
1958 "" ; dummy argument for shell's $0
1959 workfile
1960 (concat "-r" rev)
1961 "-p"
1962 switches)
1963 (setq failed nil))
1964 (and failed (file-exists-p filename) (delete-file filename))))
1965 ;; default for verbose checkout: clear the sticky tag
1966 ;; so that the actual update will get the head of the trunk
1967 (and rev (string= rev "")
1968 (vc-do-command nil 0 "cvs" file 'WORKFILE "update" "-A"))
1969 ;; If a revision was specified, check that out.
1970 (if rev
1971 (apply 'vc-do-command nil 0 "cvs" file 'WORKFILE
1972 (and writable (eq (vc-checkout-model file) 'manual) "-w")
1973 "update"
1974 (and rev (not (string= rev ""))
1975 (concat "-r" rev))
1976 switches)
1977 ;; If no revision was specified, simply make the file writable.
1978 (and writable
1979 (or (eq (vc-checkout-model file) 'manual)
1980 (zerop (logand 128 (file-modes file))))
1981 (set-file-modes file (logior 128 (file-modes file)))))
1982 (if rev (vc-file-setprop file 'vc-workfile-version nil))))
1983 (setq default-directory old-default-dir)
1984 (cond
1985 ((not workfile)
1986 (vc-file-clear-masterprops file)
1987 (if writable
1988 (vc-file-setprop file 'vc-locking-user (user-login-name)))
1989 (vc-file-setprop file
1990 'vc-checkout-time (nth 5 (file-attributes file)))))
1991 (message "Checking out %s...done" filename))))
1992
1993 (defun vc-backend-logentry-check (file)
1994 (vc-backend-dispatch file
1995 (if (>= (buffer-size) 512) ;; SCCS
1996 (progn
1997 (goto-char 512)
1998 (error
1999 "Log must be less than 512 characters; point is now at pos 512")))
2000 nil ;; RCS
2001 nil) ;; CVS
2002 )
2003
2004 (defun vc-backend-checkin (file rev comment)
2005 ;; Register changes to FILE as level REV with explanatory COMMENT.
2006 ;; Automatically retrieves a read-only version of the file with
2007 ;; keywords expanded if vc-keep-workfiles is non-nil, otherwise
2008 ;; it deletes the workfile.
2009 ;; Adaption for RCS branch support: if this is an explicit checkin,
2010 ;; or if the checkin creates a new branch, set the master file branch
2011 ;; accordingly.
2012 (message "Checking in %s..." file)
2013 ;; "This log message intentionally left almost blank".
2014 ;; RCS 5.7 gripes about white-space-only comments too.
2015 (or (and comment (string-match "[^\t\n ]" comment))
2016 (setq comment "*** empty log message ***"))
2017 (save-excursion
2018 ;; Change buffers to get local value of vc-checkin-switches.
2019 (set-buffer (or (get-file-buffer file) (current-buffer)))
2020 (let ((switches
2021 (if (stringp vc-checkin-switches)
2022 (list vc-checkin-switches)
2023 vc-checkin-switches)))
2024 ;; Clear the master-properties. Do that here, not at the
2025 ;; end, because if the check-in fails we want them to get
2026 ;; re-computed before the next try.
2027 (vc-file-clear-masterprops file)
2028 (vc-backend-dispatch file
2029 ;; SCCS
2030 (progn
2031 (apply 'vc-do-command nil 0 "delta" file 'MASTER
2032 (if rev (concat "-r" rev))
2033 (concat "-y" comment)
2034 switches)
2035 (vc-file-setprop file 'vc-locking-user 'none)
2036 (vc-file-setprop file 'vc-workfile-version nil)
2037 (if vc-keep-workfiles
2038 (vc-do-command nil 0 "get" file 'MASTER))
2039 )
2040 ;; RCS
2041 (let ((old-version (vc-workfile-version file)) new-version)
2042 (apply 'vc-do-command nil 0 "ci" file 'MASTER
2043 ;; if available, use the secure check-in option
2044 (and (vc-backend-release-p 'RCS "5.6.4") "-j")
2045 (concat (if vc-keep-workfiles "-u" "-r") rev)
2046 (concat "-m" comment)
2047 switches)
2048 (vc-file-setprop file 'vc-locking-user 'none)
2049 (vc-file-setprop file 'vc-workfile-version nil)
2050
2051 ;; determine the new workfile version
2052 (set-buffer "*vc*")
2053 (goto-char (point-min))
2054 (if (or (re-search-forward
2055 "new revision: \\([0-9.]+\\);" nil t)
2056 (re-search-forward
2057 "reverting to previous revision \\([0-9.]+\\)" nil t))
2058 (progn (setq new-version (buffer-substring (match-beginning 1)
2059 (match-end 1)))
2060 (vc-file-setprop file 'vc-workfile-version new-version)))
2061
2062 ;; if we got to a different branch, adjust the default
2063 ;; branch accordingly
2064 (cond
2065 ((and old-version new-version
2066 (not (string= (vc-branch-part old-version)
2067 (vc-branch-part new-version))))
2068 (vc-do-command nil 0 "rcs" file 'MASTER
2069 (if (vc-trunk-p new-version) "-b"
2070 (concat "-b" (vc-branch-part new-version))))
2071 ;; If this is an old RCS release, we might have
2072 ;; to remove a remaining lock.
2073 (if (not (vc-backend-release-p 'RCS "5.6.2"))
2074 ;; exit status of 1 is also accepted.
2075 ;; It means that the lock was removed before.
2076 (vc-do-command nil 1 "rcs" file 'MASTER
2077 (concat "-u" old-version))))))
2078 ;; CVS
2079 (progn
2080 ;; explicit check-in to the trunk requires a
2081 ;; double check-in (first unexplicit) (CVS-1.3)
2082 (condition-case nil
2083 (progn
2084 (if (and rev (vc-trunk-p rev))
2085 (apply 'vc-do-command nil 0 "cvs" file 'WORKFILE
2086 "ci" "-m" "intermediate"
2087 switches))
2088 (apply 'vc-do-command nil 0 "cvs" file 'WORKFILE
2089 "ci" (if rev (concat "-r" rev))
2090 (concat "-m" comment)
2091 switches))
2092 (error (if (eq (vc-cvs-status file) 'needs-merge)
2093 ;; The CVS output will be on top of this message.
2094 (error "Type C-x 0 C-x C-q to merge in changes")
2095 (error "Check-in failed"))))
2096 ;; determine and store the new workfile version
2097 (set-buffer "*vc*")
2098 (goto-char (point-min))
2099 (if (re-search-forward
2100 "^\\(new\\|initial\\) revision: \\([0-9.]+\\)" nil t)
2101 (vc-file-setprop file 'vc-workfile-version
2102 (buffer-substring (match-beginning 2)
2103 (match-end 2)))
2104 (vc-file-setprop file 'vc-workfile-version nil))
2105 ;; if this was an explicit check-in, remove the sticky tag
2106 (if rev
2107 (vc-do-command nil 0 "cvs" file 'WORKFILE "update" "-A"))
2108 (vc-file-setprop file 'vc-locking-user 'none)
2109 (vc-file-setprop file 'vc-checkout-time
2110 (nth 5 (file-attributes file)))))))
2111 (message "Checking in %s...done" file))
2112
2113 (defun vc-backend-revert (file)
2114 ;; Revert file to latest checked-in version.
2115 ;; (for RCS, to workfile version)
2116 (message "Reverting %s..." file)
2117 (vc-file-clear-masterprops file)
2118 (vc-backend-dispatch
2119 file
2120 ;; SCCS
2121 (progn
2122 (vc-do-command nil 0 "unget" file 'MASTER nil)
2123 (vc-do-command nil 0 "get" file 'MASTER nil))
2124 ;; RCS
2125 (vc-do-command nil 0 "co" file 'MASTER
2126 "-f" (concat "-u" (vc-workfile-version file)))
2127 ;; CVS
2128 (progn
2129 (delete-file file)
2130 (vc-do-command nil 0 "cvs" file 'WORKFILE "update")))
2131 (vc-file-setprop file 'vc-locking-user 'none)
2132 (vc-file-setprop file 'vc-checkout-time (nth 5 (file-attributes file)))
2133 (message "Reverting %s...done" file)
2134 )
2135
2136 (defun vc-backend-steal (file &optional rev)
2137 ;; Steal the lock on the current workfile. Needs RCS 5.6.2 or later for -M.
2138 (message "Stealing lock on %s..." file)
2139 (vc-backend-dispatch file
2140 (progn ;SCCS
2141 (vc-do-command nil 0 "unget" file 'MASTER "-n" (if rev (concat "-r" rev)))
2142 (vc-do-command nil 0 "get" file 'MASTER "-g" (if rev (concat "-r" rev)))
2143 )
2144 (vc-do-command nil 0 "rcs" file 'MASTER ;RCS
2145 "-M" (concat "-u" rev) (concat "-l" rev))
2146 (error "You cannot steal a CVS lock; there are no CVS locks to steal") ;CVS
2147 )
2148 (vc-file-setprop file 'vc-locking-user (user-login-name))
2149 (message "Stealing lock on %s...done" file)
2150 )
2151
2152 (defun vc-backend-uncheck (file target)
2153 ;; Undo the latest checkin.
2154 (message "Removing last change from %s..." file)
2155 (vc-backend-dispatch file
2156 (vc-do-command nil 0 "rmdel" file 'MASTER (concat "-r" target))
2157 (vc-do-command nil 0 "rcs" file 'MASTER (concat "-o" target))
2158 nil ;; this is never reached under CVS
2159 )
2160 (message "Removing last change from %s...done" file)
2161 )
2162
2163 (defun vc-backend-print-log (file)
2164 ;; Get change log associated with FILE.
2165 (vc-backend-dispatch
2166 file
2167 (vc-do-command nil 0 "prs" file 'MASTER)
2168 (vc-do-command nil 0 "rlog" file 'MASTER)
2169 (vc-do-command nil 0 "cvs" file 'WORKFILE "rlog")))
2170
2171 (defun vc-backend-assign-name (file name)
2172 ;; Assign to a FILE's latest version a given NAME.
2173 (vc-backend-dispatch file
2174 (vc-add-triple name file (vc-latest-version file)) ;; SCCS
2175 (vc-do-command nil 0 "rcs" file 'MASTER (concat "-n" name ":")) ;; RCS
2176 (vc-do-command nil 0 "cvs" file 'WORKFILE "tag" name) ;; CVS
2177 )
2178 )
2179
2180 (defun vc-backend-diff (file &optional oldvers newvers cmp)
2181 ;; Get a difference report between two versions of FILE.
2182 ;; Get only a brief comparison report if CMP, a difference report otherwise.
2183 (let ((backend (vc-backend file)))
2184 (cond
2185 ((eq backend 'SCCS)
2186 (setq oldvers (vc-lookup-triple file oldvers))
2187 (setq newvers (vc-lookup-triple file newvers)))
2188 ((eq backend 'RCS)
2189 (if (not oldvers) (setq oldvers (vc-workfile-version file)))
2190 ;; If we know that --brief is not supported, don't try it.
2191 (setq cmp (and cmp (not (eq vc-rcsdiff-knows-brief 'no))))))
2192 ;; SCCS and RCS shares a lot of code.
2193 (cond
2194 ((or (eq backend 'SCCS) (eq backend 'RCS))
2195 (let* ((command (if (eq backend 'SCCS) "vcdiff" "rcsdiff"))
2196 (mode (if (eq backend 'RCS) 'WORKFILE 'MASTER))
2197 (options (append (list (and cmp "--brief")
2198 "-q"
2199 (and oldvers (concat "-r" oldvers))
2200 (and newvers (concat "-r" newvers)))
2201 (and (not cmp)
2202 (if (listp diff-switches)
2203 diff-switches
2204 (list diff-switches)))))
2205 (status (apply 'vc-do-command "*vc-diff*" 2
2206 command file mode options)))
2207 ;; If --brief didn't work, do a double-take and remember it
2208 ;; for the future.
2209 (if (eq status 2)
2210 (prog1
2211 (apply 'vc-do-command "*vc-diff*" 1 command file 'WORKFILE
2212 (if cmp (cdr options) options))
2213 (if cmp (setq vc-rcsdiff-knows-brief 'no)))
2214 ;; If --brief DID work, remember that, too.
2215 (and cmp (not vc-rcsdiff-knows-brief)
2216 (setq vc-rcsdiff-knows-brief 'yes))
2217 status)))
2218 ;; CVS is different.
2219 ((eq backend 'CVS)
2220 (if (string= (vc-workfile-version file) "0") ;CVS
2221 ;; This file is added but not yet committed; there is no master file.
2222 (if (or oldvers newvers)
2223 (error "No revisions of %s exist" file)
2224 (if cmp 1 ;; file is added but not committed,
2225 ;; we regard this as "changed".
2226 ;; diff it against /dev/null.
2227 (apply 'vc-do-command
2228 "*vc-diff*" 1 "diff" file 'WORKFILE
2229 (append (if (listp diff-switches)
2230 diff-switches
2231 (list diff-switches)) '("/dev/null")))))
2232 ;; cmp is not yet implemented -- we always do a full diff.
2233 (apply 'vc-do-command
2234 "*vc-diff*" 1 "cvs" file 'WORKFILE "diff"
2235 (and oldvers (concat "-r" oldvers))
2236 (and newvers (concat "-r" newvers))
2237 (if (listp diff-switches)
2238 diff-switches
2239 (list diff-switches)))))
2240 (t
2241 (vc-registration-error file)))))
2242
2243 (defun vc-backend-merge-news (file)
2244 ;; Merge in any new changes made to FILE.
2245 (message "Merging changes into %s..." file)
2246 (prog1
2247 (vc-backend-dispatch
2248 file
2249 (error "vc-backend-merge-news not meaningful for SCCS files") ;SCCS
2250 (error "vc-backend-merge-news not meaningful for RCS files") ;RCS
2251 (save-excursion ; CVS
2252 (vc-file-clear-masterprops file)
2253 (vc-file-setprop file 'vc-workfile-version nil)
2254 (vc-file-setprop file 'vc-locking-user nil)
2255 (vc-do-command nil 0 "cvs" file 'WORKFILE "update")
2256 ;; CVS doesn't return an error code if conflicts are detected.
2257 ;; Since we want to warn the user about it (and possibly start
2258 ;; emerge later), scan the output and see if this occurred.
2259 (set-buffer (get-buffer "*vc*"))
2260 (goto-char (point-min))
2261 (if (re-search-forward "^cvs update: conflicts found in .*" nil t)
2262 1 ;; error code for caller
2263 0 ;; no conflict detected
2264 )))
2265 (message "Merging changes into %s...done" file)))
2266
2267 (defun vc-check-headers ()
2268 "Check if the current file has any headers in it."
2269 (interactive)
2270 (save-excursion
2271 (goto-char (point-min))
2272 (vc-backend-dispatch buffer-file-name
2273 (re-search-forward "%[MIRLBSDHTEGUYFPQCZWA]%" nil t) ;; SCCS
2274 (re-search-forward "\\$[A-Za-z\300-\326\330-\366\370-\377]+\\(: [\t -#%-\176\240-\377]*\\)?\\$" nil t) ;; RCS
2275 'RCS ;; CVS works like RCS in this regard.
2276 )
2277 ))
2278
2279 ;; Back-end-dependent stuff ends here.
2280
2281 ;; Set up key bindings for use while editing log messages
2282
2283 (defun vc-log-mode ()
2284 "Minor mode for driving version-control tools.
2285 These bindings are added to the global keymap when you enter this mode:
2286 \\[vc-next-action] perform next logical version-control operation on current file
2287 \\[vc-register] register current file
2288 \\[vc-toggle-read-only] like next-action, but won't register files
2289 \\[vc-insert-headers] insert version-control headers in current file
2290 \\[vc-print-log] display change history of current file
2291 \\[vc-revert-buffer] revert buffer to latest version
2292 \\[vc-cancel-version] undo latest checkin
2293 \\[vc-diff] show diffs between file versions
2294 \\[vc-version-other-window] visit old version in another window
2295 \\[vc-directory] show all files locked by any user in or below .
2296 \\[vc-update-change-log] add change log entry from recent checkins
2297
2298 While you are entering a change log message for a version, the following
2299 additional bindings will be in effect.
2300
2301 \\[vc-finish-logentry] proceed with check in, ending log message entry
2302
2303 Whenever you do a checkin, your log comment is added to a ring of
2304 saved comments. These can be recalled as follows:
2305
2306 \\[vc-next-comment] replace region with next message in comment ring
2307 \\[vc-previous-comment] replace region with previous message in comment ring
2308 \\[vc-comment-search-reverse] search backward for regexp in the comment ring
2309 \\[vc-comment-search-forward] search backward for regexp in the comment ring
2310
2311 Entry to the change-log submode calls the value of text-mode-hook, then
2312 the value of vc-log-mode-hook.
2313
2314 Global user options:
2315 vc-initial-comment If non-nil, require user to enter a change
2316 comment upon first checkin of the file.
2317
2318 vc-keep-workfiles Non-nil value prevents workfiles from being
2319 deleted when changes are checked in
2320
2321 vc-suppress-confirm Suppresses some confirmation prompts,
2322 notably for reversions.
2323
2324 vc-header-alist Which keywords to insert when adding headers
2325 with \\[vc-insert-headers]. Defaults to
2326 '(\"\%\W\%\") under SCCS, '(\"\$Id\$\") under
2327 RCS and CVS.
2328
2329 vc-static-header-alist By default, version headers inserted in C files
2330 get stuffed in a static string area so that
2331 ident(RCS/CVS) or what(SCCS) can see them in
2332 the compiled object code. You can override
2333 this by setting this variable to nil, or change
2334 the header template by changing it.
2335
2336 vc-command-messages if non-nil, display run messages from the
2337 actual version-control utilities (this is
2338 intended primarily for people hacking vc
2339 itself).
2340 "
2341 (interactive)
2342 (set-syntax-table text-mode-syntax-table)
2343 (use-local-map vc-log-entry-mode)
2344 (setq local-abbrev-table text-mode-abbrev-table)
2345 (setq major-mode 'vc-log-mode)
2346 (setq mode-name "VC-Log")
2347 (make-local-variable 'vc-log-file)
2348 (make-local-variable 'vc-log-version)
2349 (make-local-variable 'vc-comment-ring-index)
2350 (set-buffer-modified-p nil)
2351 (setq buffer-file-name nil)
2352 (run-hooks 'text-mode-hook 'vc-log-mode-hook)
2353 )
2354
2355 ;; Initialization code, to be done just once at load-time
2356 (if vc-log-entry-mode
2357 nil
2358 (setq vc-log-entry-mode (make-sparse-keymap))
2359 (define-key vc-log-entry-mode "\M-n" 'vc-next-comment)
2360 (define-key vc-log-entry-mode "\M-p" 'vc-previous-comment)
2361 (define-key vc-log-entry-mode "\M-r" 'vc-comment-search-reverse)
2362 (define-key vc-log-entry-mode "\M-s" 'vc-comment-search-forward)
2363 (define-key vc-log-entry-mode "\C-c\C-c" 'vc-finish-logentry)
2364 )
2365
2366 ;;; These things should probably be generally available
2367
2368 (defun vc-file-tree-walk (dirname func &rest args)
2369 "Walk recursively through DIRNAME.
2370 Invoke FUNC f ARGS on each non-directory file f underneath it."
2371 (vc-file-tree-walk-internal (expand-file-name dirname) func args)
2372 (message "Traversing directory %s...done" dirname))
2373
2374 (defun vc-file-tree-walk-internal (file func args)
2375 (if (not (file-directory-p file))
2376 (apply func file args)
2377 (message "Traversing directory %s..." (abbreviate-file-name file))
2378 (let ((dir (file-name-as-directory file)))
2379 (mapcar
2380 (function
2381 (lambda (f) (or
2382 (string-equal f ".")
2383 (string-equal f "..")
2384 (member f vc-directory-exclusion-list)
2385 (let ((dirf (concat dir f)))
2386 (or
2387 (file-symlink-p dirf) ;; Avoid possible loops
2388 (vc-file-tree-walk-internal dirf func args))))))
2389 (directory-files dir)))))
2390
2391 (provide 'vc)
2392
2393 ;;; DEVELOPER'S NOTES ON CONCURRENCY PROBLEMS IN THIS CODE
2394 ;;;
2395 ;;; These may be useful to anyone who has to debug or extend the package.
2396 ;;; (Note that this information corresponds to versions 5.x. Some of it
2397 ;;; might have been invalidated by the additions to support branching
2398 ;;; and RCS keyword lookup. AS, 1995/03/24)
2399 ;;;
2400 ;;; A fundamental problem in VC is that there are time windows between
2401 ;;; vc-next-action's computations of the file's version-control state and
2402 ;;; the actions that change it. This is a window open to lossage in a
2403 ;;; multi-user environment; someone else could nip in and change the state
2404 ;;; of the master during it.
2405 ;;;
2406 ;;; The performance problem is that rlog/prs calls are very expensive; we want
2407 ;;; to avoid them as much as possible.
2408 ;;;
2409 ;;; ANALYSIS:
2410 ;;;
2411 ;;; The performance problem, it turns out, simplifies in practice to the
2412 ;;; problem of making vc-locking-user fast. The two other functions that call
2413 ;;; prs/rlog will not be so commonly used that the slowdown is a problem; one
2414 ;;; makes snapshots, the other deletes the calling user's last change in the
2415 ;;; master.
2416 ;;;
2417 ;;; The race condition implies that we have to either (a) lock the master
2418 ;;; during the entire execution of vc-next-action, or (b) detect and
2419 ;;; recover from errors resulting from dispatch on an out-of-date state.
2420 ;;;
2421 ;;; Alternative (a) appears to be unfeasible. The problem is that we can't
2422 ;;; guarantee that the lock will ever be removed. Suppose a user starts a
2423 ;;; checkin, the change message buffer pops up, and the user, having wandered
2424 ;;; off to do something else, simply forgets about it?
2425 ;;;
2426 ;;; Alternative (b), on the other hand, works well with a cheap way to speed up
2427 ;;; vc-locking-user. Usually, if a file is registered, we can read its locked/
2428 ;;; unlocked state and its current owner from its permissions.
2429 ;;;
2430 ;;; This shortcut will fail if someone has manually changed the workfile's
2431 ;;; permissions; also if developers are munging the workfile in several
2432 ;;; directories, with symlinks to a master (in this latter case, the
2433 ;;; permissions shortcut will fail to detect a lock asserted from another
2434 ;;; directory).
2435 ;;;
2436 ;;; Note that these cases correspond exactly to the errors which could happen
2437 ;;; because of a competing checkin/checkout race in between two instances of
2438 ;;; vc-next-action.
2439 ;;;
2440 ;;; For VC's purposes, a workfile/master pair may have the following states:
2441 ;;;
2442 ;;; A. Unregistered. There is a workfile, there is no master.
2443 ;;;
2444 ;;; B. Registered and not locked by anyone.
2445 ;;;
2446 ;;; C. Locked by calling user and unchanged.
2447 ;;;
2448 ;;; D. Locked by the calling user and changed.
2449 ;;;
2450 ;;; E. Locked by someone other than the calling user.
2451 ;;;
2452 ;;; This makes for 25 states and 20 error conditions. Here's the matrix:
2453 ;;;
2454 ;;; VC's idea of state
2455 ;;; |
2456 ;;; V Actual state RCS action SCCS action Effect
2457 ;;; A B C D E
2458 ;;; A . 1 2 3 4 ci -u -t- admin -fb -i<file> initial admin
2459 ;;; B 5 . 6 7 8 co -l get -e checkout
2460 ;;; C 9 10 . 11 12 co -u unget; get revert
2461 ;;; D 13 14 15 . 16 ci -u -m<comment> delta -y<comment>; get checkin
2462 ;;; E 17 18 19 20 . rcs -u -M -l unget -n ; get -g steal lock
2463 ;;;
2464 ;;; All commands take the master file name as a last argument (not shown).
2465 ;;;
2466 ;;; In the discussion below, a "self-race" is a pathological situation in
2467 ;;; which VC operations are being attempted simultaneously by two or more
2468 ;;; Emacsen running under the same username.
2469 ;;;
2470 ;;; The vc-next-action code has the following windows:
2471 ;;;
2472 ;;; Window P:
2473 ;;; Between the check for existence of a master file and the call to
2474 ;;; admin/checkin in vc-buffer-admin (apparent state A). This window may
2475 ;;; never close if the initial-comment feature is on.
2476 ;;;
2477 ;;; Window Q:
2478 ;;; Between the call to vc-workfile-unchanged-p in and the immediately
2479 ;;; following revert (apparent state C).
2480 ;;;
2481 ;;; Window R:
2482 ;;; Between the call to vc-workfile-unchanged-p in and the following
2483 ;;; checkin (apparent state D). This window may never close.
2484 ;;;
2485 ;;; Window S:
2486 ;;; Between the unlock and the immediately following checkout during a
2487 ;;; revert operation (apparent state C). Included in window Q.
2488 ;;;
2489 ;;; Window T:
2490 ;;; Between vc-locking-user and the following checkout (apparent state B).
2491 ;;;
2492 ;;; Window U:
2493 ;;; Between vc-locking-user and the following revert (apparent state C).
2494 ;;; Includes windows Q and S.
2495 ;;;
2496 ;;; Window V:
2497 ;;; Between vc-locking-user and the following checkin (apparent state
2498 ;;; D). This window may never be closed if the user fails to complete the
2499 ;;; checkin message. Includes window R.
2500 ;;;
2501 ;;; Window W:
2502 ;;; Between vc-locking-user and the following steal-lock (apparent
2503 ;;; state E). This window may never close if the user fails to complete
2504 ;;; the steal-lock message. Includes window X.
2505 ;;;
2506 ;;; Window X:
2507 ;;; Between the unlock and the immediately following re-lock during a
2508 ;;; steal-lock operation (apparent state E). This window may never cloce
2509 ;;; if the user fails to complete the steal-lock message.
2510 ;;;
2511 ;;; Errors:
2512 ;;;
2513 ;;; Apparent state A ---
2514 ;;;
2515 ;;; 1. File looked unregistered but is actually registered and not locked.
2516 ;;;
2517 ;;; Potential cause: someone else's admin during window P, with
2518 ;;; caller's admin happening before their checkout.
2519 ;;;
2520 ;;; RCS: Prior to version 5.6.4, ci fails with message
2521 ;;; "no lock set by <user>". From 5.6.4 onwards, VC uses the new
2522 ;;; ci -i option and the message is "<file>,v: already exists".
2523 ;;; SCCS: admin will fail with error (ad19).
2524 ;;;
2525 ;;; We can let these errors be passed up to the user.
2526 ;;;
2527 ;;; 2. File looked unregistered but is actually locked by caller, unchanged.
2528 ;;;
2529 ;;; Potential cause: self-race during window P.
2530 ;;;
2531 ;;; RCS: Prior to version 5.6.4, reverts the file to the last saved
2532 ;;; version and unlocks it. From 5.6.4 onwards, VC uses the new
2533 ;;; ci -i option, failing with message "<file>,v: already exists".
2534 ;;; SCCS: will fail with error (ad19).
2535 ;;;
2536 ;;; Either of these consequences is acceptable.
2537 ;;;
2538 ;;; 3. File looked unregistered but is actually locked by caller, changed.
2539 ;;;
2540 ;;; Potential cause: self-race during window P.
2541 ;;;
2542 ;;; RCS: Prior to version 5.6.4, VC registers the caller's workfile as
2543 ;;; a delta with a null change comment (the -t- switch will be
2544 ;;; ignored). From 5.6.4 onwards, VC uses the new ci -i option,
2545 ;;; failing with message "<file>,v: already exists".
2546 ;;; SCCS: will fail with error (ad19).
2547 ;;;
2548 ;;; 4. File looked unregistered but is locked by someone else.
2549 ;;;
2550 ;;; Potential cause: someone else's admin during window P, with
2551 ;;; caller's admin happening *after* their checkout.
2552 ;;;
2553 ;;; RCS: Prior to version 5.6.4, ci fails with a
2554 ;;; "no lock set by <user>" message. From 5.6.4 onwards,
2555 ;;; VC uses the new ci -i option, failing with message
2556 ;;; "<file>,v: already exists".
2557 ;;; SCCS: will fail with error (ad19).
2558 ;;;
2559 ;;; We can let these errors be passed up to the user.
2560 ;;;
2561 ;;; Apparent state B ---
2562 ;;;
2563 ;;; 5. File looked registered and not locked, but is actually unregistered.
2564 ;;;
2565 ;;; Potential cause: master file got nuked during window P.
2566 ;;;
2567 ;;; RCS: will fail with "RCS/<file>: No such file or directory"
2568 ;;; SCCS: will fail with error ut4.
2569 ;;;
2570 ;;; We can let these errors be passed up to the user.
2571 ;;;
2572 ;;; 6. File looked registered and not locked, but is actually locked by the
2573 ;;; calling user and unchanged.
2574 ;;;
2575 ;;; Potential cause: self-race during window T.
2576 ;;;
2577 ;;; RCS: in the same directory as the previous workfile, co -l will fail
2578 ;;; with "co error: writable foo exists; checkout aborted". In any other
2579 ;;; directory, checkout will succeed.
2580 ;;; SCCS: will fail with ge17.
2581 ;;;
2582 ;;; Either of these consequences is acceptable.
2583 ;;;
2584 ;;; 7. File looked registered and not locked, but is actually locked by the
2585 ;;; calling user and changed.
2586 ;;;
2587 ;;; As case 6.
2588 ;;;
2589 ;;; 8. File looked registered and not locked, but is actually locked by another
2590 ;;; user.
2591 ;;;
2592 ;;; Potential cause: someone else checks it out during window T.
2593 ;;;
2594 ;;; RCS: co error: revision 1.3 already locked by <user>
2595 ;;; SCCS: fails with ge4 (in directory) or ut7 (outside it).
2596 ;;;
2597 ;;; We can let these errors be passed up to the user.
2598 ;;;
2599 ;;; Apparent state C ---
2600 ;;;
2601 ;;; 9. File looks locked by calling user and unchanged, but is unregistered.
2602 ;;;
2603 ;;; As case 5.
2604 ;;;
2605 ;;; 10. File looks locked by calling user and unchanged, but is actually not
2606 ;;; locked.
2607 ;;;
2608 ;;; Potential cause: a self-race in window U, or by the revert's
2609 ;;; landing during window X of some other user's steal-lock or window S
2610 ;;; of another user's revert.
2611 ;;;
2612 ;;; RCS: succeeds, refreshing the file from the identical version in
2613 ;;; the master.
2614 ;;; SCCS: fails with error ut4 (p file nonexistent).
2615 ;;;
2616 ;;; Either of these consequences is acceptable.
2617 ;;;
2618 ;;; 11. File is locked by calling user. It looks unchanged, but is actually
2619 ;;; changed.
2620 ;;;
2621 ;;; Potential cause: the file would have to be touched by a self-race
2622 ;;; during window Q.
2623 ;;;
2624 ;;; The revert will succeed, removing whatever changes came with
2625 ;;; the touch. It is theoretically possible that work could be lost.
2626 ;;;
2627 ;;; 12. File looks like it's locked by the calling user and unchanged, but
2628 ;;; it's actually locked by someone else.
2629 ;;;
2630 ;;; Potential cause: a steal-lock in window V.
2631 ;;;
2632 ;;; RCS: co error: revision <rev> locked by <user>; use co -r or rcs -u
2633 ;;; SCCS: fails with error un2
2634 ;;;
2635 ;;; We can pass these errors up to the user.
2636 ;;;
2637 ;;; Apparent state D ---
2638 ;;;
2639 ;;; 13. File looks like it's locked by the calling user and changed, but it's
2640 ;;; actually unregistered.
2641 ;;;
2642 ;;; Potential cause: master file got nuked during window P.
2643 ;;;
2644 ;;; RCS: Prior to version 5.6.4, checks in the user's version as an
2645 ;;; initial delta. From 5.6.4 onwards, VC uses the new ci -j
2646 ;;; option, failing with message "no such file or directory".
2647 ;;; SCCS: will fail with error ut4.
2648 ;;;
2649 ;;; This case is kind of nasty. Under RCS prior to version 5.6.4,
2650 ;;; VC may fail to detect the loss of previous version information.
2651 ;;;
2652 ;;; 14. File looks like it's locked by the calling user and changed, but it's
2653 ;;; actually unlocked.
2654 ;;;
2655 ;;; Potential cause: self-race in window V, or the checkin happening
2656 ;;; during the window X of someone else's steal-lock or window S of
2657 ;;; someone else's revert.
2658 ;;;
2659 ;;; RCS: ci will fail with "no lock set by <user>".
2660 ;;; SCCS: delta will fail with error ut4.
2661 ;;;
2662 ;;; 15. File looks like it's locked by the calling user and changed, but it's
2663 ;;; actually locked by the calling user and unchanged.
2664 ;;;
2665 ;;; Potential cause: another self-race --- a whole checkin/checkout
2666 ;;; sequence by the calling user would have to land in window R.
2667 ;;;
2668 ;;; SCCS: checks in a redundant delta and leaves the file unlocked as usual.
2669 ;;; RCS: reverts to the file state as of the second user's checkin, leaving
2670 ;;; the file unlocked.
2671 ;;;
2672 ;;; It is theoretically possible that work could be lost under RCS.
2673 ;;;
2674 ;;; 16. File looks like it's locked by the calling user and changed, but it's
2675 ;;; actually locked by a different user.
2676 ;;;
2677 ;;; RCS: ci error: no lock set by <user>
2678 ;;; SCCS: unget will fail with error un2
2679 ;;;
2680 ;;; We can pass these errors up to the user.
2681 ;;;
2682 ;;; Apparent state E ---
2683 ;;;
2684 ;;; 17. File looks like it's locked by some other user, but it's actually
2685 ;;; unregistered.
2686 ;;;
2687 ;;; As case 13.
2688 ;;;
2689 ;;; 18. File looks like it's locked by some other user, but it's actually
2690 ;;; unlocked.
2691 ;;;
2692 ;;; Potential cause: someone released a lock during window W.
2693 ;;;
2694 ;;; RCS: The calling user will get the lock on the file.
2695 ;;; SCCS: unget -n will fail with cm4.
2696 ;;;
2697 ;;; Either of these consequences will be OK.
2698 ;;;
2699 ;;; 19. File looks like it's locked by some other user, but it's actually
2700 ;;; locked by the calling user and unchanged.
2701 ;;;
2702 ;;; Potential cause: the other user relinquishing a lock followed by
2703 ;;; a self-race, both in window W.
2704 ;;;
2705 ;;; Under both RCS and SCCS, both unlock and lock will succeed, making
2706 ;;; the sequence a no-op.
2707 ;;;
2708 ;;; 20. File looks like it's locked by some other user, but it's actually
2709 ;;; locked by the calling user and changed.
2710 ;;;
2711 ;;; As case 19.
2712 ;;;
2713 ;;; PROBLEM CASES:
2714 ;;;
2715 ;;; In order of decreasing severity:
2716 ;;;
2717 ;;; Cases 11 and 15 are the only ones that potentially lose work.
2718 ;;; They would require a self-race for this to happen.
2719 ;;;
2720 ;;; Case 13 in RCS loses information about previous deltas, retaining
2721 ;;; only the information in the current workfile. This can only happen
2722 ;;; if the master file gets nuked in window P.
2723 ;;;
2724 ;;; Case 3 in RCS and case 15 under SCCS insert a redundant delta with
2725 ;;; no change comment in the master. This would require a self-race in
2726 ;;; window P or R respectively.
2727 ;;;
2728 ;;; Cases 2, 10, 19 and 20 do extra work, but make no changes.
2729 ;;;
2730 ;;; Unfortunately, it appears to me that no recovery is possible in these
2731 ;;; cases. They don't yield error messages, so there's no way to tell that
2732 ;;; a race condition has occurred.
2733 ;;;
2734 ;;; All other cases don't change either the workfile or the master, and
2735 ;;; trigger command errors which the user will see.
2736 ;;;
2737 ;;; Thus, there is no explicit recovery code.
2738
2739 ;;; vc.el ends here