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