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