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