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