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