Set no-byte-compile local variable t to work around a byte-compiler bug.
[emacs.git] / lisp / vc.el
blob0f7a3557544547754ec8ee4e8d13e5a77a4fab90
1 ;;; vc.el --- drive a version-control system from within Emacs
3 ;; Copyright (C) 1992 Free Software Foundation, Inc.
5 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
6 ;; Version: 5.4
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24 ;;; Commentary:
26 ;; This mode is fully documented in the Emacs user's manual.
28 ;; This was designed and implemented by Eric Raymond <esr@snark.thyrsus.com>.
29 ;; Paul Eggert <eggert@twinsun.com>, Sebastian Kremer <sk@thp.uni-koeln.de>,
30 ;; and Richard Stallman contributed valuable criticism, support, and testing.
32 ;; Supported version-control systems presently include SCCS and RCS;
33 ;; your RCS version should be 5.6.2 or later for proper operation of
34 ;; the lock-breaking code.
36 ;; The RCS code assumes strict locking. You can support the RCS -x option
37 ;; by adding pairs to the vc-master-templates list.
39 ;; Proper function of the SCCS diff commands requires the shellscript vcdiff
40 ;; to be installed somewhere on Emacs's path for executables.
42 ;; If your site uses the ChangeLog convention supported by Emacs, the
43 ;; function vc-comment-to-change-log should prove a useful checkin hook.
45 ;; This code depends on call-process passing back the subprocess exit
46 ;; status. Thus, you need Emacs 18.58 or later to run it. For the
47 ;; vc-directory command to work properly, you need 19
49 ;; The vc code maintains some internal state in order to reduce expensive
50 ;; version-control operations to a minimum. Some names are only computed
51 ;; once. If you perform version control operations with RCS/SCCS/CVS while
52 ;; vc's back is turned, or move/rename master files while vc is running,
53 ;; vc may get seriously confused. Don't do these things!
55 ;; Developer's notes on some concurrency issues are included at the end of
56 ;; the file.
58 ;;; Code:
60 (require 'vc-hooks)
61 (require 'ring)
62 (require 'dired)
63 (require 'compile)
64 (require 'sendmail)
66 (if (not (assoc 'vc-parent-buffer minor-mode-alist))
67 (setq minor-mode-alist
68 (cons '(vc-parent-buffer vc-parent-buffer-name)
69 minor-mode-alist)))
71 ;; General customization
73 (defvar vc-default-back-end nil
74 "*Back-end actually used by this interface; may be SCCS or RCS.
75 The value is only computed when needed to avoid an expensive search.")
76 (defvar vc-diff-options '("-a" "-c2")
77 "*The command/flags list to be used in constructing diff commands.")
78 (defvar vc-suppress-confirm nil
79 "*If non-nil, reat user as expert; suppress yes-no prompts on some things.")
80 (defvar vc-keep-workfiles t
81 "*If non-nil, don't delete working files after registering changes.")
82 (defvar vc-initial-comment nil
83 "*Prompt for initial comment when a file is registered.")
84 (defvar vc-command-messages nil
85 "*Display run messages from back-end commands.")
86 (defvar vc-mistrust-permissions 'file-symlink-p
87 "*Don't assume that permissions and ownership track version-control status.")
88 (defvar vc-checkin-switches nil
89 "*Extra switches passed to the checkin program by \\[vc-checkin].")
91 (defconst vc-maximum-comment-ring-size 32
92 "Maximum number of saved comments in the comment ring.")
94 ;;;###autoload
95 (defvar vc-checkin-hook nil
96 "*List of functions called after a vc-checkin is done. See `run-hooks'.")
98 ;; Header-insertion hair
100 (defvar vc-header-alist
101 '((SCCS "\%W\%") (RCS "\$Id\$"))
102 "*Header keywords to be inserted when vc-insert-header is executed.")
103 (defconst vc-static-header-alist
104 '(("\\.c$" .
105 "\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n#endif /* lint */\n"))
106 "*Associate static header string templates with file types. A \%s in the
107 template is replaced with the first string associated with the file's
108 verson-control type in vc-header-alist.")
110 (defvar vc-comment-alist
111 '((nroff-mode ".\\\"" ""))
112 "*Special comment delimiters to be used in generating vc headers only.
113 Add an entry in this list if you need to override the normal comment-start
114 and comment-end variables. This will only be necessary if the mode language
115 is sensitive to blank lines.")
117 ;; Variables the user doesn't need to know about.
118 (defvar vc-log-entry-mode nil)
119 (defvar vc-log-operation nil)
120 (defvar vc-log-after-operation-hook nil)
121 (defvar vc-checkout-writeable-buffer-hook 'vc-checkout-writeable-buffer)
122 (defvar vc-parent-buffer nil)
123 (defvar vc-parent-buffer-name nil)
125 (defvar vc-log-file)
126 (defvar vc-log-version)
128 (defconst vc-name-assoc-file "VC-names")
130 (defvar vc-dired-mode nil)
131 (make-variable-buffer-local 'vc-dired-mode)
133 (defvar vc-comment-ring nil)
134 (defvar vc-comment-ring-index nil)
135 (defvar vc-last-comment-match nil)
137 ;; File property caching
139 (defun vc-file-clearprops (file)
140 ;; clear all properties of a given file
141 (setplist (intern file vc-file-prop-obarray) nil))
143 (defun vc-clear-context ()
144 "Clear all cached file properties and the comment ring."
145 (interactive)
146 (fillarray vc-file-prop-obarray nil)
147 ;; Note: there is potential for minor lossage here if there is an open
148 ;; log buffer with a nonzero local value of vc-comment-ring-index.
149 (setq vc-comment-ring nil))
151 ;; Random helper functions
153 (defun vc-name (file)
154 "Return the master name of a file, nil if it is not registered"
155 (or (vc-file-getprop file 'vc-name)
156 (vc-file-setprop file 'vc-name
157 (let ((name-and-type (vc-registered file)))
158 (and name-and-type (car name-and-type))))))
160 (defvar vc-binary-assoc nil)
162 (defun vc-find-binary (name)
163 "Look for a command anywhere on the subprocess-command search path."
164 (or (cdr (assoc name vc-binary-assoc))
165 (let ((full nil))
166 (catch 'found
167 (mapcar
168 (function (lambda (s)
169 (if (and s (file-exists-p (setq full (concat s "/" name))))
170 (throw 'found nil))))
171 exec-path))
172 (if full
173 (setq vc-binary-assoc (cons (cons name full) vc-binary-assoc)))
174 full)))
176 (defun vc-do-command (okstatus command file &rest flags)
177 "Execute a version-control command, notifying user and checking for errors.
178 The command is successful if its exit status does not exceed OKSTATUS.
179 Output from COMMAND goes to buffer *vc*. The last argument of the command is
180 the master name of FILE; this is appended to an optional list of FLAGS."
181 (setq file (expand-file-name file))
182 (if vc-command-messages
183 (message "Running %s on %s..." command file))
184 (let ((obuf (current-buffer)) (camefrom (current-buffer))
185 (squeezed nil)
186 (vc-file (and file (vc-name file)))
187 status)
188 (set-buffer (get-buffer-create "*vc*"))
189 (set (make-local-variable 'vc-parent-buffer) camefrom)
190 (set (make-local-variable 'vc-parent-buffer-name)
191 (concat " from " (buffer-name camefrom)))
193 (erase-buffer)
195 ;; This is so that command arguments typed in the *vc* buffer will
196 ;; have reasonable defaults.
197 (setq default-directory (file-name-directory file))
199 (mapcar
200 (function (lambda (s) (and s (setq squeezed (append squeezed (list s))))))
201 flags)
202 (if vc-file
203 (setq squeezed (append squeezed (list vc-file))))
204 (let ((default-directory (file-name-directory (or file "./"))))
205 (setq status (apply 'call-process command nil t nil squeezed)))
206 (goto-char (point-max))
207 (previous-line 1)
208 (if (or (not (integerp status)) (< okstatus status))
209 (progn
210 (previous-line 1)
211 (print (cons command squeezed))
212 (next-line 1)
213 (pop-to-buffer "*vc*")
214 (vc-shrink-to-fit)
215 (goto-char (point-min))
216 (error "Running %s...FAILED (%s)" command
217 (if (integerp status)
218 (format "status %d" status)
219 status))
221 (if vc-command-messages
222 (message "Running %s...OK" command))
224 (set-buffer obuf)
225 status)
228 ;;; Save a bit of the text around POSN in the current buffer, to help
229 ;;; us find the corresponding position again later. This works even
230 ;;; if all markers are destroyed or corrupted.
231 (defun vc-position-context (posn)
232 (list posn
233 (buffer-size)
234 (buffer-substring posn
235 (min (point-max) (+ posn 100)))))
237 ;;; Return the position of CONTEXT in the current buffer, or nil if we
238 ;;; couldn't find it.
239 (defun vc-find-position-by-context (context)
240 (let ((context-string (nth 2 context)))
241 (if (equal "" context-string)
242 (point-max)
243 (save-excursion
244 (let ((diff (- (nth 1 context) (buffer-size))))
245 (if (< diff 0) (setq diff (- diff)))
246 (goto-char (nth 0 context))
247 (if (or (search-forward context-string nil t)
248 ;; Can't use search-backward since the match may continue
249 ;; after point.
250 (progn (goto-char (- (point) diff (length context-string)))
251 ;; goto-char doesn't signal an error at
252 ;; beginning of buffer like backward-char would
253 (search-forward context-string nil t)))
254 ;; to beginning of OSTRING
255 (- (point) (length context-string))))))))
257 (defun vc-revert-buffer1 (&optional arg no-confirm)
258 ;; Most of this was shamelessly lifted from Sebastian Kremer's rcs.el mode.
259 ;; Revert buffer, try to keep point and mark where user expects them in spite
260 ;; of changes because of expanded version-control key words.
261 ;; This is quite important since otherwise typeahead won't work as expected.
262 (interactive "P")
263 (widen)
264 (let ((point-context (vc-position-context (point)))
265 ;; Use mark-marker to avoid confusion in transient-mark-mode.
266 (mark-context (if (eq (marker-buffer (mark-marker)) (current-buffer))
267 (vc-position-context (mark-marker))))
268 ;; Make the right thing happen in transient-mark-mode.
269 (mark-active nil)
270 ;; We may want to reparse the compilation buffer after revert
271 (reparse (and (boundp 'compilation-error-list) ;compile loaded
272 (let ((curbuf (current-buffer)))
273 ;; Construct a list; each elt is nil or a buffer
274 ;; iff that buffer is a compilation output buffer
275 ;; that contains markers into the current buffer.
276 (save-excursion
277 (mapcar (lambda (buffer)
278 (set-buffer buffer)
279 (let ((errors (or
280 compilation-old-error-list
281 compilation-error-list))
282 (buffer-error-marked-p nil))
283 (while (and errors
284 (not buffer-error-marked-p))
285 (if (eq buffer
286 (marker-buffer
287 (car (cdr (car errors)))))
288 (setq buffer-error-marked-p t))
289 (setq errors (cdr errors)))
290 (if buffer-error-marked-p buffer)))
291 (buffer-list)))))))
293 ;; the actual revisit
294 (revert-buffer arg no-confirm)
296 ;; Reparse affected compilation buffers.
297 (while reparse
298 (if (car reparse)
299 (save-excursion
300 (set-buffer (car reparse))
301 (let ((compilation-last-buffer (current-buffer)) ;select buffer
302 ;; Record the position in the compilation buffer of
303 ;; the last error next-error went to.
304 (error-pos (marker-position
305 (car (car-safe compilation-error-list)))))
306 ;; Reparse the error messages as far as they were parsed before.
307 (compile-reinitialize-errors '(4) compilation-parsing-end)
308 ;; Move the pointer up to find the error we were at before
309 ;; reparsing. Now next-error should properly go to the next one.
310 (while (and compilation-error-list
311 (/= error-pos (car (car compilation-error-list))))
312 (setq compilation-error-list (cdr compilation-error-list))))))
313 (setq reparse (cdr reparse)))
315 ;; Restore point and mark
316 (let ((new-point (vc-find-position-by-context point-context)))
317 (if new-point (goto-char new-point)))
318 (if mark-context
319 (let ((new-mark (vc-find-position-by-context mark-context)))
320 (if new-mark (set-mark new-mark))))))
323 (defun vc-buffer-sync ()
324 ;; Make sure the current buffer and its working file are in sync
325 (if (and (buffer-modified-p)
327 vc-suppress-confirm
328 (y-or-n-p (format "%s has been modified. Write it out? "
329 (buffer-name)))))
330 (save-buffer)))
332 (defun vc-workfile-unchanged-p (file)
333 ;; Has the given workfile changed since last checkout?
334 (let ((checkout-time (vc-file-getprop file 'vc-checkout-time))
335 (lastmod (nth 5 (file-attributes file))))
336 (if checkout-time
337 (equal lastmod checkout-time)
338 (if (zerop (vc-backend-diff file nil))
339 (progn
340 (vc-file-setprop file 'vc-checkout-time lastmod)
342 (progn
343 (vc-file-setprop file 'vc-checkout-time '(0 . 0))
348 (defun vc-next-action-on-file (file verbose &optional comment)
349 ;;; If comment is specified, it will be used as an admin or checkin comment.
350 (let (owner version (vc-file (vc-name file)))
351 (cond
353 ;; if there is no master file corresponding, create one
354 ((not vc-file)
355 (vc-register verbose comment)
356 (if vc-initial-comment
357 (setq vc-log-after-operation-hook
358 'vc-checkout-writeable-buffer-hook)
359 (vc-checkout-writeable-buffer file)))
361 ;; if there is no lock on the file, assert one and get it
362 ((not (setq owner (vc-locking-user file)))
363 (vc-checkout-writeable-buffer file))
365 ;; a checked-out version exists, but the user may not own the lock
366 ((not (string-equal owner (user-login-name)))
367 (if comment
368 (error "Sorry, you can't steal the lock on %s this way." file))
369 (vc-steal-lock
370 file
371 (and verbose (read-string "Version to steal: "))
372 owner))
374 ;; OK, user owns the lock on the file
376 (find-file file)
378 ;; give luser a chance to save before checking in.
379 (vc-buffer-sync)
381 ;; Revert if file is unchanged and buffer is too.
382 ;; If buffer is modified, that means the user just said no
383 ;; to saving it; in that case, don't revert,
384 ;; because the user might intend to save
385 ;; after finishing the log entry.
386 (if (and (vc-workfile-unchanged-p file)
387 (not (buffer-modified-p)))
388 (progn
389 (vc-backend-revert file)
390 ;; DO NOT revert the file without asking the user!
391 (vc-resynch-window file t nil))
393 ;; user may want to set nonstandard parameters
394 (if verbose
395 (setq version (read-string "New version level: ")))
397 ;; OK, let's do the checkin
398 (vc-checkin file version comment)
399 )))))
401 (defun vc-next-action-dired (file rev comment)
402 ;; We've accepted a log comment, now do a vc-next-action using it on all
403 ;; marked files.
404 (set-buffer vc-parent-buffer)
405 (dired-map-over-marks
406 (save-window-excursion
407 (let ((file (dired-get-filename)))
408 (message "Processing %s..." file)
409 (vc-next-action-on-file file nil comment)
410 (message "Processing %s...done" file)))
411 nil t)
414 ;; Here's the major entry point.
416 ;;;###autoload
417 (defun vc-next-action (verbose)
418 "Do the next logical checkin or checkout operation on the current file.
419 If the file is not already registered, this registers it for version
420 control and then retrieves a writeable, locked copy for editing.
421 If the file is registered and not locked by anyone, this checks out
422 a writeable and locked file ready for editing.
423 If the file is checked out and locked by the calling user, this
424 first checks to see if the file has changed since checkout. If not,
425 it performs a revert.
426 If the file has been changed, this pops up a buffer for entry
427 of a log message; when the message has been entered, it checks in the
428 resulting changes along with the log message as change commentary. If
429 the variable vc-keep-workfiles is non-nil (which is its default), a
430 read-only copy of the changed file is left in place afterwards.
431 If the file is registered and locked by someone else, you are given
432 the option to steal the lock.
433 If you call this from within a VC dired buffer with no files marked,
434 it will operate on the file in the current line.
435 If you call this from within a VC dired buffer, and one or more
436 files are marked, it will accept a log message and then operate on
437 each one. The log message will be used as a comment for any register
438 or checkin operations, but ignored when doing checkouts. Attempted
439 lock steals will raise an error."
440 (interactive "P")
441 (catch 'nogo
442 (if vc-dired-mode
443 (let ((files (dired-get-marked-files)))
444 (if (= (length files) 1)
445 (find-file-other-window (dired-get-filename))
446 (vc-start-entry nil nil nil
447 "Enter a change comment for the marked files."
448 'vc-next-action-dired)
449 (throw 'nogo))))
450 (while vc-parent-buffer
451 (pop-to-buffer vc-parent-buffer))
452 (if buffer-file-name
453 (vc-next-action-on-file buffer-file-name verbose)
454 (error "There is no file associated with buffer %s" (buffer-name)))))
456 ;;; These functions help the vc-next-action entry point
458 (defun vc-checkout-writeable-buffer (&optional file)
459 "Retrieve a writeable copy of the latest version of the current buffer's file."
460 (vc-checkout (or file (buffer-file-name)) t)
463 ;;;###autoload
464 (defun vc-register (&optional override comment)
465 "Register the current file into your version-control system."
466 (interactive "P")
467 (if (vc-name buffer-file-name)
468 (error "This file is already registered."))
469 ;; Watch out for new buffers of size 0: the corresponding file
470 ;; does not exist yet, even though buffer-modified-p is nil.
471 (if (and (not (buffer-modified-p))
472 (zerop (buffer-size))
473 (not (file-exists-p buffer-file-name)))
474 (set-buffer-modified-p t))
475 (vc-buffer-sync)
476 (vc-admin
477 buffer-file-name
478 (and override
479 (read-string
480 (format "Initial version level for %s: " buffer-file-name))))
483 (defun vc-resynch-window (file &optional keep noquery)
484 ;; If the given file is in the current buffer,
485 ;; either revert on it so we see expanded keyworks,
486 ;; or unvisit it (depending on vc-keep-workfiles)
487 ;; NOQUERY if non-nil inhibits confirmation for reverting.
488 ;; NOQUERY should be t *only* if it is known the only difference
489 ;; between the buffer and the file is due to RCS rather than user editing!
490 (and (string= buffer-file-name file)
491 (if keep
492 (progn
493 (vc-revert-buffer1 t noquery)
494 (vc-mode-line buffer-file-name))
495 (progn
496 (delete-window)
497 (kill-buffer (current-buffer))))))
499 (defun vc-start-entry (file rev comment msg action)
500 ;; Accept a comment for an operation on FILE revision REV. If COMMENT
501 ;; is nil, pop up a VC-log buffer, emit MSG, and set the
502 ;; action on close to ACTION; otherwise, do action immediately.
503 ;; Remember the file's buffer in parent-buffer (current one if no file).
504 (let ((parent (if file (find-file-noselect file) (current-buffer))))
505 (if comment
506 (set-buffer (get-buffer-create "*VC-log*"))
507 (pop-to-buffer (get-buffer-create "*VC-log*")))
508 (set (make-local-variable 'vc-parent-buffer) parent)
509 (set (make-local-variable 'vc-parent-buffer-name)
510 (concat " from " (buffer-name vc-parent-buffer)))
511 (vc-mode-line (if file (file-name-nondirectory file) " (no file)"))
512 (vc-log-mode)
513 (setq vc-log-operation action)
514 (setq vc-log-file file)
515 (setq vc-log-version rev)
516 (if comment
517 (progn
518 (erase-buffer)
519 (if (eq comment t)
520 (vc-finish-logentry t)
521 (insert comment)
522 (vc-finish-logentry nil)))
523 (message "%s Type C-c C-c when done." msg))))
525 (defun vc-admin (file rev &optional comment)
526 "Check a file into your version-control system.
527 FILE is the unmodified name of the file. REV should be the base version
528 level to check it in under. COMMENT, if specified, is the checkin comment."
529 (vc-start-entry file rev
530 (or comment (not vc-initial-comment))
531 "Enter initial comment." 'vc-backend-admin))
533 (defun vc-checkout (file &optional writeable)
534 "Retrieve a copy of the latest version of the given file."
535 ;; If ftp is on this system and the name matches the ange-ftp format
536 ;; for a remote file, the user is trying something that won't work.
537 (if (and (string-match "^/[^/:]+:" file) (vc-find-binary "ftp"))
538 (error "Sorry, you can't check out files over FTP"))
539 (vc-backend-checkout file writeable)
540 (if (string-equal file buffer-file-name)
541 (vc-resynch-window file t t))
544 (defun vc-steal-lock (file rev &optional owner)
545 "Steal the lock on the current workfile."
546 (interactive)
547 (if (not owner)
548 (setq owner (vc-locking-user file)))
549 (if (not (y-or-n-p (format "Take the lock on %s:%s from %s?" file rev owner)))
550 (error "Steal cancelled."))
551 (pop-to-buffer (get-buffer-create "*VC-mail*"))
552 (setq default-directory (expand-file-name "~/"))
553 (auto-save-mode auto-save-default)
554 (mail-mode)
555 (erase-buffer)
556 (mail-setup owner (format "%s:%s" file rev) nil nil nil
557 (list (list 'vc-finish-steal file rev)))
558 (goto-char (point-max))
559 (insert
560 (format "I stole the lock on %s:%s, " file rev)
561 (current-time-string)
562 ".\n")
563 (message "Please explain why you stole the lock. Type C-c C-c when done."))
565 ;; This is called when the notification has been sent.
566 (defun vc-finish-steal (file version)
567 (vc-backend-steal file version)
568 (vc-resynch-window file t t))
570 (defun vc-checkin (file &optional rev comment)
571 "Check in the file specified by FILE.
572 The optional argument REV may be a string specifying the new version level
573 \(if nil increment the current level). The file is either retained with write
574 permissions zeroed, or deleted (according to the value of vc-keep-workfiles).
575 COMMENT is a comment string; if omitted, a buffer is
576 popped up to accept a comment."
577 (setq vc-log-after-operation-hook 'vc-checkin-hook)
578 (vc-start-entry file rev comment "Enter a change comment." 'vc-backend-checkin))
580 ;;; Here is a checkin hook that may prove useful to sites using the
581 ;;; ChangeLog facility supported by Emacs.
582 (defun vc-comment-to-change-log (&optional file)
583 "Update change log from VC change comments entered for the current file.
584 Optional FILE specifies the change log file name; see `find-change-log'.
585 See `vc-update-change-log'."
586 (interactive)
587 (let ((log (find-change-log file)))
588 (if log
589 (let ((default-directory (or (file-name-directory log)
590 default-directory)))
591 (vc-update-change-log
592 (file-relative-name buffer-file-name))))))
594 (defun vc-finish-logentry (&optional nocomment)
595 "Complete the operation implied by the current log entry."
596 (interactive)
597 ;; Check and record the comment, if any.
598 (if (not nocomment)
599 (progn
600 (goto-char (point-max))
601 (if (not (bolp))
602 (newline))
603 ;; Comment too long?
604 (vc-backend-logentry-check vc-log-file)
605 ;; Record the comment in the comment ring
606 (if (null vc-comment-ring)
607 (setq vc-comment-ring (make-ring vc-maximum-comment-ring-size)))
608 (ring-insert vc-comment-ring (buffer-string))
610 ;; OK, do it to it
611 (if vc-log-operation
612 (save-excursion
613 (funcall vc-log-operation
614 vc-log-file
615 vc-log-version
616 (buffer-string)))
617 (error "No log operation is pending."))
618 ;; Return to "parent" buffer of this checkin and remove checkin window
619 (pop-to-buffer vc-parent-buffer)
620 (vc-error-occurred
621 (delete-window (get-buffer-window "*VC-log*")))
622 (kill-buffer "*VC-log*")
623 ;; Now make sure we see the expanded headers
624 (if buffer-file-name
625 (vc-resynch-window buffer-file-name vc-keep-workfiles t))
626 (run-hooks vc-log-after-operation-hook))
628 ;; Code for access to the comment ring
630 (defun vc-previous-comment (arg)
631 "Cycle backwards through comment history."
632 (interactive "*p")
633 (let ((len (ring-length vc-comment-ring)))
634 (cond ((<= len 0)
635 (message "Empty comment ring")
636 (ding))
638 (erase-buffer)
639 ;; Initialize the index on the first use of this command
640 ;; so that the first M-p gets index 0, and the first M-n gets
641 ;; index -1.
642 (if (null vc-comment-ring-index)
643 (setq vc-comment-ring-index
644 (if (> arg 0) -1
645 (if (< arg 0) 1 0))))
646 (setq vc-comment-ring-index
647 (ring-mod (+ vc-comment-ring-index arg) len))
648 (message "%d" (1+ vc-comment-ring-index))
649 (insert (ring-ref vc-comment-ring vc-comment-ring-index))))))
651 (defun vc-next-comment (arg)
652 "Cycle forwards through comment history."
653 (interactive "*p")
654 (vc-previous-comment (- arg)))
656 (defun vc-comment-search-reverse (str)
657 "Searches backwards through comment history for substring match."
658 (interactive "sComment substring: ")
659 (if (string= str "")
660 (setq str vc-last-comment-match)
661 (setq vc-last-comment-match str))
662 (if (null vc-comment-ring-index)
663 (setq vc-comment-ring-index -1))
664 (let ((str (regexp-quote str))
665 (len (ring-length vc-comment-ring))
666 (n (1+ vc-comment-ring-index)))
667 (while (and (< n len) (not (string-match str (ring-ref vc-comment-ring n))))
668 (setq n (+ n 1)))
669 (cond ((< n len)
670 (vc-previous-comment (- n vc-comment-ring-index)))
671 (t (error "Not found")))))
673 (defun vc-comment-search-forward (str)
674 "Searches forwards through comment history for substring match."
675 (interactive "sComment substring: ")
676 (if (string= str "")
677 (setq str vc-last-comment-match)
678 (setq vc-last-comment-match str))
679 (if (null vc-comment-ring-index)
680 (setq vc-comment-ring-index 0))
681 (let ((str (regexp-quote str))
682 (len (ring-length vc-comment-ring))
683 (n vc-comment-ring-index))
684 (while (and (>= n 0) (not (string-match str (ring-ref vc-comment-ring n))))
685 (setq n (- n 1)))
686 (cond ((>= n 0)
687 (vc-next-comment (- n vc-comment-ring-index)))
688 (t (error "Not found")))))
690 ;; Additional entry points for examining version histories
692 ;;;###autoload
693 (defun vc-diff (historic)
694 "Display diffs between file versions."
695 (interactive "P")
696 (if vc-dired-mode
697 (set-buffer (find-file-noselect (dired-get-filename))))
698 (while vc-parent-buffer
699 (pop-to-buffer vc-parent-buffer))
700 (if historic
701 (call-interactively 'vc-version-diff)
702 (if (or (null buffer-file-name) (null (vc-name buffer-file-name)))
703 (error "There is no version-control master associated with this buffer."))
704 (let ((file buffer-file-name)
705 unchanged)
706 (vc-buffer-sync)
707 (setq unchanged (vc-workfile-unchanged-p buffer-file-name))
708 (if unchanged
709 (message "No changes to %s since latest version." file)
710 (vc-backend-diff file nil)
711 ;; Ideally, we'd like at this point to parse the diff so that
712 ;; the buffer effectively goes into compilation mode and we
713 ;; can visit the old and new change locations via next-error.
714 ;; Unfortunately, this is just too painful to do. The basic
715 ;; problem is that the `old' file doesn't exist to be
716 ;; visited. This plays hell with numerous assumptions in
717 ;; the diff.el and compile.el machinery.
718 (pop-to-buffer "*vc*")
719 (vc-shrink-to-fit)
720 (goto-char (point-min))
722 (not unchanged)
727 (defun vc-version-diff (file rel1 rel2)
728 "For FILE, report diffs between two stored versions REL1 and REL2 of it.
729 If FILE is a directory, generate diffs between versions for all registered
730 files in or below it."
731 (interactive "FFile or directory to diff: \nsOlder version: \nsNewer version: ")
732 (if (string-equal rel1 "") (setq rel1 nil))
733 (if (string-equal rel2 "") (setq rel2 nil))
734 (if (file-directory-p file)
735 (let ((camefrom (current-buffer)))
736 (set-buffer (get-buffer-create "*vc-status*"))
737 (set (make-local-variable 'vc-parent-buffer) camefrom)
738 (set (make-local-variable 'vc-parent-buffer-name)
739 (concat " from " (buffer-name camefrom)))
740 (erase-buffer)
741 (insert "Diffs between "
742 (or rel1 "last version checked in")
743 " and "
744 (or rel2 "current workfile(s)")
745 ":\n\n")
746 (set-buffer (get-buffer-create "*vc*"))
747 (cd file)
748 (vc-file-tree-walk
749 (function (lambda (f)
750 (message "Looking at %s" f)
751 (and
752 (not (file-directory-p f))
753 (vc-registered f)
754 (vc-backend-diff f rel1 rel2)
755 (append-to-buffer "*vc-status*" (point-min) (point-max)))
757 (pop-to-buffer "*vc-status*")
758 (insert "\nEnd of diffs.\n")
759 (goto-char (point-min))
760 (set-buffer-modified-p nil)
762 (progn
763 (vc-backend-diff file rel1 rel2)
764 (goto-char (point-min))
765 (if (equal (point-min) (point-max))
766 (message "No changes to %s between %s and %s." file rel1 rel2)
767 (pop-to-buffer "*vc*")
768 (goto-char (point-min))
774 ;; Header-insertion code
776 ;;;###autoload
777 (defun vc-insert-headers ()
778 "Insert headers in a file for use with your version-control system.
779 Headers desired are inserted at the start of the buffer, and are pulled from
780 the variable vc-header-alist"
781 (interactive)
782 (if vc-dired-mode
783 (find-file-other-window (dired-get-filename)))
784 (while vc-parent-buffer
785 (pop-to-buffer vc-parent-buffer))
786 (save-excursion
787 (save-restriction
788 (widen)
789 (if (or (not (vc-check-headers))
790 (y-or-n-p "Version headers already exist. Insert another set?"))
791 (progn
792 (let* ((delims (cdr (assq major-mode vc-comment-alist)))
793 (comment-start-vc (or (car delims) comment-start "#"))
794 (comment-end-vc (or (car (cdr delims)) comment-end ""))
795 (hdstrings (cdr (assoc (vc-backend-deduce (buffer-file-name)) vc-header-alist))))
796 (mapcar (function (lambda (s)
797 (insert comment-start-vc "\t" s "\t"
798 comment-end-vc "\n")))
799 hdstrings)
800 (if vc-static-header-alist
801 (mapcar (function (lambda (f)
802 (if (string-match (car f) buffer-file-name)
803 (insert (format (cdr f) (car hdstrings))))))
804 vc-static-header-alist))
806 )))))
808 ;; The VC directory submode. Coopt Dired for this.
809 ;; All VC commands get mapped into logical equivalents.
811 (or (assq 'vc-dired-mode minor-mode-map-alist)
812 (setq minor-mode-map-alist
813 (cons 'vc-dired-mode minor-mode-map-alist)))
815 (defun vc-dired-mode ()
816 "The augmented Dired minor mode used in VC directory buffers.
817 All Dired commands operate normally. Users currently locking listed files
818 are listed at the left-hand side of the buffer, following the Dired mark area.
819 Keystrokes bound to VC commands will execute as though they had been called
820 on a buffer attached to the file named in the current Dired buffer line."
821 (setq vc-dired-mode t)
822 (setq vc-mode " under VC"))
824 (defun vc-dired-reformat-line (x)
825 ;; Hack a directory-listing line, plugging in locking-user info in
826 ;; place of the user and group info. Should have the beneficial
827 ;; side-effect of shortening the listing line. Each call starts with
828 ;; point immediately following the dired mark area on the line to be
829 ;; hacked.
831 ;; Simplest possible one:
832 ;; (insert (concat x "\t")))
834 ;; This code, like dired, assumes UNIX -l format.
835 (forward-word 1) ;; skip over any extra field due to -ibs options
836 (if x (setq x (concat "(" x ")")))
837 (if (re-search-forward "\\([0-9]+ \\).................\\( .*\\)" nil 0)
838 (let ((rep (substring (concat x " ") 0 9)))
839 (replace-match (concat "\\1" rep "\\2") t)))
842 ;;;###autoload
843 (defun vc-directory (verbose)
844 "Show version-control status of all files under the current directory."
845 (interactive "P")
846 (let (nonempty
847 (dl (length default-directory))
848 (filelist nil) (userlist nil)
849 dired-buf
850 dired-buf-mod-count)
851 (vc-file-tree-walk
852 (function (lambda (f)
853 (if (vc-registered f)
854 (let ((user (vc-locking-user f)))
855 (and (or verbose user)
856 (setq filelist (cons (substring f dl) filelist))
857 (setq userlist (cons user userlist))))))))
858 (save-excursion
859 ;; This uses a semi-documented featre of dired; giving a switch
860 ;; argument forces the buffer to refresh each time.
861 (dired
862 (cons default-directory (nreverse filelist))
863 dired-listing-switches)
864 (setq dired-buf (current-buffer))
865 (setq nonempty (not (zerop (buffer-size)))))
866 (if nonempty
867 (progn
868 (pop-to-buffer dired-buf)
869 (vc-dired-mode)
870 (goto-char (point-min))
871 (setq buffer-read-only nil)
872 (forward-line 1) ;; Skip header line
873 (mapcar
874 (lambda (x)
875 (forward-char 2) ;; skip dired's mark area
876 (vc-dired-reformat-line x)
877 (forward-line 1)) ;; go to next line
878 (nreverse userlist))
879 (setq buffer-read-only t)
880 (goto-char (point-min))
882 (message "No files are currently %s under %s"
883 (if verbose "registered" "locked") default-directory))
886 ;; Named-configuration support for SCCS
888 (defun vc-add-triple (name file rev)
889 (save-excursion
890 (find-file (concat (vc-backend-subdirectory-name file) "/" vc-name-assoc-file))
891 (goto-char (point-max))
892 (insert name "\t:\t" file "\t" rev "\n")
893 (basic-save-buffer)
894 (kill-buffer (current-buffer))
897 (defun vc-record-rename (file newname)
898 (save-excursion
899 (find-file (concat (vc-backend-subdirectory-name file) "/" vc-name-assoc-file))
900 (goto-char (point-min))
901 (replace-regexp (concat ":" (regexp-quote file) "$") (concat ":" newname))
902 (basic-save-buffer)
903 (kill-buffer (current-buffer))
906 (defun vc-lookup-triple (file name)
907 ;; Return the numeric version corresponding to a named snapshot of file
908 ;; If name is nil or a version number string it's just passed through
909 (cond ((null name) "")
910 ((let ((firstchar (aref name 0)))
911 (and (>= firstchar ?0) (<= firstchar ?9)))
912 name)
914 (car (vc-master-info
915 (concat (vc-backend-subdirectory-name file) "/" vc-name-assoc-file)
916 (list (concat name "\t:\t" file "\t\\(.+\\)"))))
919 ;; Named-configuration entry points
921 (defun vc-quiescent-p ()
922 ;; Is the current directory ready to be snapshot?
923 (catch 'quiet
924 (vc-file-tree-walk
925 (function (lambda (f)
926 (if (and (vc-registered f) (vc-locking-user f))
927 (throw 'quiet nil)))))
930 ;;;###autoload
931 (defun vc-create-snapshot (name)
932 "Make a snapshot called NAME.
933 The snapshot is made from all registered files at or below the current
934 directory. For each file, the version level of its latest
935 version becomes part of the named configuration."
936 (interactive "sNew snapshot name: ")
937 (if (not (vc-quiescent-p))
938 (error "Can't make a snapshot, locked files are in the way.")
939 (vc-file-tree-walk
940 (function (lambda (f) (and
941 (vc-name f)
942 (vc-backend-assign-name f name)))))
945 ;;;###autoload
946 (defun vc-retrieve-snapshot (name)
947 "Retrieve the snapshot called NAME.
948 This function fails if any files are locked at or below the current directory
949 Otherwise, all registered files are checked out (unlocked) at their version
950 levels in the snapshot."
951 (interactive "sSnapshot name to retrieve: ")
952 (if (not (vc-quiescent-p))
953 (error "Can't retrieve a snapshot, locked files are in the way.")
954 (vc-file-tree-walk
955 (function (lambda (f) (and
956 (vc-name f)
957 (vc-error-occurred (vc-backend-checkout f nil name))))))
960 ;; Miscellaneous other entry points
962 ;;;###autoload
963 (defun vc-print-log ()
964 "List the change log of the current buffer in a window."
965 (interactive)
966 (if vc-dired-mode
967 (set-buffer (find-file-noselect (dired-get-filename))))
968 (while vc-parent-buffer
969 (pop-to-buffer vc-parent-buffer))
970 (if (and buffer-file-name (vc-name buffer-file-name))
971 (progn
972 (vc-backend-print-log buffer-file-name)
973 (pop-to-buffer (get-buffer-create "*vc*"))
974 (vc-shrink-to-fit)
975 (goto-char (point-min))
977 (error "There is no version-control master associated with this buffer")
981 ;;;###autoload
982 (defun vc-revert-buffer ()
983 "Revert the current buffer's file back to the latest checked-in version.
984 This asks for confirmation if the buffer contents are not identical
985 to that version."
986 (interactive)
987 (if vc-dired-mode
988 (find-file-other-window (dired-get-filename)))
989 (while vc-parent-buffer
990 (pop-to-buffer vc-parent-buffer))
991 (let ((file buffer-file-name)
992 (obuf (current-buffer)) (changed (vc-diff nil)))
993 (if (and changed (or vc-suppress-confirm
994 (not (yes-or-no-p "Discard changes? "))))
995 (progn
996 (delete-window)
997 (error "Revert cancelled."))
998 (set-buffer obuf))
999 (if changed
1000 (delete-window))
1001 (vc-backend-revert file)
1002 (vc-resynch-window file t t)
1006 ;;;###autoload
1007 (defun vc-cancel-version (norevert)
1008 "Undo your latest checkin."
1009 (interactive "P")
1010 (if vc-dired-mode
1011 (find-file-other-window (dired-get-filename)))
1012 (while vc-parent-buffer
1013 (pop-to-buffer vc-parent-buffer))
1014 (let* ((target (concat (vc-latest-version (buffer-file-name))))
1015 (yours (concat (vc-your-latest-version (buffer-file-name))))
1016 (prompt (if (string-equal yours target)
1017 "Remove your version %s from master?"
1018 "Version %s was not your change. Remove it anyway?")))
1019 (if (null (yes-or-no-p (format prompt target)))
1021 (vc-backend-uncheck (buffer-file-name) target)
1022 (if norevert
1023 (vc-mode-line (buffer-file-name))
1024 (vc-checkout (buffer-file-name) nil)))
1027 (defun vc-rename-file (old new)
1028 "Rename a file, taking its master files with it."
1029 (interactive "fOld name: \nFNew name: ")
1030 (let ((oldbuf (get-file-buffer old)))
1031 (if (buffer-modified-p oldbuf)
1032 (error "Please save files before moving them."))
1033 (if (get-file-buffer new)
1034 (error "Already editing new file name."))
1035 (let ((oldmaster (vc-name old)))
1036 (if oldmaster
1037 (if (vc-locking-user old)
1038 (error "Please check in files before moving them."))
1039 (if (or (file-symlink-p oldmaster)
1040 ;; This had FILE, I changed it to OLD. -- rms.
1041 (file-symlink-p (vc-backend-subdirectory-name old)))
1042 (error "This is not a safe thing to do in the presence of symbolic links."))
1043 (rename-file oldmaster (vc-name new)))
1044 (if (or (not oldmaster) (file-exists-p old))
1045 (rename-file old new)))
1046 ; ?? Renaming a file might change its contents due to keyword expansion.
1047 ; We should really check out a new copy if the old copy was precisely equal
1048 ; to some checked in version. However, testing for this is tricky....
1049 (if oldbuf
1050 (save-excursion
1051 (set-buffer oldbuf)
1052 (set-visited-file-name new)
1053 (set-buffer-modified-p nil))))
1054 ;; This had FILE, I changed it to OLD. -- rms.
1055 (vc-backend-dispatch old
1056 (vc-record-rename old new)
1057 nil)
1060 ;;;###autoload
1061 (defun vc-update-change-log (&rest args)
1062 "Find change log file and add entries from recent RCS logs.
1063 The mark is left at the end of the text prepended to the change log.
1064 With prefix arg of C-u, only find log entries for the current buffer's file.
1065 With any numeric prefix arg, find log entries for all files currently visited.
1066 From a program, any arguments are passed to the `rcs2log' script."
1067 (interactive
1068 (cond ((consp current-prefix-arg) ;C-u
1069 (list buffer-file-name))
1070 (current-prefix-arg ;Numeric argument.
1071 (let ((files nil)
1072 (buffers (buffer-list))
1073 file)
1074 (while buffers
1075 (setq file (buffer-file-name (car buffers)))
1076 (and file (vc-backend-deduce file)
1077 (setq files (cons (file-relative-name file) files)))
1078 (setq buffers (cdr buffers)))
1079 files))))
1080 (find-file-other-window "ChangeLog")
1081 (barf-if-buffer-read-only)
1082 (vc-buffer-sync)
1083 (undo-boundary)
1084 (goto-char (point-min))
1085 (push-mark)
1086 (message "Computing change log entries...")
1087 (message "Computing change log entries... %s"
1088 (if (eq 0 (apply 'call-process "rcs2log" nil t nil args))
1089 "done" "failed")))
1091 ;; Functions for querying the master and lock files.
1093 (defun match-substring (bn)
1094 (buffer-substring (match-beginning bn) (match-end bn)))
1096 (defun vc-parse-buffer (patterns &optional file properties)
1097 ;; Use PATTERNS to parse information out of the current buffer
1098 ;; by matching each regular expression in the list and returning \\1.
1099 ;; If a regexp has two tag brackets, assume the second is a date
1100 ;; field and we want the most recent entry matching the template.
1101 ;; If FILE and PROPERTIES are given, the latter must be a list of
1102 ;; properties of the same length as PATTERNS; each property is assigned
1103 ;; the corresponding value.
1104 (mapcar (function (lambda (p)
1105 (goto-char (point-min))
1106 (if (string-match "\\\\(.*\\\\(" p)
1107 (let ((latest-date "") (latest-val))
1108 (while (re-search-forward p nil t)
1109 (let ((date (match-substring 2)))
1110 (if (string< latest-date date)
1111 (progn
1112 (setq latest-date date)
1113 (setq latest-val
1114 (match-substring 1))))))
1115 latest-val))
1116 (prog1
1117 (and (re-search-forward p nil t)
1118 (let ((value (match-substring 1)))
1119 (if file
1120 (vc-file-setprop file (car properties) value))
1121 value))
1122 (setq properties (cdr properties)))))
1123 patterns)
1126 (defun vc-master-info (file fields &optional rfile properties)
1127 ;; Search for information in a master file.
1128 (if (and file (file-exists-p file))
1129 (save-excursion
1130 (let ((buf))
1131 (setq buf (create-file-buffer file))
1132 (set-buffer buf))
1133 (erase-buffer)
1134 (insert-file-contents file nil)
1135 (set-buffer-modified-p nil)
1136 (auto-save-mode nil)
1137 (prog1
1138 (vc-parse-buffer fields rfile properties)
1139 (kill-buffer (current-buffer)))
1141 (if rfile
1142 (mapcar
1143 (function (lambda (p) (vc-file-setprop rfile p nil)))
1144 properties))
1148 (defun vc-log-info (command file patterns &optional properties)
1149 ;; Search for information in log program output
1150 (if (and file (file-exists-p file))
1151 (save-excursion
1152 (let ((buf))
1153 (setq buf (get-buffer-create "*vc*"))
1154 (set-buffer buf))
1155 (apply 'vc-do-command 0 command file nil)
1156 (set-buffer-modified-p nil)
1157 (prog1
1158 (vc-parse-buffer patterns file properties)
1159 (kill-buffer (current-buffer))
1162 (if file
1163 (mapcar
1164 (function (lambda (p) (vc-file-setprop file p nil)))
1165 properties))
1169 (defun vc-locking-user (file)
1170 "Return the name of the person currently holding a lock on FILE.
1171 Return nil if there is no such person."
1172 (setq file (expand-file-name file)) ;; ??? Work around bug in 19.0.4
1173 (if (or (not vc-keep-workfiles)
1174 (eq vc-mistrust-permissions 't)
1175 (and vc-mistrust-permissions
1176 (funcall vc-mistrust-permissions (vc-backend-subdirectory-name file))))
1177 (vc-true-locking-user file)
1178 ;; This implementation assumes that any file which is under version
1179 ;; control and has -rw-r--r-- is locked by its owner. This is true
1180 ;; for both RCS and SCCS, which keep unlocked files at -r--r--r--.
1181 ;; We have to be careful not to exclude files with execute bits on;
1182 ;; scripts can be under version control too. The advantage of this
1183 ;; hack is that calls to the very expensive vc-fetch-properties
1184 ;; function only have to be made if (a) the file is locked by someone
1185 ;; other than the current user, or (b) some untoward manipulation
1186 ;; behind vc's back has changed the owner or the `group' or `other'
1187 ;; write bits.
1188 (let ((attributes (file-attributes file)))
1189 (cond ((string-match ".r-.r-.r-." (nth 8 attributes))
1190 nil)
1191 ((and (= (nth 2 attributes) (user-uid))
1192 (string-match ".rw.r-.r-." (nth 8 attributes)))
1193 (user-login-name))
1195 (vc-true-locking-user file))))))
1197 (defun vc-true-locking-user (file)
1198 ;; The slow but reliable version
1199 (vc-fetch-properties file)
1200 (vc-file-getprop file 'vc-locking-user))
1202 (defun vc-latest-version (file)
1203 ;; Return version level of the latest version of FILE
1204 (vc-fetch-properties file)
1205 (vc-file-getprop file 'vc-latest-version))
1207 (defun vc-your-latest-version (file)
1208 ;; Return version level of the latest version of FILE checked in by you
1209 (vc-fetch-properties file)
1210 (vc-file-getprop file 'vc-your-latest-version))
1212 ;; Collect back-end-dependent stuff here
1214 ;; Everything eventually funnels through these functions. To implement
1215 ;; support for a new version-control system, add another branch to the
1216 ;; vc-backend-dispatch macro and fill it in in each call. The variable
1217 ;; vc-master-templates in vc-hooks.el will also have to change.
1219 (defmacro vc-backend-dispatch (f s r)
1220 "Execute FORM1 or FORM2 depending on whether we're using SCCS or RCS."
1221 (list 'let (list (list 'type (list 'vc-backend-deduce f)))
1222 (list 'cond
1223 (list (list 'eq 'type (quote 'SCCS)) s) ;; SCCS
1224 (list (list 'eq 'type (quote 'RCS)) r) ;; RCS
1227 (defun vc-lock-file (file)
1228 ;; Generate lock file name corresponding to FILE
1229 (let ((master (vc-name file)))
1230 (and
1231 master
1232 (string-match "\\(.*/\\)s\\.\\(.*\\)" master)
1233 (concat
1234 (substring master (match-beginning 1) (match-end 1))
1235 "p."
1236 (substring master (match-beginning 2) (match-end 2))))))
1239 (defun vc-fetch-properties (file)
1240 ;; Re-fetch all properties associated with the given file.
1241 ;; Currently these properties are:
1242 ;; vc-locking-user
1243 ;; vc-locked-version
1244 ;; vc-latest-version
1245 ;; vc-your-latest-version
1246 (vc-backend-dispatch
1247 file
1248 ;; SCCS
1249 (progn
1250 (vc-master-info (vc-lock-file file)
1251 (list
1252 "^[^ ]+ [^ ]+ \\([^ ]+\\)"
1253 "^\\([^ ]+\\)")
1254 file
1255 '(vc-locking-user vc-locked-version))
1256 (vc-master-info (vc-name file)
1257 (list
1258 "^\001d D \\([^ ]+\\)"
1259 (concat "^\001d D \\([^ ]+\\) .* "
1260 (regexp-quote (user-login-name)) " ")
1262 file
1263 '(vc-latest-version vc-your-latest-version))
1265 ;; RCS
1266 (vc-log-info "rlog" file
1267 (list
1268 "^locks: strict\n\t\\([^:]+\\)"
1269 "^locks: strict\n\t[^:]+: \\(.+\\)"
1270 "^revision[\t ]+\\([0-9.]+\\).*\ndate: \\([ /0-9:]+\\);"
1271 (concat
1272 "^revision[\t ]+\\([0-9.]+\\)\n.*author: "
1273 (regexp-quote (user-login-name))
1274 ";"))
1275 '(vc-locking-user vc-locked-version
1276 vc-latest-version vc-your-latest-version))
1279 (defun vc-backend-subdirectory-name (&optional file)
1280 ;; Where the master and lock files for the current directory are kept
1281 (symbol-name
1283 (and file (vc-backend-deduce file))
1284 vc-default-back-end
1285 (setq vc-default-back-end (if (vc-find-binary "rcs") 'RCS 'SCCS)))))
1287 (defun vc-backend-admin (file &optional rev comment)
1288 ;; Register a file into the version-control system
1289 ;; Automatically retrieves a read-only version of the file with
1290 ;; keywords expanded if vc-keep-workfiles is non-nil, otherwise
1291 ;; it deletes the workfile.
1292 (vc-file-clearprops file)
1293 (or vc-default-back-end
1294 (setq vc-default-back-end (if (vc-find-binary "rcs") 'RCS 'SCCS)))
1295 (message "Registering %s..." file)
1296 (let ((backend
1297 (cond
1298 ((file-exists-p (vc-backend-subdirectory-name)) vc-default-back-end)
1299 ((file-exists-p "RCS") 'RCS)
1300 ((file-exists-p "SCCS") 'SCCS)
1301 (t vc-default-back-end))))
1302 (cond ((eq backend 'SCCS)
1303 (vc-do-command 0 "admin" file ;; SCCS
1304 (and rev (concat "-r" rev))
1305 "-fb"
1306 (concat "-i" file)
1307 (and comment (concat "-y" comment))
1308 (format
1309 (car (rassq 'SCCS vc-master-templates))
1310 (or (file-name-directory file) "")
1311 (file-name-nondirectory file)))
1312 (delete-file file)
1313 (if vc-keep-workfiles
1314 (vc-do-command 0 "get" file)))
1315 ((eq backend 'RCS)
1316 (vc-do-command 0 "ci" file ;; RCS
1317 (concat (if vc-keep-workfiles "-u" "-r") rev)
1318 (and comment (concat "-t-" comment))
1319 file)
1321 (message "Registering %s...done" file)
1324 (defun vc-backend-checkout (file &optional writeable rev)
1325 ;; Retrieve a copy of a saved version into a workfile
1326 (message "Checking out %s..." file)
1327 (vc-backend-dispatch file
1328 (progn
1329 (vc-do-command 0 "get" file ;; SCCS
1330 (if writeable "-e")
1331 (and rev (concat "-r" (vc-lookup-triple file rev))))
1333 (vc-do-command 0 "co" file ;; RCS
1334 (if writeable "-l")
1335 (and rev (concat "-r" rev)))
1337 (vc-file-setprop file 'vc-checkout-time (nth 5 (file-attributes file)))
1338 (message "Checking out %s...done" file)
1341 (defun vc-backend-logentry-check (file)
1342 (vc-backend-dispatch file
1343 (if (>= (buffer-size) 512) ;; SCCS
1344 (progn
1345 (goto-char 512)
1346 (error
1347 "Log must be less than 512 characters. Point is now at char 512.")))
1348 nil)
1351 (defun vc-backend-checkin (file &optional rev comment)
1352 ;; Register changes to FILE as level REV with explanatory COMMENT.
1353 ;; Automatically retrieves a read-only version of the file with
1354 ;; keywords expanded if vc-keep-workfiles is non-nil, otherwise
1355 ;; it deletes the workfile.
1356 (message "Checking in %s..." file)
1357 (save-excursion
1358 ;; Change buffers to get local value of vc-checkin-switches.
1359 (set-buffer (or (get-file-buffer file) (current-buffer)))
1360 (vc-backend-dispatch file
1361 (progn
1362 (apply 'vc-do-command 0 "delta" file
1363 (if rev (concat "-r" rev))
1364 (concat "-y" comment)
1365 vc-checkin-switches)
1366 (if vc-keep-workfiles
1367 (vc-do-command 0 "get" file))
1369 (apply 'vc-do-command 0 "ci" file
1370 (concat (if vc-keep-workfiles "-u" "-r") rev)
1371 (concat "-m" comment)
1372 vc-checkin-switches)
1374 (vc-file-setprop file 'vc-locking-user nil)
1375 (message "Checking in %s...done" file)
1378 (defun vc-backend-revert (file)
1379 ;; Revert file to latest checked-in version.
1380 (message "Reverting %s..." file)
1381 (vc-backend-dispatch
1382 file
1383 (progn ;; SCCS
1384 (vc-do-command 0 "unget" file nil)
1385 (vc-do-command 0 "get" file nil))
1386 (progn
1387 (delete-file file) ;; RCS
1388 (vc-do-command 0 "co" file "-u")))
1389 (vc-file-setprop file 'vc-locking-user nil)
1390 (message "Reverting %s...done" file)
1393 (defun vc-backend-steal (file &optional rev)
1394 ;; Steal the lock on the current workfile. Needs RCS 5.6.2 or later for -M.
1395 (message "Stealing lock on %s..." file)
1396 (progn
1397 (vc-do-command 0 "unget" file "-n" (if rev (concat "-r" rev)))
1398 (vc-do-command 0 "get" file "-g" (if rev (concat "-r" rev)))
1400 (progn
1401 (vc-do-command 0 "rcs" "-M" (concat "-u" rev) file)
1402 (delete-file file)
1403 (vc-do-command 0 "rcs" (concat "-l" rev) file)
1405 (vc-file-setprop file 'vc-locking-user (user-login-name))
1406 (message "Stealing lock on %s...done" file)
1409 (defun vc-backend-uncheck (file target)
1410 ;; Undo the latest checkin. Note: this code will have to get a lot
1411 ;; smarter when we support multiple branches.
1412 (message "Removing last change from %s..." file)
1413 (vc-backend-dispatch file
1414 (vc-do-command 0 "rmdel" file (concat "-r" target))
1415 (vc-do-command 0 "rcs" file (concat "-o" target))
1417 (message "Removing last change from %s...done" file)
1420 (defun vc-backend-print-log (file)
1421 ;; Print change log associated with FILE to buffer *vc*.
1422 (vc-do-command 0
1423 (vc-backend-dispatch file "prs" "rlog")
1424 file)
1427 (defun vc-backend-assign-name (file name)
1428 ;; Assign to a FILE's latest version a given NAME.
1429 (vc-backend-dispatch file
1430 (vc-add-triple name file (vc-latest-version file)) ;; SCCS
1431 (vc-do-command 0 "rcs" file (concat "-n" name ":")) ;; RCS
1435 (defun vc-backend-diff (file oldvers &optional newvers)
1436 ;; Get a difference report between two versions
1437 (if (eq (vc-backend-deduce file) 'SCCS)
1438 (setq oldvers (vc-lookup-triple file oldvers))
1439 (setq newvers (vc-lookup-triple file newvers)))
1440 (apply 'vc-do-command 1
1441 (or (vc-backend-dispatch file "vcdiff" "rcsdiff")
1442 (error "File %s is not under version control." file))
1443 file
1444 (and oldvers (concat "-r" oldvers))
1445 (and newvers (concat "-r" newvers))
1446 vc-diff-options
1449 (defun vc-check-headers ()
1450 "Check if the current file has any headers in it."
1451 (interactive)
1452 (save-excursion
1453 (goto-char (point-min))
1454 (vc-backend-dispatch buffer-file-name
1455 (re-search-forward "%[MIRLBSDHTEGUYFPQCZWA]%" nil t) ;; SCCS
1456 (re-search-forward "\\$[A-Za-z\300-\326\330-\366\370-\377]+\\(: [\t -#%-\176\240-\377]*\\)?\\$" nil t) ;; RCS
1460 ;; Back-end-dependent stuff ends here.
1462 ;; Set up key bindings for use while editing log messages
1464 (defun vc-log-mode ()
1465 "Minor mode for driving version-control tools.
1466 These bindings are added to the global keymap when you enter this mode:
1467 \\[vc-next-action] perform next logical version-control operation on current file
1468 \\[vc-register] register current file
1469 \\[vc-toggle-read-only] like next-action, but won't register files
1470 \\[vc-insert-headers] insert version-control headers in current file
1471 \\[vc-print-log] display change history of current file
1472 \\[vc-revert-buffer] revert buffer to latest version
1473 \\[vc-cancel-version] undo latest checkin
1474 \\[vc-diff] show diffs between file versions
1475 \\[vc-directory] show all files locked by any user in or below .
1476 \\[vc-update-change-log] add change log entry from recent checkins
1478 While you are entering a change log message for a version, the following
1479 additional bindings will be in effect.
1481 \\[vc-finish-logentry] proceed with check in, ending log message entry
1483 Whenever you do a checkin, your log comment is added to a ring of
1484 saved comments. These can be recalled as follows:
1486 \\[vc-next-comment] replace region with next message in comment ring
1487 \\[vc-previous-comment] replace region with previous message in comment ring
1488 \\[vc-comment-search-reverse] search backward for regexp in the comment ring
1489 \\[vc-comment-search-forward] search backward for regexp in the comment ring
1491 Entry to the change-log submode calls the value of text-mode-hook, then
1492 the value of vc-log-mode-hook.
1494 Global user options:
1495 vc-initial-comment If non-nil, require user to enter a change
1496 comment upon first checkin of the file.
1498 vc-keep-workfiles Non-nil value prevents workfiles from being
1499 deleted when changes are checked in
1501 vc-suppress-confirm Suppresses some confirmation prompts,
1502 notably for reversions.
1504 vc-diff-options A list consisting of the flags
1505 to be used for generating context diffs.
1507 vc-header-alist Which keywords to insert when adding headers
1508 with \\[vc-insert-headers]. Defaults to
1509 '(\"\%\W\%\") under SCCS, '(\"\$Id\$\") under RCS.
1511 vc-static-header-alist By default, version headers inserted in C files
1512 get stuffed in a static string area so that
1513 ident(RCS) or what(SCCS) can see them in the
1514 compiled object code. You can override this
1515 by setting this variable to nil, or change
1516 the header template by changing it.
1518 vc-command-messages if non-nil, display run messages from the
1519 actual version-control utilities (this is
1520 intended primarily for people hacking vc
1521 itself).
1523 (interactive)
1524 (set-syntax-table text-mode-syntax-table)
1525 (use-local-map vc-log-entry-mode)
1526 (setq local-abbrev-table text-mode-abbrev-table)
1527 (setq major-mode 'vc-log-mode)
1528 (setq mode-name "VC-Log")
1529 (make-local-variable 'vc-log-file)
1530 (make-local-variable 'vc-log-version)
1531 (make-local-variable 'vc-comment-ring-index)
1532 (set-buffer-modified-p nil)
1533 (setq buffer-file-name nil)
1534 (run-hooks 'text-mode-hook 'vc-log-mode-hook)
1537 ;; Initialization code, to be done just once at load-time
1538 (if vc-log-entry-mode
1540 (setq vc-log-entry-mode (make-sparse-keymap))
1541 (define-key vc-log-entry-mode "\M-n" 'vc-next-comment)
1542 (define-key vc-log-entry-mode "\M-p" 'vc-previous-comment)
1543 (define-key vc-log-entry-mode "\M-r" 'vc-comment-search-reverse)
1544 (define-key vc-log-entry-mode "\M-s" 'vc-comment-search-forward)
1545 (define-key vc-log-entry-mode "\C-c\C-c" 'vc-finish-logentry)
1548 ;;; These things should probably be generally available
1550 (defun vc-shrink-to-fit ()
1551 "Shrink a window vertically until it's just large enough to contain its text"
1552 (let ((minsize (1+ (count-lines (point-min) (point-max)))))
1553 (if (< minsize (window-height))
1554 (let ((window-min-height 2))
1555 (shrink-window (- (window-height) minsize))))))
1557 (defun vc-file-tree-walk (func &rest args)
1558 "Walk recursively through default directory,
1559 invoking FUNC f ARGS on all non-directory files f underneath it."
1560 (vc-file-tree-walk-internal default-directory func args)
1561 (message "Traversing directory %s...done" default-directory))
1563 (defun vc-file-tree-walk-internal (file func args)
1564 (if (not (file-directory-p file))
1565 (apply func file args)
1566 (message "Traversing directory %s..." file)
1567 (let ((dir (file-name-as-directory file)))
1568 (mapcar
1569 (function
1570 (lambda (f) (or
1571 (string-equal f ".")
1572 (string-equal f "..")
1573 (let ((dirf (concat dir f)))
1575 (file-symlink-p dirf) ;; Avoid possible loops
1576 (vc-file-tree-walk-internal dirf func args))))))
1577 (directory-files dir)))))
1579 (provide 'vc)
1581 ;;; DEVELOPER'S NOTES ON CONCURRENCY PROBLEMS IN THIS CODE
1583 ;;; These may be useful to anyone who has to debug or extend the package.
1584 ;;;
1585 ;;; A fundamental problem in VC is that there are time windows between
1586 ;;; vc-next-action's computations of the file's version-control state and
1587 ;;; the actions that change it. This is a window open to lossage in a
1588 ;;; multi-user environment; someone else could nip in and change the state
1589 ;;; of the master during it.
1590 ;;;
1591 ;;; The performance problem is that rlog/prs calls are very expensive; we want
1592 ;;; to avoid them as much as possible.
1593 ;;;
1594 ;;; ANALYSIS:
1595 ;;;
1596 ;;; The performance problem, it turns out, simplifies in practice to the
1597 ;;; problem of making vc-locking-user fast. The two other functions that call
1598 ;;; prs/rlog will not be so commonly used that the slowdown is a problem; one
1599 ;;; makes snapshots, the other deletes the calling user's last change in the
1600 ;;; master.
1601 ;;;
1602 ;;; The race condition implies that we have to either (a) lock the master
1603 ;;; during the entire execution of vc-next-action, or (b) detect and
1604 ;;; recover from errors resulting from dispatch on an out-of-date state.
1605 ;;;
1606 ;;; Alternative (a) appears to be unfeasible. The problem is that we can't
1607 ;;; guarantee that the lock will ever be removed. Suppose a user starts a
1608 ;;; checkin, the change message buffer pops up, and the user, having wandered
1609 ;;; off to do something else, simply forgets about it?
1610 ;;;
1611 ;;; Alternative (b), on the other hand, works well with a cheap way to speed up
1612 ;;; vc-locking-user. Usually, if a file is registered, we can read its locked/
1613 ;;; unlocked state and its current owner from its permissions.
1614 ;;;
1615 ;;; This shortcut will fail if someone has manually changed the workfile's
1616 ;;; permissions; also if developers are munging the workfile in several
1617 ;;; directories, with symlinks to a master (in this latter case, the
1618 ;;; permissions shortcut will fail to detect a lock asserted from another
1619 ;;; directory).
1620 ;;;
1621 ;;; Note that these cases correspond exactly to the errors which could happen
1622 ;;; because of a competing checkin/checkout race in between two instances of
1623 ;;; vc-next-action.
1624 ;;;
1625 ;;; For VC's purposes, a workfile/master pair may have the following states:
1626 ;;;
1627 ;;; A. Unregistered. There is a workfile, there is no master.
1628 ;;;
1629 ;;; B. Registered and not locked by anyone.
1630 ;;;
1631 ;;; C. Locked by calling user and unchanged.
1632 ;;;
1633 ;;; D. Locked by the calling user and changed.
1634 ;;;
1635 ;;; E. Locked by someone other than the calling user.
1636 ;;;
1637 ;;; This makes for 25 states and 20 error conditions. Here's the matrix:
1638 ;;;
1639 ;;; VC's idea of state
1640 ;;; |
1641 ;;; V Actual state RCS action SCCS action Effect
1642 ;;; A B C D E
1643 ;;; A . 1 2 3 4 ci -u -t- admin -fb -i<file> initial admin
1644 ;;; B 5 . 6 7 8 co -l get -e checkout
1645 ;;; C 9 10 . 11 12 co -u unget; get revert
1646 ;;; D 13 14 15 . 16 ci -u -m<comment> delta -y<comment>; get checkin
1647 ;;; E 17 18 19 20 . rcs -u -M ; rcs -l unget -n ; get -g steal lock
1648 ;;;
1649 ;;; All commands take the master file name as a last argument (not shown).
1650 ;;;
1651 ;;; In the discussion below, a "self-race" is a pathological situation in
1652 ;;; which VC operations are being attempted simultaneously by two or more
1653 ;;; Emacsen running under the same username.
1654 ;;;
1655 ;;; The vc-next-action code has the following windows:
1656 ;;;
1657 ;;; Window P:
1658 ;;; Between the check for existence of a master file and the call to
1659 ;;; admin/checkin in vc-buffer-admin (apparent state A). This window may
1660 ;;; never close if the initial-comment feature is on.
1661 ;;;
1662 ;;; Window Q:
1663 ;;; Between the call to vc-workfile-unchanged-p in and the immediately
1664 ;;; following revert (apparent state C).
1665 ;;;
1666 ;;; Window R:
1667 ;;; Between the call to vc-workfile-unchanged-p in and the following
1668 ;;; checkin (apparent state D). This window may never close.
1669 ;;;
1670 ;;; Window S:
1671 ;;; Between the unlock and the immediately following checkout during a
1672 ;;; revert operation (apparent state C). Included in window Q.
1673 ;;;
1674 ;;; Window T:
1675 ;;; Between vc-locking-user and the following checkout (apparent state B).
1676 ;;;
1677 ;;; Window U:
1678 ;;; Between vc-locking-user and the following revert (apparent state C).
1679 ;;; Includes windows Q and S.
1680 ;;;
1681 ;;; Window V:
1682 ;;; Between vc-locking-user and the following checkin (apparent state
1683 ;;; D). This window may never be closed if the user fails to complete the
1684 ;;; checkin message. Includes window R.
1685 ;;;
1686 ;;; Window W:
1687 ;;; Between vc-locking-user and the following steal-lock (apparent
1688 ;;; state E). This window may never cloce if the user fails to complete
1689 ;;; the steal-lock message. Includes window X.
1690 ;;;
1691 ;;; Window X:
1692 ;;; Between the unlock and the immediately following re-lock during a
1693 ;;; steal-lock operation (apparent state E). This window may never cloce
1694 ;;; if the user fails to complete the steal-lock message.
1695 ;;;
1696 ;;; Errors:
1697 ;;;
1698 ;;; Apparent state A ---
1700 ;;; 1. File looked unregistered but is actually registered and not locked.
1701 ;;;
1702 ;;; Potential cause: someone else's admin during window P, with
1703 ;;; caller's admin happening before their checkout.
1704 ;;;
1705 ;;; RCS: ci will fail with a "no lock set by <user>" message.
1706 ;;; SCCS: admin will fail with error (ad19).
1707 ;;;
1708 ;;; We can let these errors be passed up to the user.
1709 ;;;
1710 ;;; 2. File looked unregistered but is actually locked by caller, unchanged.
1711 ;;;
1712 ;;; Potential cause: self-race during window P.
1713 ;;;
1714 ;;; RCS: will revert the file to the last saved version and unlock it.
1715 ;;; SCCS: will fail with error (ad19).
1716 ;;;
1717 ;;; Either of these consequences is acceptable.
1718 ;;;
1719 ;;; 3. File looked unregistered but is actually locked by caller, changed.
1720 ;;;
1721 ;;; Potential cause: self-race during window P.
1722 ;;;
1723 ;;; RCS: will register the caller's workfile as a delta with a
1724 ;;; null change comment (the -t- switch will be ignored).
1725 ;;; SCCS: will fail with error (ad19).
1726 ;;;
1727 ;;; 4. File looked unregistered but is locked by someone else.
1728 ;;;
1729 ;;; Potential cause: someone else's admin during window P, with
1730 ;;; caller's admin happening *after* their checkout.
1731 ;;;
1732 ;;; RCS: will fail with a "no lock set by <user>" message.
1733 ;;; SCCS: will fail with error (ad19).
1734 ;;;
1735 ;;; We can let these errors be passed up to the user.
1736 ;;;
1737 ;;; Apparent state B ---
1739 ;;; 5. File looked registered and not locked, but is actually unregistered.
1740 ;;;
1741 ;;; Potential cause: master file got nuked during window P.
1742 ;;;
1743 ;;; RCS: will fail with "RCS/<file>: No such file or directory"
1744 ;;; SCCS: will fail with error ut4.
1745 ;;;
1746 ;;; We can let these errors be passed up to the user.
1747 ;;;
1748 ;;; 6. File looked registered and not locked, but is actually locked by the
1749 ;;; calling user and unchanged.
1750 ;;;
1751 ;;; Potential cause: self-race during window T.
1752 ;;;
1753 ;;; RCS: in the same directory as the previous workfile, co -l will fail
1754 ;;; with "co error: writable foo exists; checkout aborted". In any other
1755 ;;; directory, checkout will succeed.
1756 ;;; SCCS: will fail with ge17.
1757 ;;;
1758 ;;; Either of these consequences is acceptable.
1759 ;;;
1760 ;;; 7. File looked registered and not locked, but is actually locked by the
1761 ;;; calling user and changed.
1762 ;;;
1763 ;;; As case 6.
1764 ;;;
1765 ;;; 8. File looked registered and not locked, but is actually locked by another
1766 ;;; user.
1767 ;;;
1768 ;;; Potential cause: someone else checks it out during window T.
1769 ;;;
1770 ;;; RCS: co error: revision 1.3 already locked by <user>
1771 ;;; SCCS: fails with ge4 (in directory) or ut7 (outside it).
1772 ;;;
1773 ;;; We can let these errors be passed up to the user.
1774 ;;;
1775 ;;; Apparent state C ---
1777 ;;; 9. File looks locked by calling user and unchanged, but is unregistered.
1778 ;;;
1779 ;;; As case 5.
1780 ;;;
1781 ;;; 10. File looks locked by calling user and unchanged, but is actually not
1782 ;;; locked.
1783 ;;;
1784 ;;; Potential cause: a self-race in window U, or by the revert's
1785 ;;; landing during window X of some other user's steal-lock or window S
1786 ;;; of another user's revert.
1787 ;;;
1788 ;;; RCS: succeeds, refreshing the file from the identical version in
1789 ;;; the master.
1790 ;;; SCCS: fails with error ut4 (p file nonexistent).
1792 ;;; Either of these consequences is acceptable.
1793 ;;;
1794 ;;; 11. File is locked by calling user. It looks unchanged, but is actually
1795 ;;; changed.
1796 ;;;
1797 ;;; Potential cause: the file would have to be touched by a self-race
1798 ;;; during window Q.
1799 ;;;
1800 ;;; The revert will succeed, removing whatever changes came with
1801 ;;; the touch. It is theoretically possible that work could be lost.
1802 ;;;
1803 ;;; 12. File looks like it's locked by the calling user and unchanged, but
1804 ;;; it's actually locked by someone else.
1805 ;;;
1806 ;;; Potential cause: a steal-lock in window V.
1807 ;;;
1808 ;;; RCS: co error: revision <rev> locked by <user>; use co -r or rcs -u
1809 ;;; SCCS: fails with error un2
1810 ;;;
1811 ;;; We can pass these errors up to the user.
1812 ;;;
1813 ;;; Apparent state D ---
1815 ;;; 13. File looks like it's locked by the calling user and changed, but it's
1816 ;;; actually unregistered.
1817 ;;;
1818 ;;; Potential cause: master file got nuked during window P.
1819 ;;;
1820 ;;; RCS: Checks in the user's version as an initial delta.
1821 ;;; SCCS: will fail with error ut4.
1823 ;;; This case is kind of nasty. It means VC may fail to detect the
1824 ;;; loss of previous version information.
1825 ;;;
1826 ;;; 14. File looks like it's locked by the calling user and changed, but it's
1827 ;;; actually unlocked.
1828 ;;;
1829 ;;; Potential cause: self-race in window V, or the checkin happening
1830 ;;; during the window X of someone else's steal-lock or window S of
1831 ;;; someone else's revert.
1832 ;;;
1833 ;;; RCS: ci will fail with "no lock set by <user>".
1834 ;;; SCCS: delta will fail with error ut4.
1835 ;;;
1836 ;;; 15. File looks like it's locked by the calling user and changed, but it's
1837 ;;; actually locked by the calling user and unchanged.
1838 ;;;
1839 ;;; Potential cause: another self-race --- a whole checkin/checkout
1840 ;;; sequence by the calling user would have to land in window R.
1841 ;;;
1842 ;;; SCCS: checks in a redundant delta and leaves the file unlocked as usual.
1843 ;;; RCS: reverts to the file state as of the second user's checkin, leaving
1844 ;;; the file unlocked.
1846 ;;; It is theoretically possible that work could be lost under RCS.
1847 ;;;
1848 ;;; 16. File looks like it's locked by the calling user and changed, but it's
1849 ;;; actually locked by a different user.
1850 ;;;
1851 ;;; RCS: ci error: no lock set by <user>
1852 ;;; SCCS: unget will fail with error un2
1853 ;;;
1854 ;;; We can pass these errors up to the user.
1855 ;;;
1856 ;;; Apparent state E ---
1858 ;;; 17. File looks like it's locked by some other user, but it's actually
1859 ;;; unregistered.
1860 ;;;
1861 ;;; As case 13.
1862 ;;;
1863 ;;; 18. File looks like it's locked by some other user, but it's actually
1864 ;;; unlocked.
1865 ;;;
1866 ;;; Potential cause: someone released a lock during window W.
1867 ;;;
1868 ;;; RCS: The calling user will get the lock on the file.
1869 ;;; SCCS: unget -n will fail with cm4.
1870 ;;;
1871 ;;; Either of these consequences will be OK.
1872 ;;;
1873 ;;; 19. File looks like it's locked by some other user, but it's actually
1874 ;;; locked by the calling user and unchanged.
1875 ;;;
1876 ;;; Potential cause: the other user relinquishing a lock followed by
1877 ;;; a self-race, both in window W.
1878 ;;;
1879 ;;; Under both RCS and SCCS, both unlock and lock will succeed, making
1880 ;;; the sequence a no-op.
1881 ;;;
1882 ;;; 20. File looks like it's locked by some other user, but it's actually
1883 ;;; locked by the calling user and changed.
1884 ;;;
1885 ;;; As case 19.
1886 ;;;
1887 ;;; PROBLEM CASES:
1888 ;;;
1889 ;;; In order of decreasing severity:
1890 ;;;
1891 ;;; Cases 11 and 15 under RCS are the only one that potentially lose work.
1892 ;;; They would require a self-race for this to happen.
1893 ;;;
1894 ;;; Case 13 in RCS loses information about previous deltas, retaining
1895 ;;; only the information in the current workfile. This can only happen
1896 ;;; if the master file gets nuked in window P.
1897 ;;;
1898 ;;; Case 3 in RCS and case 15 under SCCS insert a redundant delta with
1899 ;;; no change comment in the master. This would require a self-race in
1900 ;;; window P or R respectively.
1901 ;;;
1902 ;;; Cases 2, 10, 19 and 20 do extra work, but make no changes.
1903 ;;;
1904 ;;; Unfortunately, it appears to me that no recovery is possible in these
1905 ;;; cases. They don't yield error messages, so there's no way to tell that
1906 ;;; a race condition has occurred.
1907 ;;;
1908 ;;; All other cases don't change either the workfile or the master, and
1909 ;;; trigger command errors which the user will see.
1910 ;;;
1911 ;;; Thus, there is no explicit recovery code.
1913 ;;; vc.el ends here