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