(vc-default-show-log-entry): Fix typo.
[emacs.git] / lisp / vc.el
blob8a08b5b71303a66afeb0f20f61a41b6d6a6c8e76
1 ;;; vc.el --- drive a version-control system from within Emacs
3 ;; Copyright (C) 1992,93,94,95,96,97,98,2000,2001 Free Software Foundation, Inc.
5 ;; Author: FSF (see below for full credits)
6 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
7 ;; Keywords: tools
9 ;; $Id: vc.el,v 1.337 2002/10/03 22:43:01 monnier Exp $
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
28 ;;; Credits:
30 ;; VC was initially designed and implemented by Eric S. Raymond
31 ;; <esr@snark.thyrsus.com>. Over the years, many people have
32 ;; contributed substantial amounts of work to VC. These include:
33 ;; Per Cederqvist <ceder@lysator.liu.se>
34 ;; Paul Eggert <eggert@twinsun.com>
35 ;; Sebastian Kremer <sk@thp.uni-koeln.de>
36 ;; Martin Lorentzson <martinl@gnu.org>
37 ;; Dave Love <fx@gnu.org>
38 ;; Stefan Monnier <monnier@cs.yale.edu>
39 ;; J.D. Smith <jdsmith@alum.mit.edu>
40 ;; Andre Spiegel <spiegel@gnu.org>
41 ;; Richard Stallman <rms@gnu.org>
42 ;; Thien-Thi Nguyen <ttn@gnu.org>
44 ;;; Commentary:
46 ;; This mode is fully documented in the Emacs user's manual.
48 ;; Supported version-control systems presently include SCCS, RCS, and CVS.
50 ;; Some features will not work with old RCS versions. Where
51 ;; appropriate, VC finds out which version you have, and allows or
52 ;; disallows those features (stealing locks, for example, works only
53 ;; from 5.6.2 onwards).
54 ;; Even initial checkins will fail if your RCS version is so old that ci
55 ;; doesn't understand -t-; this has been known to happen to people running
56 ;; NExTSTEP 3.0.
58 ;; You can support the RCS -x option by customizing vc-rcs-master-templates.
60 ;; Proper function of the SCCS diff commands requires the shellscript vcdiff
61 ;; to be installed somewhere on Emacs's path for executables.
63 ;; If your site uses the ChangeLog convention supported by Emacs, the
64 ;; function vc-comment-to-change-log should prove a useful checkin hook.
66 ;; The vc code maintains some internal state in order to reduce expensive
67 ;; version-control operations to a minimum. Some names are only computed
68 ;; once. If you perform version control operations with RCS/SCCS/CVS while
69 ;; vc's back is turned, or move/rename master files while vc is running,
70 ;; vc may get seriously confused. Don't do these things!
72 ;; Developer's notes on some concurrency issues are included at the end of
73 ;; the file.
75 ;; ADDING SUPPORT FOR OTHER BACKENDS
77 ;; VC can use arbitrary version control systems as a backend. To add
78 ;; support for a new backend named SYS, write a library vc-sys.el that
79 ;; contains functions of the form `vc-sys-...' (note that SYS is in lower
80 ;; case for the function and library names). VC will use that library if
81 ;; you put the symbol SYS somewhere into the list of
82 ;; `vc-handled-backends'. Then, for example, if `vc-sys-registered'
83 ;; returns non-nil for a file, all SYS-specific versions of VC commands
84 ;; will be available for that file.
86 ;; VC keeps some per-file information in the form of properties (see
87 ;; vc-file-set/getprop in vc-hooks.el). The backend-specific functions
88 ;; do not generally need to be aware of these properties. For example,
89 ;; `vc-sys-workfile-version' should compute the workfile version and
90 ;; return it; it should not look it up in the property, and it needn't
91 ;; store it there either. However, if a backend-specific function does
92 ;; store a value in a property, that value takes precedence over any
93 ;; value that the generic code might want to set (check for uses of
94 ;; the macro `with-vc-properties' in vc.el).
96 ;; In the list of functions below, each identifier needs to be prepended
97 ;; with `vc-sys-'. Some of the functions are mandatory (marked with a
98 ;; `*'), others are optional (`-').
100 ;; STATE-QUERYING FUNCTIONS
102 ;; * registered (file)
104 ;; Return non-nil if FILE is registered in this backend.
106 ;; * state (file)
108 ;; Return the current version control state of FILE. For a list of
109 ;; possible values, see `vc-state'. This function should do a full and
110 ;; reliable state computation; it is usually called immediately after
111 ;; C-x v v. If you want to use a faster heuristic when visiting a
112 ;; file, put that into `state-heuristic' below.
114 ;; - state-heuristic (file)
116 ;; If provided, this function is used to estimate the version control
117 ;; state of FILE at visiting time. It should be considerably faster
118 ;; than the implementation of `state'. For a list of possible values,
119 ;; see the doc string of `vc-state'.
121 ;; - dir-state (dir)
123 ;; If provided, this function is used to find the version control state
124 ;; of all files in DIR in a fast way. The function should not return
125 ;; anything, but rather store the files' states into the corresponding
126 ;; `vc-state' properties.
128 ;; * workfile-version (file)
130 ;; Return the current workfile version of FILE.
132 ;; - latest-on-branch-p (file)
134 ;; Return non-nil if the current workfile version of FILE is the latest
135 ;; on its branch. The default implementation always returns t, which
136 ;; means that working with non-current versions is not supported by
137 ;; default.
139 ;; * checkout-model (file)
141 ;; Indicate whether FILE needs to be "checked out" before it can be
142 ;; edited. See `vc-checkout-model' for a list of possible values.
144 ;; - workfile-unchanged-p (file)
146 ;; Return non-nil if FILE is unchanged from its current workfile
147 ;; version. This function should do a brief comparison of FILE's
148 ;; contents with those of the master version. If the backend does not
149 ;; have such a brief-comparison feature, the default implementation of
150 ;; this function can be used, which delegates to a full
151 ;; vc-BACKEND-diff. (Note that vc-BACKEND-diff must not run
152 ;; asynchronously in this case.)
154 ;; - mode-line-string (file)
156 ;; If provided, this function should return the VC-specific mode line
157 ;; string for FILE. The default implementation deals well with all
158 ;; states that `vc-state' can return.
160 ;; - dired-state-info (file)
162 ;; Translate the `vc-state' property of FILE into a string that can be
163 ;; used in a vc-dired buffer. The default implementation deals well
164 ;; with all states that `vc-state' can return.
166 ;; STATE-CHANGING FUNCTIONS
168 ;; * register (file &optional rev comment)
170 ;; Register FILE in this backend. Optionally, an initial revision REV
171 ;; and an initial description of the file, COMMENT, may be specified.
172 ;; The implementation should pass the value of vc-register-switches
173 ;; to the backend command.
175 ;; - init-version (file)
177 ;; The initial version to use when registering FILE if one is not
178 ;; specified by the user. If not provided, the variable
179 ;; vc-default-init-version is used instead.
181 ;; - responsible-p (file)
183 ;; Return non-nil if this backend considers itself "responsible" for
184 ;; FILE, which can also be a directory. This function is used to find
185 ;; out what backend to use for registration of new files and for things
186 ;; like change log generation. The default implementation always
187 ;; returns nil.
189 ;; - could-register (file)
191 ;; Return non-nil if FILE could be registered under this backend. The
192 ;; default implementation always returns t.
194 ;; - receive-file (file rev)
196 ;; Let this backend "receive" a file that is already registered under
197 ;; another backend. The default implementation simply calls `register'
198 ;; for FILE, but it can be overridden to do something more specific,
199 ;; e.g. keep revision numbers consistent or choose editing modes for
200 ;; FILE that resemble those of the other backend.
202 ;; - unregister (file)
204 ;; Unregister FILE from this backend. This is only needed if this
205 ;; backend may be used as a "more local" backend for temporary editing.
207 ;; * checkin (file rev comment)
209 ;; Commit changes in FILE to this backend. If REV is non-nil, that
210 ;; should become the new revision number. COMMENT is used as a
211 ;; check-in comment. The implementation should pass the value of
212 ;; vc-checkin-switches to the backend command.
214 ;; * checkout (file &optional editable rev destfile)
216 ;; Check out revision REV of FILE into the working area. If EDITABLE
217 ;; is non-nil, FILE should be writable by the user and if locking is
218 ;; used for FILE, a lock should also be set. If REV is non-nil, that
219 ;; is the revision to check out (default is current workfile version);
220 ;; if REV is the empty string, that means to check out the head of the
221 ;; trunk. If optional arg DESTFILE is given, it is an alternate
222 ;; filename to write the contents to. The implementation should
223 ;; pass the value of vc-checkout-switches to the backend command.
225 ;; * revert (file &optional contents-done)
227 ;; Revert FILE back to the current workfile version. If optional
228 ;; arg CONTENTS-DONE is non-nil, then the contents of FILE have
229 ;; already been reverted from a version backup, and this function
230 ;; only needs to update the status of FILE within the backend.
232 ;; - cancel-version (file editable)
234 ;; Cancel the current workfile version of FILE, i.e. remove it from the
235 ;; master. EDITABLE non-nil means that FILE should be writable
236 ;; afterwards, and if locking is used for FILE, then a lock should also
237 ;; be set. If this function is not provided, trying to cancel a
238 ;; version is caught as an error.
240 ;; - merge (file rev1 rev2)
242 ;; Merge the changes between REV1 and REV2 into the current working file.
244 ;; - merge-news (file)
246 ;; Merge recent changes from the current branch into FILE.
248 ;; - steal-lock (file &optional version)
250 ;; Steal any lock on the current workfile version of FILE, or on
251 ;; VERSION if that is provided. This function is only needed if
252 ;; locking is used for files under this backend, and if files can
253 ;; indeed be locked by other users.
255 ;; HISTORY FUNCTIONS
257 ;; * print-log (file)
259 ;; Insert the revision log of FILE into the *vc* buffer.
261 ;; - show-log-entry (version)
263 ;; If provided, search the log entry for VERSION in the current buffer,
264 ;; and make sure it is displayed in the buffer's window. The default
265 ;; implementation of this function works for RCS-style logs.
267 ;; - wash-log (file)
269 ;; Remove all non-comment information from the output of print-log. The
270 ;; default implementation of this function works for RCS-style logs.
272 ;; - logentry-check ()
274 ;; If defined, this function is run to find out whether the user
275 ;; entered a valid log entry for check-in. The log entry is in the
276 ;; current buffer, and if it is not a valid one, the function should
277 ;; throw an error.
279 ;; - comment-history (file)
281 ;; Return a string containing all log entries that were made for FILE.
282 ;; This is used for transferring a file from one backend to another,
283 ;; retaining comment information. The default implementation of this
284 ;; function does this by calling print-log and then wash-log, and
285 ;; returning the resulting buffer contents as a string.
287 ;; - update-changelog (files)
289 ;; Using recent log entries, create ChangeLog entries for FILES, or for
290 ;; all files at or below the default-directory if FILES is nil. The
291 ;; default implementation runs rcs2log, which handles RCS- and
292 ;; CVS-style logs.
294 ;; * diff (file &optional rev1 rev2)
296 ;; Insert the diff for FILE into the *vc-diff* buffer. If REV1 and
297 ;; REV2 are non-nil, report differences from REV1 to REV2. If REV1
298 ;; is nil, use the current workfile version (as found in the
299 ;; repository) as the older version; if REV2 is nil, use the current
300 ;; workfile contents as the newer version. This function should
301 ;; pass the value of (vc-diff-switches-list BACKEND) to the backend
302 ;; command. It should return a status of either 0 (no differences
303 ;; found), or 1 (either non-empty diff or the diff is run
304 ;; asynchronously).
306 ;; - diff-tree (dir &optional rev1 rev2)
308 ;; Insert the diff for all files at and below DIR into the *vc-diff*
309 ;; buffer. The meaning of REV1 and REV2 is the same as for
310 ;; vc-BACKEND-diff. The default implementation does an explicit tree
311 ;; walk, calling vc-BACKEND-diff for each individual file.
313 ;; - annotate-command (file buf rev)
315 ;; If this function is provided, it should produce an annotated version
316 ;; of FILE in BUF, relative to version REV. This is currently only
317 ;; implemented for CVS, using the `cvs annotate' command.
319 ;; - annotate-time ()
321 ;; Only required if `annotate-command' is defined for the backend.
322 ;; Return the time of the next line of annotation at or after point,
323 ;; as a floating point fractional number of days. The helper
324 ;; function `vc-annotate-convert-time' may be useful for converting
325 ;; multi-part times as returned by `current-time' and `encode-time'
326 ;; to this format. Return nil if no more lines of annotation appear
327 ;; in the buffer. You can safely assume that point is placed at the
328 ;; beginning of each line, starting at `point-min'. The buffer that
329 ;; point is placed in is the Annotate output, as defined by the
330 ;; relevant backend.
332 ;; - annotate-current-time ()
334 ;; Only required if `annotate-command' is defined for the backend,
335 ;; AND you'd like the current time considered to be anything besides
336 ;; (vs-annotate-convert-time (current-time)) -- i.e. the current
337 ;; time with hours, minutes, and seconds included. Probably safe to
338 ;; ignore. Return the current-time, in units of fractional days.
340 ;; SNAPSHOT SYSTEM
342 ;; - create-snapshot (dir name branchp)
344 ;; Take a snapshot of the current state of files under DIR and name it
345 ;; NAME. This should make sure that files are up-to-date before
346 ;; proceeding with the action. DIR can also be a file and if BRANCHP
347 ;; is specified, NAME should be created as a branch and DIR should be
348 ;; checked out under this new branch. The default implementation does
349 ;; not support branches but does a sanity check, a tree traversal and
350 ;; for each file calls `assign-name'.
352 ;; - assign-name (file name)
354 ;; Give name NAME to the current version of FILE, assuming it is
355 ;; up-to-date. Only used by the default version of `create-snapshot'.
357 ;; - retrieve-snapshot (dir name update)
359 ;; Retrieve a named snapshot of all registered files at or below DIR.
360 ;; If UPDATE is non-nil, then update buffers of any files in the
361 ;; snapshot that are currently visited. The default implementation
362 ;; does a sanity check whether there aren't any uncommitted changes at
363 ;; or below DIR, and then performs a tree walk, using the `checkout'
364 ;; function to retrieve the corresponding versions.
366 ;; MISCELLANEOUS
368 ;; - make-version-backups-p (file)
370 ;; Return non-nil if unmodified repository versions of FILE should be
371 ;; backed up locally. If this is done, VC can perform `diff' and
372 ;; `revert' operations itself, without calling the backend system. The
373 ;; default implementation always returns nil.
375 ;; - previous-version (file rev)
377 ;; Return the version number that precedes REV for FILE.
379 ;; - check-headers ()
381 ;; Return non-nil if the current buffer contains any version headers.
383 ;; - clear-headers ()
385 ;; In the current buffer, reset all version headers to their unexpanded
386 ;; form. This function should be provided if the state-querying code
387 ;; for this backend uses the version headers to determine the state of
388 ;; a file. This function will then be called whenever VC changes the
389 ;; version control state in such a way that the headers would give
390 ;; wrong information.
392 ;; - rename-file (old new)
394 ;; Rename file OLD to NEW, both in the working area and in the
395 ;; repository. If this function is not provided, the command
396 ;; `vc-rename-file' will signal an error.
398 ;;; Code:
400 (require 'vc-hooks)
401 (require 'ring)
402 (eval-when-compile
403 (require 'cl)
404 (require 'compile)
405 (require 'dired) ; for dired-map-over-marks macro
406 (require 'dired-aux)) ; for dired-kill-{line,tree}
408 (if (not (assoc 'vc-parent-buffer minor-mode-alist))
409 (setq minor-mode-alist
410 (cons '(vc-parent-buffer vc-parent-buffer-name)
411 minor-mode-alist)))
413 ;; General customization
415 (defgroup vc nil
416 "Version-control system in Emacs."
417 :group 'tools)
419 (defcustom vc-suppress-confirm nil
420 "*If non-nil, treat user as expert; suppress yes-no prompts on some things."
421 :type 'boolean
422 :group 'vc)
424 (defcustom vc-delete-logbuf-window t
425 "*If non-nil, delete the *VC-log* buffer and window after each logical action.
426 If nil, bury that buffer instead.
427 This is most useful if you have multiple windows on a frame and would like to
428 preserve the setting."
429 :type 'boolean
430 :group 'vc)
432 (defcustom vc-initial-comment nil
433 "*If non-nil, prompt for initial comment when a file is registered."
434 :type 'boolean
435 :group 'vc)
437 (defcustom vc-default-init-version "1.1"
438 "*A string used as the default version number when a new file is registered.
439 This can be overridden by giving a prefix argument to \\[vc-register]. This
440 can also be overridden by a particular VC backend."
441 :type 'string
442 :group 'vc
443 :version "20.3")
445 (defcustom vc-command-messages nil
446 "*If non-nil, display run messages from back-end commands."
447 :type 'boolean
448 :group 'vc)
450 (defcustom vc-checkin-switches nil
451 "*A string or list of strings specifying extra switches for checkin.
452 These are passed to the checkin program by \\[vc-checkin]."
453 :type '(choice (const :tag "None" nil)
454 (string :tag "Argument String")
455 (repeat :tag "Argument List"
456 :value ("")
457 string))
458 :group 'vc)
460 (defcustom vc-checkout-switches nil
461 "*A string or list of strings specifying extra switches for checkout.
462 These are passed to the checkout program by \\[vc-checkout]."
463 :type '(choice (const :tag "None" nil)
464 (string :tag "Argument String")
465 (repeat :tag "Argument List"
466 :value ("")
467 string))
468 :group 'vc)
470 (defcustom vc-register-switches nil
471 "*A string or list of strings; extra switches for registering a file.
472 These are passed to the checkin program by \\[vc-register]."
473 :type '(choice (const :tag "None" nil)
474 (string :tag "Argument String")
475 (repeat :tag "Argument List"
476 :value ("")
477 string))
478 :group 'vc)
480 (defcustom vc-dired-listing-switches "-al"
481 "*Switches passed to `ls' for vc-dired. MUST contain the `l' option."
482 :type 'string
483 :group 'vc
484 :version "21.1")
486 (defcustom vc-dired-recurse t
487 "*If non-nil, show directory trees recursively in VC Dired."
488 :type 'boolean
489 :group 'vc
490 :version "20.3")
492 (defcustom vc-dired-terse-display t
493 "*If non-nil, show only locked files in VC Dired."
494 :type 'boolean
495 :group 'vc
496 :version "20.3")
498 (defcustom vc-directory-exclusion-list '("SCCS" "RCS" "CVS")
499 "*List of directory names to be ignored when walking directory trees."
500 :type '(repeat string)
501 :group 'vc)
503 (defconst vc-maximum-comment-ring-size 32
504 "Maximum number of saved comments in the comment ring.")
506 (defcustom vc-diff-switches nil
507 "*A string or list of strings specifying switches for diff under VC.
508 When running diff under a given BACKEND, VC concatenates the values of
509 `diff-switches', `vc-diff-switches', and `vc-BACKEND-diff-switches' to
510 get the switches for that command. Thus, `vc-diff-switches' should
511 contain switches that are specific to version control, but not
512 specific to any particular backend."
513 :type '(choice (const :tag "None" nil)
514 (string :tag "Argument String")
515 (repeat :tag "Argument List"
516 :value ("")
517 string))
518 :group 'vc
519 :version "21.1")
521 ;;;###autoload
522 (defcustom vc-checkout-hook nil
523 "*Normal hook (list of functions) run after checking out a file.
524 See `run-hooks'."
525 :type 'hook
526 :group 'vc
527 :version "21.1")
529 (defcustom vc-annotate-display-mode nil
530 "Which mode to color the output of \\[vc-annotate] with by default."
531 :type '(choice (const :tag "Default" nil)
532 (const :tag "Scale to Oldest" scale)
533 (const :tag "Scale Oldest->Newest" fullscale)
534 (number :tag "Specify Fractional Number of Days"
535 :value "20.5"))
536 :group 'vc)
538 ;;;###autoload
539 (defcustom vc-checkin-hook nil
540 "*Normal hook (list of functions) run after a checkin is done.
541 See `run-hooks'."
542 :type 'hook
543 :options '(vc-comment-to-change-log)
544 :group 'vc)
546 ;;;###autoload
547 (defcustom vc-before-checkin-hook nil
548 "*Normal hook (list of functions) run before a file is checked in.
549 See `run-hooks'."
550 :type 'hook
551 :group 'vc)
553 (defcustom vc-logentry-check-hook nil
554 "*Normal hook run by `vc-backend-logentry-check'.
555 Use this to impose your own rules on the entry in addition to any the
556 version control backend imposes itself."
557 :type 'hook
558 :group 'vc)
560 ;; Annotate customization
561 (defcustom vc-annotate-color-map
562 '(( 20. . "#FF0000")
563 ( 40. . "#FF3800")
564 ( 60. . "#FF7000")
565 ( 80. . "#FFA800")
566 (100. . "#FFE000")
567 (120. . "#E7FF00")
568 (140. . "#AFFF00")
569 (160. . "#77FF00")
570 (180. . "#3FFF00")
571 (200. . "#07FF00")
572 (220. . "#00FF31")
573 (240. . "#00FF69")
574 (260. . "#00FFA1")
575 (280. . "#00FFD9")
576 (300. . "#00EEFF")
577 (320. . "#00B6FF")
578 (340. . "#007EFF"))
579 "*Association list of age versus color, for \\[vc-annotate].
580 Ages are given in units of fractional days. Default is eighteen steps
581 using a twenty day increment."
582 :type 'alist
583 :group 'vc)
585 (defcustom vc-annotate-very-old-color "#0046FF"
586 "*Color for lines older than the current color range in \\[vc-annotate]]."
587 :type 'string
588 :group 'vc)
590 (defcustom vc-annotate-background "black"
591 "*Background color for \\[vc-annotate].
592 Default color is used if nil."
593 :type 'string
594 :group 'vc)
596 (defcustom vc-annotate-menu-elements '(2 0.5 0.1 0.01)
597 "*Menu elements for the mode-specific menu of VC-Annotate mode.
598 List of factors, used to expand/compress the time scale. See `vc-annotate'."
599 :type '(repeat number)
600 :group 'vc)
602 ;; vc-annotate functionality (CVS only).
603 (defvar vc-annotate-mode nil
604 "Variable indicating if VC-Annotate mode is active.")
606 (defvar vc-annotate-mode-map
607 (let ((m (make-sparse-keymap)))
608 (define-key m [menu-bar] (make-sparse-keymap "VC-Annotate"))
610 "Local keymap used for VC-Annotate mode.")
612 (defvar vc-annotate-mode-menu nil
613 "Local keymap used for VC-Annotate mode's menu bar menu.")
615 ;; Header-insertion hair
617 (defcustom vc-static-header-alist
618 '(("\\.c$" .
619 "\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n#endif /* lint */\n"))
620 "*Associate static header string templates with file types.
621 A \%s in the template is replaced with the first string associated with
622 the file's version control type in `vc-header-alist'."
623 :type '(repeat (cons :format "%v"
624 (regexp :tag "File Type")
625 (string :tag "Header String")))
626 :group 'vc)
628 (defcustom vc-comment-alist
629 '((nroff-mode ".\\\"" ""))
630 "*Special comment delimiters for generating VC headers.
631 Add an entry in this list if you need to override the normal `comment-start'
632 and `comment-end' variables. This will only be necessary if the mode language
633 is sensitive to blank lines."
634 :type '(repeat (list :format "%v"
635 (symbol :tag "Mode")
636 (string :tag "Comment Start")
637 (string :tag "Comment End")))
638 :group 'vc)
640 (defcustom vc-checkout-carefully (= (user-uid) 0)
641 "*This variable is obsolete
642 The corresponding checks are always done now.
643 From the old doc string:
645 Non-nil means be extra-careful in checkout.
646 Verify that the file really is not locked
647 and that its contents match what the master file says."
648 :type 'boolean
649 :group 'vc)
652 ;; The main keymap
654 ;; Initialization code, to be done just once at load-time
655 (defvar vc-log-mode-map
656 (let ((map (make-sparse-keymap)))
657 (define-key map "\M-n" 'vc-next-comment)
658 (define-key map "\M-p" 'vc-previous-comment)
659 (define-key map "\M-r" 'vc-comment-search-reverse)
660 (define-key map "\M-s" 'vc-comment-search-forward)
661 (define-key map "\C-c\C-c" 'vc-finish-logentry)
662 map))
663 ;; Compatibility with old name. Should we bother ?
664 (defvar vc-log-entry-mode vc-log-mode-map)
667 ;; Variables the user doesn't need to know about.
668 (defvar vc-log-operation nil)
669 (defvar vc-log-after-operation-hook nil)
670 (defvar vc-annotate-buffers nil
671 "Alist of current \"Annotate\" buffers and their corresponding backends.
672 The keys are \(BUFFER . BACKEND\). See also `vc-annotate-get-backend'.")
673 ;; In a log entry buffer, this is a local variable
674 ;; that points to the buffer for which it was made
675 ;; (either a file, or a VC dired buffer).
676 (defvar vc-parent-buffer nil)
677 (put 'vc-parent-buffer 'permanent-local t)
678 (defvar vc-parent-buffer-name nil)
679 (put 'vc-parent-buffer-name 'permanent-local t)
681 (defvar vc-log-file)
682 (defvar vc-log-version)
684 (defvar vc-dired-mode nil)
685 (make-variable-buffer-local 'vc-dired-mode)
687 (defvar vc-comment-ring (make-ring vc-maximum-comment-ring-size))
688 (defvar vc-comment-ring-index nil)
689 (defvar vc-last-comment-match "")
691 ;; functions that operate on RCS revision numbers. This code should
692 ;; also be moved into the backends. It stays for now, however, since
693 ;; it is used in code below.
694 (defun vc-trunk-p (rev)
695 "Return t if REV is a revision on the trunk."
696 (not (eq nil (string-match "\\`[0-9]+\\.[0-9]+\\'" rev))))
698 (defun vc-branch-p (rev)
699 "Return t if REV is a branch revision."
700 (not (eq nil (string-match "\\`[0-9]+\\(\\.[0-9]+\\.[0-9]+\\)*\\'" rev))))
702 ;;;###autoload
703 (defun vc-branch-part (rev)
704 "Return the branch part of a revision number REV."
705 (let ((index (string-match "\\.[0-9]+\\'" rev)))
706 (if index
707 (substring rev 0 index))))
709 (defun vc-minor-part (rev)
710 "Return the minor version number of a revision number REV."
711 (string-match "[0-9]+\\'" rev)
712 (substring rev (match-beginning 0) (match-end 0)))
714 (defun vc-default-previous-version (backend file rev)
715 "Guess the version number immediately preceding REV for FILE.
716 This default implementation works for <major>.<minor>-style version numbers
717 as used by RCS and CVS."
718 (let ((branch (vc-branch-part rev))
719 (minor-num (string-to-number (vc-minor-part rev))))
720 (when branch
721 (if (> minor-num 1)
722 ;; version does probably not start a branch or release
723 (concat branch "." (number-to-string (1- minor-num)))
724 (if (vc-trunk-p rev)
725 ;; we are at the beginning of the trunk --
726 ;; don't know anything to return here
728 ;; we are at the beginning of a branch --
729 ;; return version of starting point
730 (vc-branch-part branch))))))
732 ;; File property caching
734 (defun vc-clear-context ()
735 "Clear all cached file properties and the comment ring."
736 (interactive)
737 (fillarray vc-file-prop-obarray 0)
738 ;; Note: there is potential for minor lossage here if there is an open
739 ;; log buffer with a nonzero local value of vc-comment-ring-index.
740 (setq vc-comment-ring (make-ring vc-maximum-comment-ring-size)))
742 (defmacro with-vc-properties (file form settings)
743 "Execute FORM, then maybe set per-file properties for FILE.
744 SETTINGS is an association list of property/value pairs. After
745 executing FORM, set those properties from SETTINGS that have not yet
746 been updated to their corresponding values."
747 `(let ((vc-touched-properties (list t)))
748 ,form
749 (mapcar (lambda (setting)
750 (let ((property (car setting)))
751 (unless (memq property vc-touched-properties)
752 (put (intern ,file vc-file-prop-obarray)
753 property (cdr setting)))))
754 ,settings)))
756 ;; Random helper functions
758 (defsubst vc-editable-p (file)
759 "Return non-nil if FILE can be edited."
760 (or (eq (vc-checkout-model file) 'implicit)
761 (memq (vc-state file) '(edited needs-merge))))
763 ;; Two macros for elisp programming
764 ;;;###autoload
765 (defmacro with-vc-file (file comment &rest body)
766 "Check out a writable copy of FILE if necessary, then execute BODY.
767 Check in FILE with COMMENT (a string) after BODY has been executed.
768 FILE is passed through `expand-file-name'; BODY executed within
769 `save-excursion'. If FILE is not under version control, or locked by
770 somebody else, signal error."
771 (let ((filevar (make-symbol "file")))
772 `(let ((,filevar (expand-file-name ,file)))
773 (or (vc-backend ,filevar)
774 (error (format "File not under version control: `%s'" file)))
775 (unless (vc-editable-p ,filevar)
776 (let ((state (vc-state ,filevar)))
777 (if (stringp state)
778 (error (format "`%s' is locking `%s'" state ,filevar))
779 (vc-checkout ,filevar t))))
780 (save-excursion
781 ,@body)
782 (vc-checkin ,filevar nil ,comment))))
784 (put 'with-vc-file 'lisp-indent-function 2)
786 ;;;###autoload
787 (defmacro edit-vc-file (file comment &rest body)
788 "Edit FILE under version control, executing body.
789 Checkin with COMMENT after executing BODY.
790 This macro uses `with-vc-file', passing args to it.
791 However, before executing BODY, find FILE, and after BODY, save buffer."
792 (let ((filevar (make-symbol "file")))
793 `(let ((,filevar (expand-file-name ,file)))
794 (with-vc-file
795 ,filevar ,comment
796 (set-buffer (find-file-noselect ,filevar))
797 ,@body
798 (save-buffer)))))
800 (put 'edit-vc-file 'lisp-indent-function 2)
802 (defun vc-ensure-vc-buffer ()
803 "Make sure that the current buffer visits a version-controlled file."
804 (if vc-dired-mode
805 (set-buffer (find-file-noselect (dired-get-filename)))
806 (while vc-parent-buffer
807 (pop-to-buffer vc-parent-buffer))
808 (if (not (buffer-file-name))
809 (error "Buffer %s is not associated with a file" (buffer-name))
810 (if (not (vc-backend (buffer-file-name)))
811 (error "File %s is not under version control" (buffer-file-name))))))
813 (defvar vc-binary-assoc nil)
814 (defvar vc-binary-suffixes
815 (if (memq system-type '(ms-dos windows-nt))
816 '(".exe" ".com" ".bat" ".cmd" ".btm" "")
817 '("")))
819 (defun vc-process-filter (p s)
820 "An alternative output filter for async process P.
821 The only difference with the default filter is to insert S after markers."
822 (with-current-buffer (process-buffer p)
823 (save-excursion
824 (let ((inhibit-read-only t))
825 (goto-char (process-mark p))
826 (insert s)
827 (set-marker (process-mark p) (point))))))
829 (defun vc-setup-buffer (&optional buf)
830 "Prepare BUF for executing a VC command and make it current.
831 BUF defaults to \"*vc*\", can be a string and will be created if necessary."
832 (unless buf (setq buf "*vc*"))
833 (let ((camefrom (current-buffer))
834 (olddir default-directory))
835 (set-buffer (get-buffer-create buf))
836 (kill-all-local-variables)
837 (set (make-local-variable 'vc-parent-buffer) camefrom)
838 (set (make-local-variable 'vc-parent-buffer-name)
839 (concat " from " (buffer-name camefrom)))
840 (setq default-directory olddir)
841 (let ((inhibit-read-only t))
842 (erase-buffer))))
844 (defun vc-exec-after (code)
845 "Eval CODE when the current buffer's process is done.
846 If the current buffer has no process, just evaluate CODE.
847 Else, add CODE to the process' sentinel."
848 (let ((proc (get-buffer-process (current-buffer))))
849 (cond
850 ;; If there's no background process, just execute the code.
851 ((null proc) (eval code))
852 ;; If the background process has exited, reap it and try again
853 ((eq (process-status proc) 'exit)
854 (delete-process proc)
855 (vc-exec-after code))
856 ;; If a process is running, add CODE to the sentinel
857 ((eq (process-status proc) 'run)
858 (let ((sentinel (process-sentinel proc)))
859 (set-process-sentinel proc
860 `(lambda (p s)
861 (with-current-buffer ',(current-buffer)
862 (goto-char (process-mark p))
863 ,@(append (cdr (cdr (cdr ;strip off `with-current-buffer buf
864 ; (goto-char...)'
865 (car (cdr (cdr ;strip off `lambda (p s)'
866 sentinel))))))
867 (list `(vc-exec-after ',code))))))))
868 (t (error "Unexpected process state"))))
869 nil)
871 (defvar vc-post-command-functions nil
872 "Hook run at the end of `vc-do-command'.
873 Each function is called inside the buffer in which the command was run
874 and is passed 3 arguments: the COMMAND, the FILE and the FLAGS.")
876 ;;;###autoload
877 (defun vc-do-command (buffer okstatus command file &rest flags)
878 "Execute a VC command, notifying user and checking for errors.
879 Output from COMMAND goes to BUFFER, or *vc* if BUFFER is nil or the
880 current buffer if BUFFER is t. If the destination buffer is not
881 already current, set it up properly and erase it. The command is
882 considered successful if its exit status does not exceed OKSTATUS (if
883 OKSTATUS is nil, that means to ignore errors, if it is 'async, that
884 means not to wait for termination of the subprocess). FILE is the
885 name of the working file (may also be nil, to execute commands that
886 don't expect a file name). If an optional list of FLAGS is present,
887 that is inserted into the command line before the filename."
888 (and file (setq file (expand-file-name file)))
889 (if vc-command-messages
890 (message "Running %s on %s..." command file))
891 (save-current-buffer
892 (unless (or (eq buffer t)
893 (and (stringp buffer)
894 (string= (buffer-name) buffer))
895 (eq buffer (current-buffer)))
896 (vc-setup-buffer buffer))
897 (let ((squeezed nil)
898 (inhibit-read-only t)
899 (status 0))
900 (setq squeezed (delq nil (copy-sequence flags)))
901 (when file
902 ;; FIXME: file-relative-name can return a bogus result because
903 ;; it doesn't look at the actual file-system to see if symlinks
904 ;; come into play.
905 (setq squeezed (append squeezed (list (file-relative-name file)))))
906 (let ((exec-path (append vc-path exec-path))
907 ;; Add vc-path to PATH for the execution of this command.
908 (process-environment
909 (cons (concat "PATH=" (getenv "PATH")
910 path-separator
911 (mapconcat 'identity vc-path path-separator))
912 process-environment))
913 (w32-quote-process-args t))
914 (if (eq okstatus 'async)
915 (let ((proc (apply 'start-process command (current-buffer) command
916 squeezed)))
917 (unless (active-minibuffer-window)
918 (message "Running %s in the background..." command))
919 ;;(set-process-sentinel proc (lambda (p msg) (delete-process p)))
920 (set-process-filter proc 'vc-process-filter)
921 (vc-exec-after
922 `(unless (active-minibuffer-window)
923 (message "Running %s in the background... done" ',command))))
924 (setq status (apply 'call-process command nil t nil squeezed))
925 (when (or (not (integerp status)) (and okstatus (< okstatus status)))
926 (pop-to-buffer (current-buffer))
927 (goto-char (point-min))
928 (shrink-window-if-larger-than-buffer)
929 (error "Running %s...FAILED (%s)" command
930 (if (integerp status) (format "status %d" status) status))))
931 (if vc-command-messages
932 (message "Running %s...OK" command)))
933 (vc-exec-after
934 `(run-hook-with-args 'vc-post-command-functions ',command ',file ',flags))
935 status)))
937 (defun vc-position-context (posn)
938 "Save a bit of the text around POSN in the current buffer.
939 Used to help us find the corresponding position again later
940 if markers are destroyed or corrupted."
941 ;; A lot of this was shamelessly lifted from Sebastian Kremer's
942 ;; rcs.el mode.
943 (list posn
944 (buffer-size)
945 (buffer-substring posn
946 (min (point-max) (+ posn 100)))))
948 (defun vc-find-position-by-context (context)
949 "Return the position of CONTEXT in the current buffer.
950 If CONTEXT cannot be found, return nil."
951 (let ((context-string (nth 2 context)))
952 (if (equal "" context-string)
953 (point-max)
954 (save-excursion
955 (let ((diff (- (nth 1 context) (buffer-size))))
956 (if (< diff 0) (setq diff (- diff)))
957 (goto-char (nth 0 context))
958 (if (or (search-forward context-string nil t)
959 ;; Can't use search-backward since the match may continue
960 ;; after point.
961 (progn (goto-char (- (point) diff (length context-string)))
962 ;; goto-char doesn't signal an error at
963 ;; beginning of buffer like backward-char would
964 (search-forward context-string nil t)))
965 ;; to beginning of OSTRING
966 (- (point) (length context-string))))))))
968 (defun vc-context-matches-p (posn context)
969 "Return t if POSN matches CONTEXT, nil otherwise."
970 (let* ((context-string (nth 2 context))
971 (len (length context-string))
972 (end (+ posn len)))
973 (if (> end (1+ (buffer-size)))
975 (string= context-string (buffer-substring posn end)))))
977 (defun vc-buffer-context ()
978 "Return a list (POINT-CONTEXT MARK-CONTEXT REPARSE).
979 Used by `vc-restore-buffer-context' to later restore the context."
980 (let ((point-context (vc-position-context (point)))
981 ;; Use mark-marker to avoid confusion in transient-mark-mode.
982 (mark-context (if (eq (marker-buffer (mark-marker)) (current-buffer))
983 (vc-position-context (mark-marker))))
984 ;; Make the right thing happen in transient-mark-mode.
985 (mark-active nil)
986 ;; We may want to reparse the compilation buffer after revert
987 (reparse (and (boundp 'compilation-error-list) ;compile loaded
988 (let ((curbuf (current-buffer)))
989 ;; Construct a list; each elt is nil or a buffer
990 ;; iff that buffer is a compilation output buffer
991 ;; that contains markers into the current buffer.
992 (save-excursion
993 (mapcar (lambda (buffer)
994 (set-buffer buffer)
995 (let ((errors (or
996 compilation-old-error-list
997 compilation-error-list))
998 (buffer-error-marked-p nil))
999 (while (and (consp errors)
1000 (not buffer-error-marked-p))
1001 (and (markerp (cdr (car errors)))
1002 (eq buffer
1003 (marker-buffer
1004 (cdr (car errors))))
1005 (setq buffer-error-marked-p t))
1006 (setq errors (cdr errors)))
1007 (if buffer-error-marked-p buffer)))
1008 (buffer-list)))))))
1009 (list point-context mark-context reparse)))
1011 (defun vc-restore-buffer-context (context)
1012 "Restore point/mark, and reparse any affected compilation buffers.
1013 CONTEXT is that which `vc-buffer-context' returns."
1014 (let ((point-context (nth 0 context))
1015 (mark-context (nth 1 context))
1016 (reparse (nth 2 context)))
1017 ;; Reparse affected compilation buffers.
1018 (while reparse
1019 (if (car reparse)
1020 (with-current-buffer (car reparse)
1021 (let ((compilation-last-buffer (current-buffer)) ;select buffer
1022 ;; Record the position in the compilation buffer of
1023 ;; the last error next-error went to.
1024 (error-pos (marker-position
1025 (car (car-safe compilation-error-list)))))
1026 ;; Reparse the error messages as far as they were parsed before.
1027 (compile-reinitialize-errors '(4) compilation-parsing-end)
1028 ;; Move the pointer up to find the error we were at before
1029 ;; reparsing. Now next-error should properly go to the next one.
1030 (while (and compilation-error-list
1031 (/= error-pos (car (car compilation-error-list))))
1032 (setq compilation-error-list (cdr compilation-error-list))))))
1033 (setq reparse (cdr reparse)))
1035 ;; if necessary, restore point and mark
1036 (if (not (vc-context-matches-p (point) point-context))
1037 (let ((new-point (vc-find-position-by-context point-context)))
1038 (if new-point (goto-char new-point))))
1039 (and mark-active
1040 mark-context
1041 (not (vc-context-matches-p (mark) mark-context))
1042 (let ((new-mark (vc-find-position-by-context mark-context)))
1043 (if new-mark (set-mark new-mark))))))
1045 (defun vc-revert-buffer1 (&optional arg no-confirm)
1046 "Revert buffer, keeping point and mark where user expects them.
1047 Try to be clever in the face of changes due to expanded version control
1048 key words. This is important for typeahead to work as expected.
1049 ARG and NO-CONFIRM are passed on to `revert-buffer'."
1050 (interactive "P")
1051 (widen)
1052 (let ((context (vc-buffer-context)))
1053 ;; Use save-excursion here, because it may be able to restore point
1054 ;; and mark properly even in cases where vc-restore-buffer-context
1055 ;; would fail. However, save-excursion might also get it wrong --
1056 ;; in this case, vc-restore-buffer-context gives it a second try.
1057 (save-excursion
1058 ;; t means don't call normal-mode;
1059 ;; that's to preserve various minor modes.
1060 (revert-buffer arg no-confirm t))
1061 (vc-restore-buffer-context context)))
1064 (defun vc-buffer-sync (&optional not-urgent)
1065 "Make sure the current buffer and its working file are in sync.
1066 NOT-URGENT means it is ok to continue if the user says not to save."
1067 (if (buffer-modified-p)
1068 (if (or vc-suppress-confirm
1069 (y-or-n-p (format "Buffer %s modified; save it? " (buffer-name))))
1070 (save-buffer)
1071 (unless not-urgent
1072 (error "Aborted")))))
1074 (defun vc-default-latest-on-branch-p (backend file)
1075 "Return non-nil if FILE is the latest on its branch.
1076 This default implementation always returns non-nil, which means that
1077 editing non-current versions is not supported by default."
1080 (defun vc-recompute-state (file)
1081 "Force a recomputation of the version control state of FILE.
1082 The state is computed using the exact, and possibly expensive
1083 function `vc-BACKEND-state', not the heuristic."
1084 (vc-file-setprop file 'vc-state (vc-call state file)))
1086 (defun vc-next-action-on-file (file verbose &optional comment)
1087 "Do The Right Thing for a given FILE under version control.
1088 If COMMENT is specified, it will be used as an admin or checkin comment.
1089 If VERBOSE is non-nil, query the user rather than using default parameters."
1090 (let ((visited (get-file-buffer file))
1091 state version)
1092 (when visited
1093 (if vc-dired-mode
1094 (switch-to-buffer-other-window visited)
1095 (set-buffer visited))
1096 ;; Check relation of buffer and file, and make sure
1097 ;; user knows what he's doing. First, finding the file
1098 ;; will check whether the file on disk is newer.
1099 ;; Ignore buffer-read-only during this test, and
1100 ;; preserve find-file-literally.
1101 (let ((buffer-read-only (not (file-writable-p file))))
1102 (find-file-noselect file nil find-file-literally))
1103 (if (not (verify-visited-file-modtime (current-buffer)))
1104 (if (yes-or-no-p "Replace file on disk with buffer contents? ")
1105 (write-file (buffer-file-name))
1106 (error "Aborted"))
1107 ;; Now, check if we have unsaved changes.
1108 (vc-buffer-sync t)
1109 (if (buffer-modified-p)
1110 (or (y-or-n-p "Operate on disk file, keeping modified buffer? ")
1111 (error "Aborted")))))
1113 ;; Do the right thing
1114 (if (not (vc-registered file))
1115 (vc-register verbose comment)
1116 (vc-recompute-state file)
1117 (if visited (vc-mode-line file))
1118 (setq state (vc-state file))
1119 (cond
1120 ;; up-to-date
1121 ((or (eq state 'up-to-date)
1122 (and verbose (eq state 'needs-patch)))
1123 (cond
1124 (verbose
1125 ;; go to a different version
1126 (setq version
1127 (read-string "Branch, version, or backend to move to: "))
1128 (let ((vsym (intern-soft (upcase version))))
1129 (if (member vsym vc-handled-backends)
1130 (vc-transfer-file file vsym)
1131 (vc-checkout file (eq (vc-checkout-model file) 'implicit)
1132 version))))
1133 ((not (eq (vc-checkout-model file) 'implicit))
1134 ;; check the file out
1135 (vc-checkout file t))
1137 ;; do nothing
1138 (message "%s is up-to-date" file))))
1140 ;; Abnormal: edited but read-only
1141 ((and visited (eq state 'edited)
1142 buffer-read-only (not (file-writable-p file)))
1143 ;; Make the file+buffer read-write. If the user really wanted to
1144 ;; commit, he'll get a chance to do that next time around, anyway.
1145 (message "File is edited but read-only; making it writable")
1146 (set-file-modes buffer-file-name
1147 (logior (file-modes buffer-file-name) 128))
1148 (toggle-read-only -1))
1150 ;; edited
1151 ((eq state 'edited)
1152 (cond
1153 ;; For files with locking, if the file does not contain
1154 ;; any changes, just let go of the lock, i.e. revert.
1155 ((and (not (eq (vc-checkout-model file) 'implicit))
1156 (vc-workfile-unchanged-p file)
1157 ;; If buffer is modified, that means the user just
1158 ;; said no to saving it; in that case, don't revert,
1159 ;; because the user might intend to save after
1160 ;; finishing the log entry.
1161 (not (and visited (buffer-modified-p))))
1162 ;; DO NOT revert the file without asking the user!
1163 (if (not visited) (find-file-other-window file))
1164 (if (yes-or-no-p "Revert to master version? ")
1165 (vc-revert-buffer)))
1166 (t ;; normal action
1167 (if (not verbose)
1168 (vc-checkin file nil comment)
1169 (setq version (read-string "New version or backend: "))
1170 (let ((vsym (intern (upcase version))))
1171 (if (member vsym vc-handled-backends)
1172 (vc-transfer-file file vsym)
1173 (vc-checkin file version comment)))))))
1175 ;; locked by somebody else
1176 ((stringp state)
1177 (if comment
1178 (error "Sorry, you can't steal the lock on %s this way"
1179 (file-name-nondirectory file)))
1180 (vc-steal-lock file
1181 (if verbose (read-string "Version to steal: ")
1182 (vc-workfile-version file))
1183 state))
1185 ;; needs-patch
1186 ((eq state 'needs-patch)
1187 (if (yes-or-no-p (format
1188 "%s is not up-to-date. Get latest version? "
1189 (file-name-nondirectory file)))
1190 (vc-checkout file (eq (vc-checkout-model file) 'implicit) "")
1191 (if (and (not (eq (vc-checkout-model file) 'implicit))
1192 (yes-or-no-p "Lock this version? "))
1193 (vc-checkout file t)
1194 (error "Aborted"))))
1196 ;; needs-merge
1197 ((eq state 'needs-merge)
1198 (if (yes-or-no-p (format
1199 "%s is not up-to-date. Merge in changes now? "
1200 (file-name-nondirectory file)))
1201 (vc-maybe-resolve-conflicts file (vc-call merge-news file))
1202 (error "Aborted")))
1204 ;; unlocked-changes
1205 ((eq state 'unlocked-changes)
1206 (if (not visited) (find-file-other-window file))
1207 (if (save-window-excursion
1208 (vc-version-diff file (vc-workfile-version file) nil)
1209 (goto-char (point-min))
1210 (let ((inhibit-read-only t))
1211 (insert
1212 (format "Changes to %s since last lock:\n\n" file)))
1213 (not (beep))
1214 (yes-or-no-p (concat "File has unlocked changes. "
1215 "Claim lock retaining changes? ")))
1216 (progn (vc-call steal-lock file)
1217 (clear-visited-file-modtime)
1218 ;; Must clear any headers here because they wouldn't
1219 ;; show that the file is locked now.
1220 (vc-clear-headers file)
1221 (write-file (buffer-file-name))
1222 (vc-mode-line file))
1223 (if (not (yes-or-no-p
1224 "Revert to checked-in version, instead? "))
1225 (error "Checkout aborted")
1226 (vc-revert-buffer1 t t)
1227 (vc-checkout file t))))))))
1229 (defvar vc-dired-window-configuration)
1231 (defun vc-next-action-dired (file rev comment)
1232 "Call `vc-next-action-on-file' on all the marked files.
1233 Ignores FILE and REV, but passes on COMMENT."
1234 (let ((dired-buffer (current-buffer))
1235 (dired-dir default-directory))
1236 (dired-map-over-marks
1237 (let ((file (dired-get-filename)))
1238 (message "Processing %s..." file)
1239 (vc-next-action-on-file file nil comment)
1240 (set-buffer dired-buffer)
1241 (set-window-configuration vc-dired-window-configuration)
1242 (message "Processing %s...done" file))
1243 nil t))
1244 (dired-move-to-filename))
1246 ;; Here's the major entry point.
1248 ;;;###autoload
1249 (defun vc-next-action (verbose)
1250 "Do the next logical version control operation on the current file.
1252 If you call this from within a VC dired buffer with no files marked,
1253 it will operate on the file in the current line.
1255 If you call this from within a VC dired buffer, and one or more
1256 files are marked, it will accept a log message and then operate on
1257 each one. The log message will be used as a comment for any register
1258 or checkin operations, but ignored when doing checkouts. Attempted
1259 lock steals will raise an error.
1261 A prefix argument lets you specify the version number to use.
1263 For RCS and SCCS files:
1264 If the file is not already registered, this registers it for version
1265 control.
1266 If the file is registered and not locked by anyone, this checks out
1267 a writable and locked file ready for editing.
1268 If the file is checked out and locked by the calling user, this
1269 first checks to see if the file has changed since checkout. If not,
1270 it performs a revert.
1271 If the file has been changed, this pops up a buffer for entry
1272 of a log message; when the message has been entered, it checks in the
1273 resulting changes along with the log message as change commentary. If
1274 the variable `vc-keep-workfiles' is non-nil (which is its default), a
1275 read-only copy of the changed file is left in place afterwards.
1276 If the file is registered and locked by someone else, you are given
1277 the option to steal the lock.
1279 For CVS files:
1280 If the file is not already registered, this registers it for version
1281 control. This does a \"cvs add\", but no \"cvs commit\".
1282 If the file is added but not committed, it is committed.
1283 If your working file is changed, but the repository file is
1284 unchanged, this pops up a buffer for entry of a log message; when the
1285 message has been entered, it checks in the resulting changes along
1286 with the logmessage as change commentary. A writable file is retained.
1287 If the repository file is changed, you are asked if you want to
1288 merge in the changes into your working copy."
1290 (interactive "P")
1291 (catch 'nogo
1292 (if vc-dired-mode
1293 (let ((files (dired-get-marked-files)))
1294 (set (make-local-variable 'vc-dired-window-configuration)
1295 (current-window-configuration))
1296 (if (string= ""
1297 (mapconcat
1298 (lambda (f)
1299 (if (not (vc-up-to-date-p f)) "@" ""))
1300 files ""))
1301 (vc-next-action-dired nil nil "dummy")
1302 (vc-start-entry nil nil nil nil
1303 "Enter a change comment for the marked files."
1304 'vc-next-action-dired))
1305 (throw 'nogo nil)))
1306 (while vc-parent-buffer
1307 (pop-to-buffer vc-parent-buffer))
1308 (if buffer-file-name
1309 (vc-next-action-on-file buffer-file-name verbose)
1310 (error "Buffer %s is not associated with a file" (buffer-name)))))
1312 ;; These functions help the vc-next-action entry point
1314 ;;;###autoload
1315 (defun vc-register (&optional set-version comment)
1316 "Register the current file into a version control system.
1317 With prefix argument SET-VERSION, allow user to specify initial version
1318 level. If COMMENT is present, use that as an initial comment.
1320 The version control system to use is found by cycling through the list
1321 `vc-handled-backends'. The first backend in that list which declares
1322 itself responsible for the file (usually because other files in that
1323 directory are already registered under that backend) will be used to
1324 register the file. If no backend declares itself responsible, the
1325 first backend that could register the file is used."
1326 (interactive "P")
1327 (unless buffer-file-name (error "No visited file"))
1328 (when (vc-backend buffer-file-name)
1329 (if (vc-registered buffer-file-name)
1330 (error "This file is already registered")
1331 (unless (y-or-n-p "Previous master file has vanished. Make a new one? ")
1332 (error "Aborted"))))
1333 ;; Watch out for new buffers of size 0: the corresponding file
1334 ;; does not exist yet, even though buffer-modified-p is nil.
1335 (if (and (not (buffer-modified-p))
1336 (zerop (buffer-size))
1337 (not (file-exists-p buffer-file-name)))
1338 (set-buffer-modified-p t))
1339 (vc-buffer-sync)
1341 (vc-start-entry buffer-file-name
1342 (if set-version
1343 (read-string (format "Initial version level for %s: "
1344 (buffer-name)))
1345 (let ((backend (vc-responsible-backend buffer-file-name)))
1346 (if (vc-find-backend-function backend 'init-version)
1347 (vc-call-backend backend 'init-version)
1348 vc-default-init-version)))
1349 (or comment (not vc-initial-comment))
1351 "Enter initial comment."
1352 (lambda (file rev comment)
1353 (message "Registering %s... " file)
1354 (let ((backend (vc-responsible-backend file t)))
1355 (vc-file-clearprops file)
1356 (vc-call-backend backend 'register file rev comment)
1357 (vc-file-setprop file 'vc-backend backend)
1358 (unless vc-make-backup-files
1359 (make-local-variable 'backup-inhibited)
1360 (setq backup-inhibited t)))
1361 (message "Registering %s... done" file))))
1364 (defun vc-responsible-backend (file &optional register)
1365 "Return the name of a backend system that is responsible for FILE.
1366 The optional argument REGISTER means that a backend suitable for
1367 registration should be found.
1369 If REGISTER is nil, then if FILE is already registered, return the
1370 backend of FILE. If FILE is not registered, or a directory, then the
1371 first backend in `vc-handled-backends' that declares itself
1372 responsible for FILE is returned. If no backend declares itself
1373 responsible, return the first backend.
1375 If REGISTER is non-nil, return the first responsible backend under
1376 which FILE is not yet registered. If there is no such backend, return
1377 the first backend under which FILE is not yet registered, but could
1378 be registered."
1379 (if (not vc-handled-backends)
1380 (error "No handled backends"))
1381 (or (and (not (file-directory-p file)) (not register) (vc-backend file))
1382 (catch 'found
1383 ;; First try: find a responsible backend. If this is for registration,
1384 ;; it must be a backend under which FILE is not yet registered.
1385 (dolist (backend vc-handled-backends)
1386 (and (or (not register)
1387 (not (vc-call-backend backend 'registered file)))
1388 (vc-call-backend backend 'responsible-p file)
1389 (throw 'found backend)))
1390 ;; no responsible backend
1391 (if (not register)
1392 ;; if this is not for registration, the first backend must do
1393 (car vc-handled-backends)
1394 ;; for registration, we need to find a new backend that
1395 ;; could register FILE
1396 (dolist (backend vc-handled-backends)
1397 (and (not (vc-call-backend backend 'registered file))
1398 (vc-call-backend backend 'could-register file)
1399 (throw 'found backend)))
1400 (error "No backend that could register")))))
1402 (defun vc-default-responsible-p (backend file)
1403 "Indicate whether BACKEND is reponsible for FILE.
1404 The default is to return nil always."
1405 nil)
1407 (defun vc-default-could-register (backend file)
1408 "Return non-nil if BACKEND could be used to register FILE.
1409 The default implementation returns t for all files."
1412 (defun vc-resynch-window (file &optional keep noquery)
1413 "If FILE is in the current buffer, either revert or unvisit it.
1414 The choice between revert (to see expanded keywords) and unvisit depends on
1415 `vc-keep-workfiles'. NOQUERY if non-nil inhibits confirmation for
1416 reverting. NOQUERY should be t *only* if it is known the only
1417 difference between the buffer and the file is due to version control
1418 rather than user editing!"
1419 (and (string= buffer-file-name file)
1420 (if keep
1421 (progn
1422 (vc-revert-buffer1 t noquery)
1423 ;; TODO: Adjusting view mode might no longer be necessary
1424 ;; after RMS change to files.el of 1999-08-08. Investigate
1425 ;; this when we install the new VC.
1426 (and view-read-only
1427 (if (file-writable-p file)
1428 (and view-mode
1429 (let ((view-old-buffer-read-only nil))
1430 (view-mode-exit)))
1431 (and (not view-mode)
1432 (not (eq (get major-mode 'mode-class) 'special))
1433 (view-mode-enter))))
1434 (vc-mode-line buffer-file-name))
1435 (kill-buffer (current-buffer)))))
1437 (defun vc-resynch-buffer (file &optional keep noquery)
1438 "If FILE is currently visited, resynch its buffer."
1439 (if (string= buffer-file-name file)
1440 (vc-resynch-window file keep noquery)
1441 (let ((buffer (get-file-buffer file)))
1442 (if buffer
1443 (with-current-buffer buffer
1444 (vc-resynch-window file keep noquery)))))
1445 (vc-dired-resynch-file file))
1447 (defun vc-start-entry (file rev comment initial-contents msg action &optional after-hook)
1448 "Accept a comment for an operation on FILE revision REV.
1449 If COMMENT is nil, pop up a VC-log buffer, emit MSG, and set the
1450 action on close to ACTION. If COMMENT is a string and
1451 INITIAL-CONTENTS is non-nil, then COMMENT is used as the initial
1452 contents of the log entry buffer. If COMMENT is a string and
1453 INITIAL-CONTENTS is nil, do action immediately as if the user had
1454 entered COMMENT. If COMMENT is t, also do action immediately with an
1455 empty comment. Remember the file's buffer in `vc-parent-buffer'
1456 \(current one if no file). AFTER-HOOK specifies the local value
1457 for vc-log-operation-hook."
1458 (let ((parent (or (and file (get-file-buffer file)) (current-buffer))))
1459 (if vc-before-checkin-hook
1460 (if file
1461 (with-current-buffer parent
1462 (run-hooks 'vc-before-checkin-hook))
1463 (run-hooks 'vc-before-checkin-hook)))
1464 (if (and comment (not initial-contents))
1465 (set-buffer (get-buffer-create "*VC-log*"))
1466 (pop-to-buffer (get-buffer-create "*VC-log*")))
1467 (set (make-local-variable 'vc-parent-buffer) parent)
1468 (set (make-local-variable 'vc-parent-buffer-name)
1469 (concat " from " (buffer-name vc-parent-buffer)))
1470 (if file (vc-mode-line file))
1471 (vc-log-edit file)
1472 (make-local-variable 'vc-log-after-operation-hook)
1473 (if after-hook
1474 (setq vc-log-after-operation-hook after-hook))
1475 (setq vc-log-operation action)
1476 (setq vc-log-version rev)
1477 (when comment
1478 (erase-buffer)
1479 (when (stringp comment) (insert comment)))
1480 (if (or (not comment) initial-contents)
1481 (message "%s Type C-c C-c when done" msg)
1482 (vc-finish-logentry (eq comment t)))))
1484 (defun vc-checkout (file &optional writable rev)
1485 "Retrieve a copy of the revision REV of FILE.
1486 If WRITABLE is non-nil, make sure the retrieved file is writable.
1487 REV defaults to the latest revision.
1489 After check-out, runs the normal hook `vc-checkout-hook'."
1490 (and writable
1491 (not rev)
1492 (vc-call make-version-backups-p file)
1493 (vc-up-to-date-p file)
1494 (vc-make-version-backup file))
1495 (with-vc-properties
1496 file
1497 (condition-case err
1498 (vc-call checkout file writable rev)
1499 (file-error
1500 ;; Maybe the backend is not installed ;-(
1501 (when writable
1502 (let ((buf (get-file-buffer file)))
1503 (when buf (with-current-buffer buf (toggle-read-only -1)))))
1504 (signal (car err) (cdr err))))
1505 `((vc-state . ,(if (or (eq (vc-checkout-model file) 'implicit)
1506 (not writable))
1507 (if (vc-call latest-on-branch-p file)
1508 'up-to-date
1509 'needs-patch)
1510 'edited))
1511 (vc-checkout-time . ,(nth 5 (file-attributes file)))))
1512 (vc-resynch-buffer file t t)
1513 (run-hooks 'vc-checkout-hook))
1515 (defun vc-steal-lock (file rev owner)
1516 "Steal the lock on FILE."
1517 (let (file-description)
1518 (if rev
1519 (setq file-description (format "%s:%s" file rev))
1520 (setq file-description file))
1521 (if (not (yes-or-no-p (format "Steal the lock on %s from %s? "
1522 file-description owner)))
1523 (error "Steal canceled"))
1524 (message "Stealing lock on %s..." file)
1525 (with-vc-properties
1526 file
1527 (vc-call steal-lock file rev)
1528 `((vc-state . edited)))
1529 (vc-resynch-buffer file t t)
1530 (message "Stealing lock on %s...done" file)
1531 ;; Write mail after actually stealing, because if the stealing
1532 ;; goes wrong, we don't want to send any mail.
1533 (compose-mail owner (format "Stolen lock on %s" file-description))
1534 (setq default-directory (expand-file-name "~/"))
1535 (goto-char (point-max))
1536 (insert
1537 (format "I stole the lock on %s, " file-description)
1538 (current-time-string)
1539 ".\n")
1540 (message "Please explain why you stole the lock. Type C-c C-c when done.")))
1542 (defun vc-checkin (file &optional rev comment initial-contents)
1543 "Check in FILE.
1544 The optional argument REV may be a string specifying the new version
1545 level (if nil increment the current level). COMMENT is a comment
1546 string; if omitted, a buffer is popped up to accept a comment. If
1547 INITIAL-CONTENTS is non-nil, then COMMENT is used as the initial contents
1548 of the log entry buffer.
1550 If `vc-keep-workfiles' is nil, FILE is deleted afterwards, provided
1551 that the version control system supports this mode of operation.
1553 Runs the normal hook `vc-checkin-hook'."
1554 (vc-start-entry
1555 file rev comment initial-contents
1556 "Enter a change comment."
1557 (lambda (file rev comment)
1558 (message "Checking in %s..." file)
1559 ;; "This log message intentionally left almost blank".
1560 ;; RCS 5.7 gripes about white-space-only comments too.
1561 (or (and comment (string-match "[^\t\n ]" comment))
1562 (setq comment "*** empty log message ***"))
1563 (with-vc-properties
1564 file
1565 ;; Change buffers to get local value of vc-checkin-switches.
1566 (with-current-buffer (or (get-file-buffer file) (current-buffer))
1567 (progn
1568 (vc-call checkin file rev comment)
1569 (vc-delete-automatic-version-backups file)))
1570 `((vc-state . up-to-date)
1571 (vc-checkout-time . ,(nth 5 (file-attributes file)))
1572 (vc-workfile-version . nil)))
1573 (message "Checking in %s...done" file))
1574 'vc-checkin-hook))
1576 (defun vc-comment-to-change-log (&optional whoami file-name)
1577 "Enter last VC comment into the change log for the current file.
1578 WHOAMI (interactive prefix) non-nil means prompt for user name
1579 and site. FILE-NAME is the name of the change log; if nil, use
1580 `change-log-default-name'.
1582 This may be useful as a `vc-checkin-hook' to update change logs
1583 automatically."
1584 (interactive (if current-prefix-arg
1585 (list current-prefix-arg
1586 (prompt-for-change-log-name))))
1587 ;; Make sure the defvar for add-log-current-defun-function has been executed
1588 ;; before binding it.
1589 (require 'add-log)
1590 (let (;; Extract the comment first so we get any error before doing anything.
1591 (comment (ring-ref vc-comment-ring 0))
1592 ;; Don't let add-change-log-entry insert a defun name.
1593 (add-log-current-defun-function 'ignore)
1594 end)
1595 ;; Call add-log to do half the work.
1596 (add-change-log-entry whoami file-name t t)
1597 ;; Insert the VC comment, leaving point before it.
1598 (setq end (save-excursion (insert comment) (point-marker)))
1599 (if (looking-at "\\s *\\s(")
1600 ;; It starts with an open-paren, as in "(foo): Frobbed."
1601 ;; So remove the ": " add-log inserted.
1602 (delete-char -2))
1603 ;; Canonicalize the white space between the file name and comment.
1604 (just-one-space)
1605 ;; Indent rest of the text the same way add-log indented the first line.
1606 (let ((indentation (current-indentation)))
1607 (save-excursion
1608 (while (< (point) end)
1609 (forward-line 1)
1610 (indent-to indentation))
1611 (setq end (point))))
1612 ;; Fill the inserted text, preserving open-parens at bol.
1613 (let ((paragraph-separate (concat paragraph-separate "\\|\\s *\\s("))
1614 (paragraph-start (concat paragraph-start "\\|\\s *\\s(")))
1615 (beginning-of-line)
1616 (fill-region (point) end))
1617 ;; Canonicalize the white space at the end of the entry so it is
1618 ;; separated from the next entry by a single blank line.
1619 (skip-syntax-forward " " end)
1620 (delete-char (- (skip-syntax-backward " ")))
1621 (or (eobp) (looking-at "\n\n")
1622 (insert "\n"))))
1624 (defun vc-finish-logentry (&optional nocomment)
1625 "Complete the operation implied by the current log entry.
1626 Use the contents of the current buffer as a check-in or registration
1627 comment. If the optional arg NOCOMMENT is non-nil, then don't check
1628 the buffer contents as a comment, and don't add it to
1629 `vc-comment-ring'."
1630 (interactive)
1631 ;; Check and record the comment, if any.
1632 (unless nocomment
1633 ;; Comment too long?
1634 (vc-call-backend (or (and vc-log-file (vc-backend vc-log-file))
1635 (vc-responsible-backend default-directory))
1636 'logentry-check)
1637 (run-hooks 'vc-logentry-check-hook)
1638 ;; Record the comment in the comment ring
1639 (let ((comment (buffer-string)))
1640 (unless (and (ring-p vc-comment-ring)
1641 (not (ring-empty-p vc-comment-ring))
1642 (equal comment (ring-ref vc-comment-ring 0)))
1643 (ring-insert vc-comment-ring comment))))
1644 ;; Sync parent buffer in case the user modified it while editing the comment.
1645 ;; But not if it is a vc-dired buffer.
1646 (with-current-buffer vc-parent-buffer
1647 (or vc-dired-mode (vc-buffer-sync)))
1648 (if (not vc-log-operation) (error "No log operation is pending"))
1649 ;; save the parameters held in buffer-local variables
1650 (let ((log-operation vc-log-operation)
1651 (log-file vc-log-file)
1652 (log-version vc-log-version)
1653 (log-entry (buffer-string))
1654 (after-hook vc-log-after-operation-hook)
1655 (tmp-vc-parent-buffer vc-parent-buffer))
1656 (pop-to-buffer vc-parent-buffer)
1657 ;; OK, do it to it
1658 (save-excursion
1659 (funcall log-operation
1660 log-file
1661 log-version
1662 log-entry))
1663 ;; Remove checkin window (after the checkin so that if that fails
1664 ;; we don't zap the *VC-log* buffer and the typing therein).
1665 (let ((logbuf (get-buffer "*VC-log*")))
1666 (cond ((and logbuf vc-delete-logbuf-window)
1667 (delete-windows-on logbuf (selected-frame))
1668 ;; Kill buffer and delete any other dedicated windows/frames.
1669 (kill-buffer logbuf))
1670 (logbuf (pop-to-buffer "*VC-log*")
1671 (bury-buffer)
1672 (pop-to-buffer tmp-vc-parent-buffer))))
1673 ;; Now make sure we see the expanded headers
1674 (if log-file
1675 (vc-resynch-buffer log-file vc-keep-workfiles t))
1676 (if vc-dired-mode
1677 (dired-move-to-filename))
1678 (run-hooks after-hook 'vc-finish-logentry-hook)))
1680 ;; Code for access to the comment ring
1682 (defun vc-new-comment-index (stride len)
1683 "Return the comment index STRIDE elements from the current one.
1684 LEN is the length of `vc-comment-ring'."
1685 (mod (cond
1686 (vc-comment-ring-index (+ vc-comment-ring-index stride))
1687 ;; Initialize the index on the first use of this command
1688 ;; so that the first M-p gets index 0, and the first M-n gets
1689 ;; index -1.
1690 ((> stride 0) (1- stride))
1691 (t stride))
1692 len))
1694 (defun vc-previous-comment (arg)
1695 "Cycle backwards through comment history.
1696 With a numeric prefix ARG, go back ARG comments."
1697 (interactive "*p")
1698 (let ((len (ring-length vc-comment-ring)))
1699 (if (<= len 0)
1700 (progn (message "Empty comment ring") (ding))
1701 (erase-buffer)
1702 (setq vc-comment-ring-index (vc-new-comment-index arg len))
1703 (message "Comment %d" (1+ vc-comment-ring-index))
1704 (insert (ring-ref vc-comment-ring vc-comment-ring-index)))))
1706 (defun vc-next-comment (arg)
1707 "Cycle forwards through comment history.
1708 With a numeric prefix ARG, go forward ARG comments."
1709 (interactive "*p")
1710 (vc-previous-comment (- arg)))
1712 (defun vc-comment-search-reverse (str &optional stride)
1713 "Search backwards through comment history for substring match of STR.
1714 If the optional argument STRIDE is present, that is a step-width to use
1715 when going through the comment ring."
1716 ;; Why substring rather than regexp ? -sm
1717 (interactive
1718 (list (read-string "Comment substring: " nil nil vc-last-comment-match)))
1719 (unless stride (setq stride 1))
1720 (if (string= str "")
1721 (setq str vc-last-comment-match)
1722 (setq vc-last-comment-match str))
1723 (let* ((str (regexp-quote str))
1724 (len (ring-length vc-comment-ring))
1725 (n (vc-new-comment-index stride len)))
1726 (while (progn (when (or (>= n len) (< n 0)) (error "Not found"))
1727 (not (string-match str (ring-ref vc-comment-ring n))))
1728 (setq n (+ n stride)))
1729 (setq vc-comment-ring-index n)
1730 (vc-previous-comment 0)))
1732 (defun vc-comment-search-forward (str)
1733 "Search forwards through comment history for a substring match of STR."
1734 (interactive
1735 (list (read-string "Comment substring: " nil nil vc-last-comment-match)))
1736 (vc-comment-search-reverse str -1))
1738 ;; Additional entry points for examining version histories
1740 ;;;###autoload
1741 (defun vc-diff (historic &optional not-urgent)
1742 "Display diffs between file versions.
1743 Normally this compares the current file and buffer with the most
1744 recent checked in version of that file. This uses no arguments. With
1745 a prefix argument HISTORIC, it reads the file name to use and two
1746 version designators specifying which versions to compare. The
1747 optional argument NOT-URGENT non-nil means it is ok to say no to
1748 saving the buffer."
1749 (interactive (list current-prefix-arg t))
1750 (if historic
1751 (call-interactively 'vc-version-diff)
1752 (vc-ensure-vc-buffer)
1753 (let ((file buffer-file-name))
1754 (vc-buffer-sync not-urgent)
1755 (if (vc-workfile-unchanged-p buffer-file-name)
1756 (message "No changes to %s since latest version" file)
1757 (vc-version-diff file nil nil)))))
1759 (defun vc-version-diff (file rel1 rel2)
1760 "List the differences between FILE's versions REL1 and REL2.
1761 If REL1 is empty or nil it means to use the current workfile version;
1762 REL2 empty or nil means the current file contents. FILE may also be
1763 a directory, in that case, generate diffs between the correponding
1764 versions of all registered files in or below it."
1765 (interactive
1766 (let ((file (expand-file-name
1767 (read-file-name (if buffer-file-name
1768 "File or dir to diff: (default visited file) "
1769 "File or dir to diff: ")
1770 default-directory buffer-file-name t)))
1771 (rel1-default nil) (rel2-default nil))
1772 ;; compute default versions based on the file state
1773 (cond
1774 ;; if it's a directory, don't supply any version default
1775 ((file-directory-p file)
1776 nil)
1777 ;; if the file is not up-to-date, use current version as older version
1778 ((not (vc-up-to-date-p file))
1779 (setq rel1-default (vc-workfile-version file)))
1780 ;; if the file is not locked, use last and previous version as default
1782 (setq rel1-default (vc-call previous-version file
1783 (vc-workfile-version file)))
1784 (if (string= rel1-default "") (setq rel1-default nil))
1785 (setq rel2-default (vc-workfile-version file))))
1786 ;; construct argument list
1787 (list file
1788 (read-string (if rel1-default
1789 (concat "Older version: (default "
1790 rel1-default ") ")
1791 "Older version: ")
1792 nil nil rel1-default)
1793 (read-string (if rel2-default
1794 (concat "Newer version: (default "
1795 rel2-default ") ")
1796 "Newer version (default: current source): ")
1797 nil nil rel2-default))))
1798 (if (file-directory-p file)
1799 ;; recursive directory diff
1800 (progn
1801 (vc-setup-buffer "*vc-diff*")
1802 (if (string-equal rel1 "") (setq rel1 nil))
1803 (if (string-equal rel2 "") (setq rel2 nil))
1804 (let ((inhibit-read-only t))
1805 (insert "Diffs between "
1806 (or rel1 "last version checked in")
1807 " and "
1808 (or rel2 "current workfile(s)")
1809 ":\n\n"))
1810 (let ((dir (file-name-as-directory file)))
1811 (vc-call-backend (vc-responsible-backend dir)
1812 'diff-tree dir rel1 rel2))
1813 (vc-exec-after `(let ((inhibit-read-only t))
1814 (insert "\nEnd of diffs.\n"))))
1815 ;; single file diff
1816 (vc-diff-internal file rel1 rel2))
1817 (set-buffer "*vc-diff*")
1818 (if (and (zerop (buffer-size))
1819 (not (get-buffer-process (current-buffer))))
1820 (progn
1821 (if rel1
1822 (if rel2
1823 (message "No changes to %s between %s and %s" file rel1 rel2)
1824 (message "No changes to %s since %s" file rel1))
1825 (message "No changes to %s since latest version" file))
1826 nil)
1827 (pop-to-buffer (current-buffer))
1828 ;; Gnus-5.8.5 sets up an autoload for diff-mode, even if it's
1829 ;; not available. Work around that.
1830 (if (require 'diff-mode nil t) (diff-mode))
1831 (vc-exec-after '(let ((inhibit-read-only t))
1832 (if (eq (buffer-size) 0)
1833 (insert "No differences found.\n"))
1834 (goto-char (point-min))
1835 (shrink-window-if-larger-than-buffer)))
1838 (defun vc-diff-internal (file rel1 rel2)
1839 "Run diff to compare FILE's revisions REL1 and REL2.
1840 Output goes to the current buffer, which is assumed properly set up.
1841 The exit status of the diff command is returned.
1843 This function takes care to set up a proper coding system for diff output.
1844 If both revisions are available as local files, then it also does not
1845 actually call the backend, but performs a local diff."
1846 (if (or (not rel1) (string-equal rel1 ""))
1847 (setq rel1 (vc-workfile-version file)))
1848 (if (string-equal rel2 "")
1849 (setq rel2 nil))
1850 (let ((file-rel1 (vc-version-backup-file file rel1))
1851 (file-rel2 (if (not rel2)
1852 file
1853 (vc-version-backup-file file rel2)))
1854 (coding-system-for-read (vc-coding-system-for-diff file)))
1855 (if (and file-rel1 file-rel2)
1856 (apply 'vc-do-command "*vc-diff*" 1 "diff" nil
1857 (append (if (listp diff-switches)
1858 diff-switches
1859 (list diff-switches))
1860 (if (listp vc-diff-switches)
1861 vc-diff-switches
1862 (list vc-diff-switches))
1863 (list (file-relative-name file-rel1)
1864 (file-relative-name file-rel2))))
1865 (vc-call diff file rel1 rel2))))
1867 (defmacro vc-diff-switches-list (backend)
1868 "Return the list of switches to use for executing diff under BACKEND."
1869 `(append
1870 (if (listp diff-switches) diff-switches (list diff-switches))
1871 (if (listp vc-diff-switches) vc-diff-switches (list vc-diff-switches))
1872 (let* ((backend-switches-symbol
1873 (intern (concat "vc-" (downcase (symbol-name ,backend))
1874 "-diff-switches")))
1875 (backend-switches
1876 (if (boundp backend-switches-symbol)
1877 (eval backend-switches-symbol)
1878 nil)))
1879 (if (listp backend-switches) backend-switches (list backend-switches)))))
1881 (defun vc-default-diff-tree (backend dir rel1 rel2)
1882 "List differences for all registered files at and below DIR.
1883 The meaning of REL1 and REL2 is the same as for `vc-version-diff'."
1884 ;; This implementation does an explicit tree walk, and calls
1885 ;; vc-BACKEND-diff directly for each file. An optimization
1886 ;; would be to use `vc-diff-internal', so that diffs can be local,
1887 ;; and to call it only for files that are actually changed.
1888 ;; However, this is expensive for some backends, and so it is left
1889 ;; to backend-specific implementations.
1890 (setq default-directory dir)
1891 (vc-file-tree-walk
1892 default-directory
1893 (lambda (f)
1894 (vc-exec-after
1895 `(let ((coding-system-for-read (vc-coding-system-for-diff ',f)))
1896 (message "Looking at %s" ',f)
1897 (vc-call-backend ',(vc-backend f)
1898 'diff ',f ',rel1 ',rel2))))))
1900 (defun vc-coding-system-for-diff (file)
1901 "Return the coding system for reading diff output for FILE."
1902 (or coding-system-for-read
1903 ;; if we already have this file open,
1904 ;; use the buffer's coding system
1905 (let ((buf (find-buffer-visiting file)))
1906 (if buf (with-current-buffer buf
1907 buffer-file-coding-system)))
1908 ;; otherwise, try to find one based on the file name
1909 (car (find-operation-coding-system 'insert-file-contents file))
1910 ;; and a final fallback
1911 'undecided))
1913 ;;;###autoload
1914 (defun vc-version-other-window (rev)
1915 "Visit version REV of the current file in another window.
1916 If the current file is named `F', the version is named `F.~REV~'.
1917 If `F.~REV~' already exists, use it instead of checking it out again."
1918 (interactive "sVersion to visit (default is workfile version): ")
1919 (vc-ensure-vc-buffer)
1920 (let* ((file buffer-file-name)
1921 (version (if (string-equal rev "")
1922 (vc-workfile-version file)
1923 rev)))
1924 (switch-to-buffer-other-window (vc-find-version file version))))
1926 (defun vc-find-version (file version)
1927 "Read VERSION of FILE into a buffer and return the buffer."
1928 (let ((automatic-backup (vc-version-backup-file-name file version))
1929 (manual-backup (vc-version-backup-file-name file version 'manual)))
1930 (unless (file-exists-p manual-backup)
1931 (if (file-exists-p automatic-backup)
1932 (rename-file automatic-backup manual-backup nil)
1933 (vc-call checkout file nil version manual-backup)))
1934 (find-file-noselect manual-backup)))
1936 ;; Header-insertion code
1938 ;;;###autoload
1939 (defun vc-insert-headers ()
1940 "Insert headers into a file for use with a version control system.
1941 Headers desired are inserted at point, and are pulled from
1942 the variable `vc-BACKEND-header'."
1943 (interactive)
1944 (vc-ensure-vc-buffer)
1945 (save-excursion
1946 (save-restriction
1947 (widen)
1948 (if (or (not (vc-check-headers))
1949 (y-or-n-p "Version headers already exist. Insert another set? "))
1950 (progn
1951 (let* ((delims (cdr (assq major-mode vc-comment-alist)))
1952 (comment-start-vc (or (car delims) comment-start "#"))
1953 (comment-end-vc (or (car (cdr delims)) comment-end ""))
1954 (hdsym (vc-make-backend-sym (vc-backend (buffer-file-name))
1955 'header))
1956 (hdstrings (and (boundp hdsym) (symbol-value hdsym))))
1957 (mapcar (lambda (s)
1958 (insert comment-start-vc "\t" s "\t"
1959 comment-end-vc "\n"))
1960 hdstrings)
1961 (if vc-static-header-alist
1962 (mapcar (lambda (f)
1963 (if (string-match (car f) buffer-file-name)
1964 (insert (format (cdr f) (car hdstrings)))))
1965 vc-static-header-alist))
1967 )))))
1969 (defun vc-clear-headers (&optional file)
1970 "Clear all version headers in the current buffer (or FILE).
1971 The headers are reset to their non-expanded form."
1972 (let* ((filename (or file buffer-file-name))
1973 (visited (find-buffer-visiting filename))
1974 (backend (vc-backend filename)))
1975 (when (vc-find-backend-function backend 'clear-headers)
1976 (if visited
1977 (let ((context (vc-buffer-context)))
1978 ;; save-excursion may be able to relocate point and mark
1979 ;; properly. If it fails, vc-restore-buffer-context
1980 ;; will give it a second try.
1981 (save-excursion
1982 (vc-call-backend backend 'clear-headers))
1983 (vc-restore-buffer-context context))
1984 (set-buffer (find-file-noselect filename))
1985 (vc-call-backend backend 'clear-headers)
1986 (kill-buffer filename)))))
1988 ;;;###autoload
1989 (defun vc-merge ()
1990 "Merge changes between two versions into the current buffer's file.
1991 This asks for two versions to merge from in the minibuffer. If the
1992 first version is a branch number, then merge all changes from that
1993 branch. If the first version is empty, merge news, i.e. recent changes
1994 from the current branch.
1996 See Info node `Merging'."
1997 (interactive)
1998 (vc-ensure-vc-buffer)
1999 (vc-buffer-sync)
2000 (let* ((file buffer-file-name)
2001 (backend (vc-backend file))
2002 (state (vc-state file))
2003 first-version second-version status)
2004 (cond
2005 ((stringp state)
2006 (error "File is locked by %s" state))
2007 ((not (vc-editable-p file))
2008 (if (y-or-n-p
2009 "File must be checked out for merging. Check out now? ")
2010 (vc-checkout file t)
2011 (error "Merge aborted"))))
2012 (setq first-version
2013 (read-string (concat "Branch or version to merge from "
2014 "(default: news on current branch): ")))
2015 (if (string= first-version "")
2016 (if (not (vc-find-backend-function backend 'merge-news))
2017 (error "Sorry, merging news is not implemented for %s" backend)
2018 (setq status (vc-call merge-news file)))
2019 (if (not (vc-find-backend-function backend 'merge))
2020 (error "Sorry, merging is not implemented for %s" backend)
2021 (if (not (vc-branch-p first-version))
2022 (setq second-version
2023 (read-string "Second version: "
2024 (concat (vc-branch-part first-version) ".")))
2025 ;; We want to merge an entire branch. Set versions
2026 ;; accordingly, so that vc-BACKEND-merge understands us.
2027 (setq second-version first-version)
2028 ;; first-version must be the starting point of the branch
2029 (setq first-version (vc-branch-part first-version)))
2030 (setq status (vc-call merge file first-version second-version))))
2031 (vc-maybe-resolve-conflicts file status "WORKFILE" "MERGE SOURCE")))
2033 (defun vc-maybe-resolve-conflicts (file status &optional name-A name-B)
2034 (vc-resynch-buffer file t (not (buffer-modified-p)))
2035 (if (zerop status) (message "Merge successful")
2036 (if (fboundp 'smerge-mode) (smerge-mode 1))
2037 (if (y-or-n-p "Conflicts detected. Resolve them now? ")
2038 (if (fboundp 'smerge-ediff)
2039 (smerge-ediff)
2040 (vc-resolve-conflicts name-A name-B))
2041 (message "File contains conflict markers"))))
2043 (defvar vc-ediff-windows)
2044 (defvar vc-ediff-result)
2045 (eval-when-compile
2046 (defvar ediff-buffer-A)
2047 (defvar ediff-buffer-B)
2048 (defvar ediff-buffer-C)
2049 (require 'ediff-util))
2050 ;;;###autoload
2051 (defun vc-resolve-conflicts (&optional name-A name-B)
2052 "Invoke ediff to resolve conflicts in the current buffer.
2053 The conflicts must be marked with rcsmerge conflict markers."
2054 (interactive)
2055 (vc-ensure-vc-buffer)
2056 (let* ((found nil)
2057 (file-name (file-name-nondirectory buffer-file-name))
2058 (your-buffer (generate-new-buffer
2059 (concat "*" file-name
2060 " " (or name-A "WORKFILE") "*")))
2061 (other-buffer (generate-new-buffer
2062 (concat "*" file-name
2063 " " (or name-B "CHECKED-IN") "*")))
2064 (result-buffer (current-buffer)))
2065 (save-excursion
2066 (set-buffer your-buffer)
2067 (erase-buffer)
2068 (insert-buffer result-buffer)
2069 (goto-char (point-min))
2070 (while (re-search-forward (concat "^<<<<<<< "
2071 (regexp-quote file-name) "\n") nil t)
2072 (setq found t)
2073 (replace-match "")
2074 (if (not (re-search-forward "^=======\n" nil t))
2075 (error "Malformed conflict marker"))
2076 (replace-match "")
2077 (let ((start (point)))
2078 (if (not (re-search-forward "^>>>>>>> [0-9.]+\n" nil t))
2079 (error "Malformed conflict marker"))
2080 (delete-region start (point))))
2081 (if (not found)
2082 (progn
2083 (kill-buffer your-buffer)
2084 (kill-buffer other-buffer)
2085 (error "No conflict markers found")))
2086 (set-buffer other-buffer)
2087 (erase-buffer)
2088 (insert-buffer result-buffer)
2089 (goto-char (point-min))
2090 (while (re-search-forward (concat "^<<<<<<< "
2091 (regexp-quote file-name) "\n") nil t)
2092 (let ((start (match-beginning 0)))
2093 (if (not (re-search-forward "^=======\n" nil t))
2094 (error "Malformed conflict marker"))
2095 (delete-region start (point))
2096 (if (not (re-search-forward "^>>>>>>> [0-9.]+\n" nil t))
2097 (error "Malformed conflict marker"))
2098 (replace-match "")))
2099 (let ((config (current-window-configuration))
2100 (ediff-default-variant 'default-B))
2102 ;; Fire up ediff.
2104 (set-buffer (ediff-merge-buffers your-buffer other-buffer))
2106 ;; Ediff is now set up, and we are in the control buffer.
2107 ;; Do a few further adjustments and take precautions for exit.
2109 (make-local-variable 'vc-ediff-windows)
2110 (setq vc-ediff-windows config)
2111 (make-local-variable 'vc-ediff-result)
2112 (setq vc-ediff-result result-buffer)
2113 (make-local-variable 'ediff-quit-hook)
2114 (setq ediff-quit-hook
2115 (lambda ()
2116 (let ((buffer-A ediff-buffer-A)
2117 (buffer-B ediff-buffer-B)
2118 (buffer-C ediff-buffer-C)
2119 (result vc-ediff-result)
2120 (windows vc-ediff-windows))
2121 (ediff-cleanup-mess)
2122 (set-buffer result)
2123 (erase-buffer)
2124 (insert-buffer buffer-C)
2125 (kill-buffer buffer-A)
2126 (kill-buffer buffer-B)
2127 (kill-buffer buffer-C)
2128 (set-window-configuration windows)
2129 (message "Conflict resolution finished; you may save the buffer"))))
2130 (message "Please resolve conflicts now; exit ediff when done")
2131 nil))))
2133 ;; The VC directory major mode. Coopt Dired for this.
2134 ;; All VC commands get mapped into logical equivalents.
2136 (defvar vc-dired-switches)
2137 (defvar vc-dired-terse-mode)
2139 (defvar vc-dired-mode-map
2140 (let ((map (make-sparse-keymap))
2141 (vmap (make-sparse-keymap)))
2142 (define-key map "\C-xv" vmap)
2143 (define-key map "v" vmap)
2144 (set-keymap-parent vmap vc-prefix-map)
2145 (define-key vmap "t" 'vc-dired-toggle-terse-mode)
2146 map))
2148 (define-derived-mode vc-dired-mode dired-mode "Dired under VC"
2149 "The major mode used in VC directory buffers.
2151 It works like Dired, but lists only files under version control, with
2152 the current VC state of each file being indicated in the place of the
2153 file's link count, owner, group and size. Subdirectories are also
2154 listed, and you may insert them into the buffer as desired, like in
2155 Dired.
2157 All Dired commands operate normally, with the exception of `v', which
2158 is redefined as the version control prefix, so that you can type
2159 `vl', `v=' etc. to invoke `vc-print-log', `vc-diff', and the like on
2160 the file named in the current Dired buffer line. `vv' invokes
2161 `vc-next-action' on this file, or on all files currently marked.
2162 There is a special command, `*l', to mark all files currently locked."
2163 ;; define-derived-mode does it for us in Emacs-21, but not in Emacs-20.
2164 ;; We do it here because dired might not be loaded yet
2165 ;; when vc-dired-mode-map is initialized.
2166 (set-keymap-parent vc-dired-mode-map dired-mode-map)
2167 (add-hook 'dired-after-readin-hook 'vc-dired-hook nil t)
2168 ;; The following is slightly modified from dired.el,
2169 ;; because file lines look a bit different in vc-dired-mode.
2170 (set (make-local-variable 'dired-move-to-filename-regexp)
2171 (let*
2172 ((l "\\([A-Za-z]\\|[^\0-\177]\\)")
2173 ;; In some locales, month abbreviations are as short as 2 letters,
2174 ;; and they can be padded on the right with spaces.
2175 (month (concat l l "+ *"))
2176 ;; Recognize any non-ASCII character.
2177 ;; The purpose is to match a Kanji character.
2178 (k "[^\0-\177]")
2179 ;; (k "[^\x00-\x7f\x80-\xff]")
2180 (s " ")
2181 (yyyy "[0-9][0-9][0-9][0-9]")
2182 (mm "[ 0-1][0-9]")
2183 (dd "[ 0-3][0-9]")
2184 (HH:MM "[ 0-2][0-9]:[0-5][0-9]")
2185 (western (concat "\\(" month s dd "\\|" dd s month "\\)"
2186 s "\\(" HH:MM "\\|" s yyyy"\\|" yyyy s "\\)"))
2187 (japanese (concat mm k s dd k s "\\(" s HH:MM "\\|" yyyy k "\\)")))
2188 ;; the .* below ensures that we find the last match on a line
2189 (concat ".*" s "\\(" western "\\|" japanese "\\)" s)))
2190 (and (boundp 'vc-dired-switches)
2191 vc-dired-switches
2192 (set (make-local-variable 'dired-actual-switches)
2193 vc-dired-switches))
2194 (set (make-local-variable 'vc-dired-terse-mode) vc-dired-terse-display)
2195 (setq vc-dired-mode t))
2197 (defun vc-dired-toggle-terse-mode ()
2198 "Toggle terse display in VC Dired."
2199 (interactive)
2200 (if (not vc-dired-mode)
2202 (setq vc-dired-terse-mode (not vc-dired-terse-mode))
2203 (if vc-dired-terse-mode
2204 (vc-dired-hook)
2205 (revert-buffer))))
2207 (defun vc-dired-mark-locked ()
2208 "Mark all files currently locked."
2209 (interactive)
2210 (dired-mark-if (let ((f (dired-get-filename nil t)))
2211 (and f
2212 (not (file-directory-p f))
2213 (not (vc-up-to-date-p f))))
2214 "locked file"))
2216 (define-key vc-dired-mode-map "*l" 'vc-dired-mark-locked)
2218 (defun vc-default-dired-state-info (backend file)
2219 (let ((state (vc-state file)))
2220 (cond
2221 ((stringp state) (concat "(" state ")"))
2222 ((eq state 'edited) (concat "(" (vc-user-login-name) ")"))
2223 ((eq state 'needs-merge) "(merge)")
2224 ((eq state 'needs-patch) "(patch)")
2225 ((eq state 'unlocked-changes) "(stale)"))))
2227 (defun vc-dired-reformat-line (x)
2228 "Reformat a directory-listing line.
2229 Replace various columns with version control information.
2230 This code, like dired, assumes UNIX -l format."
2231 (beginning-of-line)
2232 (let ((pos (point)) limit perm date-and-file)
2233 (end-of-line)
2234 (setq limit (point))
2235 (goto-char pos)
2236 (when
2238 (re-search-forward ;; owner and group
2239 "^\\(..[drwxlts-]+ \\) *[0-9]+ [^ ]+ +[^ ]+ +[0-9]+\\( .*\\)"
2240 limit t)
2241 (re-search-forward ;; only owner displayed
2242 "^\\(..[drwxlts-]+ \\) *[0-9]+ [^ ]+ +[0-9]+\\( .*\\)"
2243 limit t)
2244 (re-search-forward ;; OS/2 -l format, no links, owner, group
2245 "^\\(..[drwxlts-]+ \\) *[0-9]+\\( .*\\)"
2246 limit t))
2247 (setq perm (match-string 1)
2248 date-and-file (match-string 2))
2249 (setq x (substring (concat x " ") 0 10))
2250 (replace-match (concat perm x date-and-file)))))
2252 (defun vc-dired-hook ()
2253 "Reformat the listing according to version control.
2254 Called by dired after any portion of a vc-dired buffer has been read in."
2255 (message "Getting version information... ")
2256 (let (subdir filename (buffer-read-only nil) cvs-dir)
2257 (goto-char (point-min))
2258 (while (not (eobp))
2259 (cond
2260 ;; subdir header line
2261 ((setq subdir (dired-get-subdir))
2262 ;; if the backend supports it, get the state
2263 ;; of all files in this directory at once
2264 (let ((backend (vc-responsible-backend subdir)))
2265 (if (vc-find-backend-function backend 'dir-state)
2266 (vc-call-backend backend 'dir-state subdir)))
2267 (forward-line 1)
2268 ;; erase (but don't remove) the "total" line
2269 (delete-region (point) (line-end-position))
2270 (beginning-of-line)
2271 (forward-line 1))
2272 ;; file line
2273 ((setq filename (dired-get-filename nil t))
2274 (cond
2275 ;; subdir
2276 ((file-directory-p filename)
2277 (cond
2278 ((member (file-name-nondirectory filename)
2279 vc-directory-exclusion-list)
2280 (let ((pos (point)))
2281 (dired-kill-tree filename)
2282 (goto-char pos)
2283 (dired-kill-line)))
2284 (vc-dired-terse-mode
2285 ;; Don't show directories in terse mode. Don't use
2286 ;; dired-kill-line to remove it, because in recursive listings,
2287 ;; that would remove the directory contents as well.
2288 (delete-region (line-beginning-position)
2289 (progn (forward-line 1) (point))))
2290 ((string-match "\\`\\.\\.?\\'" (file-name-nondirectory filename))
2291 (dired-kill-line))
2293 (vc-dired-reformat-line nil)
2294 (forward-line 1))))
2295 ;; ordinary file
2296 ((and (vc-backend filename)
2297 (not (and vc-dired-terse-mode
2298 (vc-up-to-date-p filename))))
2299 (vc-dired-reformat-line (vc-call dired-state-info filename))
2300 (forward-line 1))
2302 (dired-kill-line))))
2303 ;; any other line
2304 (t (forward-line 1))))
2305 (vc-dired-purge))
2306 (message "Getting version information... done")
2307 (save-restriction
2308 (widen)
2309 (cond ((eq (count-lines (point-min) (point-max)) 1)
2310 (goto-char (point-min))
2311 (message "No files locked under %s" default-directory)))))
2313 (defun vc-dired-purge ()
2314 "Remove empty subdirs."
2315 (let (subdir)
2316 (goto-char (point-min))
2317 (while (setq subdir (dired-get-subdir))
2318 (forward-line 2)
2319 (if (dired-get-filename nil t)
2320 (if (not (dired-next-subdir 1 t))
2321 (goto-char (point-max)))
2322 (forward-line -2)
2323 (if (not (string= (dired-current-directory) default-directory))
2324 (dired-do-kill-lines t "")
2325 ;; We cannot remove the top level directory.
2326 ;; Just make it look a little nicer.
2327 (forward-line 1)
2328 (kill-line)
2329 (if (not (dired-next-subdir 1 t))
2330 (goto-char (point-max))))))
2331 (goto-char (point-min))))
2333 (defun vc-dired-buffers-for-dir (dir)
2334 "Return a list of all vc-dired buffers that currently display DIR."
2335 (let (result)
2336 ;; Check whether dired is loaded.
2337 (when (fboundp 'dired-buffers-for-dir)
2338 (mapcar (lambda (buffer)
2339 (with-current-buffer buffer
2340 (if vc-dired-mode
2341 (setq result (append result (list buffer))))))
2342 (dired-buffers-for-dir dir)))
2343 result))
2345 (defun vc-dired-resynch-file (file)
2346 "Update the entries for FILE in any VC Dired buffers that list it."
2347 (let ((buffers (vc-dired-buffers-for-dir (file-name-directory file))))
2348 (when buffers
2349 (mapcar (lambda (buffer)
2350 (with-current-buffer buffer
2351 (if (dired-goto-file file)
2352 ;; bind vc-dired-terse-mode to nil so that
2353 ;; files won't vanish when they are checked in
2354 (let ((vc-dired-terse-mode nil))
2355 (dired-do-redisplay 1)))))
2356 buffers))))
2358 ;;;###autoload
2359 (defun vc-directory (dir read-switches)
2360 "Create a buffer in VC Dired Mode for directory DIR.
2362 See Info node `VC Dired Mode'.
2364 With prefix arg READ-SWITCHES, specify a value to override
2365 `dired-listing-switches' when generating the listing."
2366 (interactive "DDired under VC (directory): \nP")
2367 (let ((vc-dired-switches (concat vc-dired-listing-switches
2368 (if vc-dired-recurse "R" ""))))
2369 (if read-switches
2370 (setq vc-dired-switches
2371 (read-string "Dired listing switches: "
2372 vc-dired-switches)))
2373 (require 'dired)
2374 (require 'dired-aux)
2375 (switch-to-buffer
2376 (dired-internal-noselect (expand-file-name (file-name-as-directory dir))
2377 vc-dired-switches
2378 'vc-dired-mode))))
2381 ;; Named-configuration entry points
2383 (defun vc-snapshot-precondition (dir)
2384 "Scan the tree below DIR, looking for files not up-to-date.
2385 If any file is not up-to-date, return the name of the first such file.
2386 \(This means, neither snapshot creation nor retrieval is allowed.\)
2387 If one or more of the files are currently visited, return `visited'.
2388 Otherwise, return nil."
2389 (let ((status nil))
2390 (catch 'vc-locked-example
2391 (vc-file-tree-walk
2393 (lambda (f)
2394 (if (not (vc-up-to-date-p f)) (throw 'vc-locked-example f)
2395 (if (get-file-buffer f) (setq status 'visited)))))
2396 status)))
2398 ;;;###autoload
2399 (defun vc-create-snapshot (dir name branchp)
2400 "Descending recursively from DIR, make a snapshot called NAME.
2401 For each registered file, the version level of its latest version
2402 becomes part of the named configuration. If the prefix argument
2403 BRANCHP is given, the snapshot is made as a new branch and the files
2404 are checked out in that new branch."
2405 (interactive
2406 (list (read-file-name "Directory: " default-directory default-directory t)
2407 (read-string "New snapshot name: ")
2408 current-prefix-arg))
2409 (message "Making %s... " (if branchp "branch" "snapshot"))
2410 (if (file-directory-p dir) (setq dir (file-name-as-directory dir)))
2411 (vc-call-backend (vc-responsible-backend dir)
2412 'create-snapshot dir name branchp)
2413 (message "Making %s... done" (if branchp "branch" "snapshot")))
2415 (defun vc-default-create-snapshot (backend dir name branchp)
2416 (when branchp
2417 (error "VC backend %s does not support module branches" backend))
2418 (let ((result (vc-snapshot-precondition dir)))
2419 (if (stringp result)
2420 (error "File %s is not up-to-date" result)
2421 (vc-file-tree-walk
2423 (lambda (f)
2424 (vc-call assign-name f name))))))
2426 ;;;###autoload
2427 (defun vc-retrieve-snapshot (dir name)
2428 "Descending recursively from DIR, retrieve the snapshot called NAME.
2429 If NAME is empty, it refers to the latest versions.
2430 If locking is used for the files in DIR, then there must not be any
2431 locked files at or below DIR (but if NAME is empty, locked files are
2432 allowed and simply skipped)."
2433 (interactive
2434 (list (read-file-name "Directory: " default-directory default-directory t)
2435 (read-string "Snapshot name to retrieve (default latest versions): ")))
2436 (let ((update (yes-or-no-p "Update any affected buffers? "))
2437 (msg (if (or (not name) (string= name ""))
2438 (format "Updating %s... " (abbreviate-file-name dir))
2439 (format "Retrieving snapshot into %s... "
2440 (abbreviate-file-name dir)))))
2441 (message msg)
2442 (vc-call-backend (vc-responsible-backend dir)
2443 'retrieve-snapshot dir name update)
2444 (message (concat msg "done"))))
2446 (defun vc-default-retrieve-snapshot (backend dir name update)
2447 (if (string= name "")
2448 (progn
2449 (vc-file-tree-walk
2451 (lambda (f) (and
2452 (vc-up-to-date-p f)
2453 (vc-error-occurred
2454 (vc-call checkout f nil "")
2455 (if update (vc-resynch-buffer f t t)))))))
2456 (let ((result (vc-snapshot-precondition dir)))
2457 (if (stringp result)
2458 (error "File %s is locked" result)
2459 (setq update (and (eq result 'visited) update))
2460 (vc-file-tree-walk
2462 (lambda (f) (vc-error-occurred
2463 (vc-call checkout f nil name)
2464 (if update (vc-resynch-buffer f t t)))))))))
2466 ;; Miscellaneous other entry points
2468 ;;;###autoload
2469 (defun vc-print-log ()
2470 "List the change log of the current buffer in a window."
2471 (interactive)
2472 (vc-ensure-vc-buffer)
2473 (let ((file buffer-file-name))
2474 (vc-call print-log file)
2475 (set-buffer "*vc*")
2476 (pop-to-buffer (current-buffer))
2477 (if (fboundp 'log-view-mode) (log-view-mode))
2478 (vc-exec-after
2479 `(let ((inhibit-read-only t))
2480 (goto-char (point-max)) (forward-line -1)
2481 (while (looking-at "=*\n")
2482 (delete-char (- (match-end 0) (match-beginning 0)))
2483 (forward-line -1))
2484 (goto-char (point-min))
2485 (if (looking-at "[\b\t\n\v\f\r ]+")
2486 (delete-char (- (match-end 0) (match-beginning 0))))
2487 (shrink-window-if-larger-than-buffer)
2488 ;; move point to the log entry for the current version
2489 (vc-call-backend ',(vc-backend file)
2490 'show-log-entry
2491 ',(vc-workfile-version file))
2492 (set-buffer-modified-p nil)))))
2494 (defun vc-default-show-log-entry (backend rev)
2495 (if (fboundp 'log-view-goto-rev)
2496 (log-view-goto-rev rev)))
2498 (defun vc-default-comment-history (backend file)
2499 "Return a string with all log entries stored in BACKEND for FILE."
2500 (if (vc-find-backend-function backend 'print-log)
2501 (with-current-buffer "*vc*"
2502 (vc-call print-log file)
2503 (vc-call wash-log file)
2504 (buffer-string))))
2506 (defun vc-default-wash-log (backend file)
2507 "Remove all non-comment information from log output.
2508 This default implementation works for RCS logs; backends should override
2509 it if their logs are not in RCS format."
2510 (let ((separator (concat "^-+\nrevision [0-9.]+\ndate: .*\n"
2511 "\\(branches: .*;\n\\)?"
2512 "\\(\\*\\*\\* empty log message \\*\\*\\*\n\\)?")))
2513 (goto-char (point-max)) (forward-line -1)
2514 (while (looking-at "=*\n")
2515 (delete-char (- (match-end 0) (match-beginning 0)))
2516 (forward-line -1))
2517 (goto-char (point-min))
2518 (if (looking-at "[\b\t\n\v\f\r ]+")
2519 (delete-char (- (match-end 0) (match-beginning 0))))
2520 (goto-char (point-min))
2521 (re-search-forward separator nil t)
2522 (delete-region (point-min) (point))
2523 (while (re-search-forward separator nil t)
2524 (delete-region (match-beginning 0) (match-end 0)))))
2526 ;;;###autoload
2527 (defun vc-revert-buffer ()
2528 "Revert the current buffer's file to the version it was based on.
2529 This asks for confirmation if the buffer contents are not identical
2530 to that version. This function does not automatically pick up newer
2531 changes found in the master file; use \\[universal-argument] \\[vc-next-action] to do so."
2532 (interactive)
2533 (vc-ensure-vc-buffer)
2534 ;; Make sure buffer is saved. If the user says `no', abort since
2535 ;; we cannot show the changes and ask for confirmation to discard them.
2536 (vc-buffer-sync nil)
2537 (let ((file buffer-file-name)
2538 ;; This operation should always ask for confirmation.
2539 (vc-suppress-confirm nil)
2540 (obuf (current-buffer))
2541 status)
2542 (if (vc-up-to-date-p file)
2543 (unless (yes-or-no-p "File seems up-to-date. Revert anyway? ")
2544 (error "Revert canceled")))
2545 (unless (vc-workfile-unchanged-p file)
2546 ;; vc-diff selects the new window, which is not what we want:
2547 ;; if the new window is on another frame, that'd require the user
2548 ;; moving her mouse to answer the yes-or-no-p question.
2549 (let ((win (save-selected-window
2550 (setq status (vc-diff nil t)) (selected-window))))
2551 (vc-exec-after `(message nil))
2552 (when status
2553 (unwind-protect
2554 (unless (yes-or-no-p "Discard changes? ")
2555 (error "Revert canceled"))
2556 (select-window win)
2557 (if (one-window-p t)
2558 (if (window-dedicated-p (selected-window))
2559 (make-frame-invisible))
2560 (delete-window))))))
2561 (set-buffer obuf)
2562 ;; Do the reverting
2563 (message "Reverting %s..." file)
2564 (vc-revert-file file)
2565 (message "Reverting %s...done" file)))
2567 ;;;###autoload
2568 (defun vc-update ()
2569 "Update the current buffer's file to the latest version on its branch.
2570 If the file contains no changes, and is not locked, then this simply replaces
2571 the working file with the latest version on its branch. If the file contains
2572 changes, and the backend supports merging news, then any recent changes from
2573 the current branch are merged into the working file."
2574 (interactive)
2575 (vc-ensure-vc-buffer)
2576 (vc-buffer-sync nil)
2577 (let ((file buffer-file-name))
2578 (if (vc-up-to-date-p file)
2579 (vc-checkout file nil "")
2580 (if (eq (vc-checkout-model file) 'locking)
2581 (if (eq (vc-state file) 'edited)
2582 (error
2583 (substitute-command-keys
2584 "File is locked--type \\[vc-revert-buffer] to discard changes"))
2585 (error
2586 (substitute-command-keys
2587 "Unexpected file state (%s)--type \\[vc-next-action] to correct")
2588 (vc-state file)))
2589 (if (not (vc-find-backend-function (vc-backend file) 'merge-news))
2590 (error "Sorry, merging news is not implemented for %s"
2591 (vc-backend file))
2592 (vc-call merge-news file)
2593 (vc-resynch-window file t t))))))
2595 (defun vc-version-backup-file (file &optional rev)
2596 "Return name of backup file for revision REV of FILE.
2597 If version backups should be used for FILE, and there exists
2598 such a backup for REV or the current workfile version of file,
2599 return its name; otherwise return nil."
2600 (when (vc-call make-version-backups-p file)
2601 (let ((backup-file (vc-version-backup-file-name file rev)))
2602 (if (file-exists-p backup-file)
2603 backup-file
2604 ;; there is no automatic backup, but maybe the user made one manually
2605 (setq backup-file (vc-version-backup-file-name file rev 'manual))
2606 (if (file-exists-p backup-file)
2607 backup-file)))))
2609 (defun vc-revert-file (file)
2610 "Revert FILE back to the version it was based on."
2611 (with-vc-properties
2612 file
2613 (let ((backup-file (vc-version-backup-file file)))
2614 (when backup-file
2615 (copy-file backup-file file 'ok-if-already-exists 'keep-date)
2616 (vc-delete-automatic-version-backups file))
2617 (vc-call revert file backup-file))
2618 `((vc-state . up-to-date)
2619 (vc-checkout-time . ,(nth 5 (file-attributes file)))))
2620 (vc-resynch-buffer file t t))
2622 ;;;###autoload
2623 (defun vc-cancel-version (norevert)
2624 "Get rid of most recently checked in version of this file.
2625 A prefix argument NOREVERT means do not revert the buffer afterwards."
2626 (interactive "P")
2627 (vc-ensure-vc-buffer)
2628 (let* ((file (buffer-file-name))
2629 (backend (vc-backend file))
2630 (target (vc-workfile-version file))
2631 (config (current-window-configuration)) done)
2632 (cond
2633 ((not (vc-find-backend-function backend 'cancel-version))
2634 (error "Sorry, canceling versions is not supported under %s" backend))
2635 ((not (vc-call latest-on-branch-p file))
2636 (error "This is not the latest version; VC cannot cancel it"))
2637 ((not (vc-up-to-date-p file))
2638 (error (substitute-command-keys "File is not up to date; use \\[vc-revert-buffer] to discard changes"))))
2639 (if (null (yes-or-no-p (format "Remove version %s from master? " target)))
2640 (error "Aborted")
2641 (setq norevert (or norevert (not
2642 (yes-or-no-p "Revert buffer to most recent remaining version? "))))
2644 (message "Removing last change from %s..." file)
2645 (with-vc-properties
2646 file
2647 (vc-call cancel-version file norevert)
2648 `((vc-state . ,(if norevert 'edited 'up-to-date))
2649 (vc-checkout-time . ,(if norevert
2651 (nth 5 (file-attributes file))))
2652 (vc-workfile-version . nil)))
2653 (message "Removing last change from %s...done" file)
2655 (cond
2656 (norevert ;; clear version headers and mark the buffer modified
2657 (set-visited-file-name file)
2658 (when (not vc-make-backup-files)
2659 ;; inhibit backup for this buffer
2660 (make-local-variable 'backup-inhibited)
2661 (setq backup-inhibited t))
2662 (setq buffer-read-only nil)
2663 (vc-clear-headers)
2664 (vc-mode-line file)
2665 (vc-dired-resynch-file file))
2666 (t ;; revert buffer to file on disk
2667 (vc-resynch-buffer file t t)))
2668 (message "Version %s has been removed from the master" target))))
2670 ;;;###autoload
2671 (defun vc-switch-backend (file backend)
2672 "Make BACKEND the current version control system for FILE.
2673 FILE must already be registered in BACKEND. The change is not
2674 permanent, only for the current session. This function only changes
2675 VC's perspective on FILE, it does not register or unregister it.
2676 By default, this command cycles through the registered backends.
2677 To get a prompt, use a prefix argument."
2678 (interactive
2679 (list
2680 buffer-file-name
2681 (let ((backend (vc-backend buffer-file-name))
2682 (backends nil))
2683 ;; Find the registered backends.
2684 (dolist (backend vc-handled-backends)
2685 (when (vc-call-backend backend 'registered buffer-file-name)
2686 (push backend backends)))
2687 ;; Find the next backend.
2688 (let ((def (car (delq backend (append (memq backend backends) backends))))
2689 (others (delete backend backends)))
2690 (cond
2691 ((null others) (error "No other backend to switch to"))
2692 (current-prefix-arg
2693 (intern
2694 (upcase
2695 (completing-read
2696 (format "Switch to backend [%s]: " def)
2697 (mapcar (lambda (b) (list (downcase (symbol-name b)))) backends)
2698 nil t nil nil (downcase (symbol-name def))))))
2699 (t def))))))
2700 (unless (eq backend (vc-backend file))
2701 (vc-file-clearprops file)
2702 (vc-file-setprop file 'vc-backend backend)
2703 ;; Force recomputation of the state
2704 (unless (vc-call-backend backend 'registered file)
2705 (vc-file-clearprops file)
2706 (error "%s is not registered in %s" file backend))
2707 (vc-mode-line file)))
2709 ;;;###autoload
2710 (defun vc-transfer-file (file new-backend)
2711 "Transfer FILE to another version control system NEW-BACKEND.
2712 If NEW-BACKEND has a higher precedence than FILE's current backend
2713 \(i.e. it comes earlier in `vc-handled-backends'), then register FILE in
2714 NEW-BACKEND, using the version number from the current backend as the
2715 base level. If NEW-BACKEND has a lower precedence than the current
2716 backend, then commit all changes that were made under the current
2717 backend to NEW-BACKEND, and unregister FILE from the current backend.
2718 \(If FILE is not yet registered under NEW-BACKEND, register it.)"
2719 (let* ((old-backend (vc-backend file))
2720 (edited (memq (vc-state file) '(edited needs-merge)))
2721 (registered (vc-call-backend new-backend 'registered file))
2722 (move
2723 (and registered ; Never move if not registered in new-backend yet.
2724 ;; move if new-backend comes later in vc-handled-backends
2725 (or (memq new-backend (memq old-backend vc-handled-backends))
2726 (y-or-n-p "Final transfer? "))))
2727 (comment nil))
2728 (if (eq old-backend new-backend)
2729 (error "%s is the current backend of %s" new-backend file))
2730 (if registered
2731 (set-file-modes file (logior (file-modes file) 128))
2732 ;; `registered' might have switched under us.
2733 (vc-switch-backend file old-backend)
2734 (let* ((rev (vc-workfile-version file))
2735 (modified-file (and edited (make-temp-file file)))
2736 (unmodified-file (and modified-file (vc-version-backup-file file))))
2737 ;; Go back to the base unmodified file.
2738 (unwind-protect
2739 (progn
2740 (when modified-file
2741 (copy-file file modified-file 'ok-if-already-exists)
2742 ;; If we have a local copy of the unmodified file, handle that
2743 ;; here and not in vc-revert-file because we don't want to
2744 ;; delete that copy -- it is still useful for OLD-BACKEND.
2745 (if unmodified-file
2746 (copy-file unmodified-file file 'ok-if-already-exists)
2747 (if (y-or-n-p "Get base version from master? ")
2748 (vc-revert-file file))))
2749 (vc-call-backend new-backend 'receive-file file rev))
2750 (when modified-file
2751 (vc-switch-backend file new-backend)
2752 (unless (eq (vc-checkout-model file) 'implicit)
2753 (vc-checkout file t nil))
2754 (rename-file modified-file file 'ok-if-already-exists)
2755 (vc-file-setprop file 'vc-checkout-time nil)))))
2756 (when move
2757 (vc-switch-backend file old-backend)
2758 (setq comment (vc-call comment-history file))
2759 (vc-call unregister file))
2760 (vc-switch-backend file new-backend)
2761 (when (or move edited)
2762 (vc-file-setprop file 'vc-state 'edited)
2763 (vc-mode-line file)
2764 (vc-checkin file nil comment (stringp comment)))))
2766 (defun vc-default-unregister (backend file)
2767 "Default implementation of `vc-unregister', signals an error."
2768 (error "Unregistering files is not supported for %s" backend))
2770 (defun vc-default-receive-file (backend file rev)
2771 "Let BACKEND receive FILE from another version control system."
2772 (vc-call-backend backend 'register file rev ""))
2774 (defun vc-rename-master (oldmaster newfile templates)
2775 "Rename OLDMASTER to be the master file for NEWFILE based on TEMPLATES."
2776 (let* ((dir (file-name-directory (expand-file-name oldmaster)))
2777 (newdir (or (file-name-directory newfile) ""))
2778 (newbase (file-name-nondirectory newfile))
2779 (masters
2780 ;; List of potential master files for `newfile'
2781 (mapcar
2782 (lambda (s) (vc-possible-master s newdir newbase))
2783 templates)))
2784 (if (or (file-symlink-p oldmaster)
2785 (file-symlink-p (file-name-directory oldmaster)))
2786 (error "This is unsafe in the presence of symbolic links"))
2787 (rename-file
2788 oldmaster
2789 (catch 'found
2790 ;; If possible, keep the master file in the same directory.
2791 (mapcar (lambda (f)
2792 (if (and f (string= (file-name-directory (expand-file-name f))
2793 dir))
2794 (throw 'found f)))
2795 masters)
2796 ;; If not, just use the first possible place.
2797 (mapcar (lambda (f)
2798 (and f
2799 (or (not (setq dir (file-name-directory f)))
2800 (file-directory-p dir))
2801 (throw 'found f)))
2802 masters)
2803 (error "New file lacks a version control directory")))))
2805 ;;;###autoload
2806 (defun vc-rename-file (old new)
2807 "Rename file OLD to NEW, and rename its master file likewise."
2808 (interactive "fVC rename file: \nFRename to: ")
2809 (let ((oldbuf (get-file-buffer old))
2810 (backend (vc-backend old)))
2811 (unless (or (null backend) (vc-find-backend-function backend 'rename-file))
2812 (error "Renaming files under %s is not supported in VC" backend))
2813 (if (and oldbuf (buffer-modified-p oldbuf))
2814 (error "Please save files before moving them"))
2815 (if (get-file-buffer new)
2816 (error "Already editing new file name"))
2817 (if (file-exists-p new)
2818 (error "New file already exists"))
2819 (when backend
2820 (if (and backend (not (vc-up-to-date-p old)))
2821 (error "Please check in files before moving them"))
2822 (vc-call-backend backend 'rename-file old new))
2823 ;; Move the actual file (unless the backend did it already)
2824 (if (or (not backend) (file-exists-p old))
2825 (rename-file old new))
2826 ;; ?? Renaming a file might change its contents due to keyword expansion.
2827 ;; We should really check out a new copy if the old copy was precisely equal
2828 ;; to some checked in version. However, testing for this is tricky....
2829 (if oldbuf
2830 (with-current-buffer oldbuf
2831 (let ((buffer-read-only buffer-read-only))
2832 (set-visited-file-name new))
2833 (vc-backend new)
2834 (vc-mode-line new)
2835 (set-buffer-modified-p nil)))))
2837 ;; Only defined in very recent Emacsen
2838 (defvar small-temporary-file-directory nil)
2840 ;;;###autoload
2841 (defun vc-update-change-log (&rest args)
2842 "Find change log file and add entries from recent version control logs.
2843 Normally, find log entries for all registered files in the default
2844 directory.
2846 With prefix arg of \\[universal-argument], only find log entries for the current buffer's file.
2848 With any numeric prefix arg, find log entries for all currently visited
2849 files that are under version control. This puts all the entries in the
2850 log for the default directory, which may not be appropriate.
2852 From a program, any ARGS are assumed to be filenames for which
2853 log entries should be gathered."
2854 (interactive
2855 (cond ((consp current-prefix-arg) ;C-u
2856 (list buffer-file-name))
2857 (current-prefix-arg ;Numeric argument.
2858 (let ((files nil)
2859 (buffers (buffer-list))
2860 file)
2861 (while buffers
2862 (setq file (buffer-file-name (car buffers)))
2863 (and file (vc-backend file)
2864 (setq files (cons file files)))
2865 (setq buffers (cdr buffers)))
2866 files))
2868 ;; Don't supply any filenames to backend; this means
2869 ;; it should find all relevant files relative to
2870 ;; the default-directory.
2871 nil)))
2872 (vc-call-backend (vc-responsible-backend default-directory)
2873 'update-changelog args))
2875 (defun vc-default-update-changelog (backend files)
2876 "Default implementation of update-changelog.
2877 Uses `rcs2log' which only works for RCS and CVS."
2878 ;; FIXME: We (c|sh)ould add support for cvs2cl
2879 (let ((odefault default-directory)
2880 (changelog (find-change-log))
2881 ;; Presumably not portable to non-Unixy systems, along with rcs2log:
2882 (tempfile (make-temp-file
2883 (expand-file-name "vc"
2884 (or small-temporary-file-directory
2885 temporary-file-directory))))
2886 (full-name (or add-log-full-name
2887 (user-full-name)
2888 (user-login-name)
2889 (format "uid%d" (number-to-string (user-uid)))))
2890 (mailing-address (or add-log-mailing-address
2891 user-mail-address)))
2892 (find-file-other-window changelog)
2893 (barf-if-buffer-read-only)
2894 (vc-buffer-sync)
2895 (undo-boundary)
2896 (goto-char (point-min))
2897 (push-mark)
2898 (message "Computing change log entries...")
2899 (message "Computing change log entries... %s"
2900 (unwind-protect
2901 (progn
2902 (setq default-directory odefault)
2903 (if (eq 0 (apply 'call-process
2904 (expand-file-name "rcs2log"
2905 exec-directory)
2906 nil (list t tempfile) nil
2907 "-c" changelog
2908 "-u" (concat (vc-user-login-name)
2909 "\t" full-name
2910 "\t" mailing-address)
2911 (mapcar
2912 (lambda (f)
2913 (file-relative-name
2914 (if (file-name-absolute-p f)
2916 (concat odefault f))))
2917 files)))
2918 "done"
2919 (pop-to-buffer
2920 (set-buffer (get-buffer-create "*vc*")))
2921 (erase-buffer)
2922 (insert-file tempfile)
2923 "failed"))
2924 (setq default-directory (file-name-directory changelog))
2925 (delete-file tempfile)))))
2927 ;; Annotate functionality
2929 ;; Declare globally instead of additional parameter to
2930 ;; temp-buffer-show-function (not possible to pass more than one
2931 ;; parameter). The use of annotate-ratio is deprecated in favor of
2932 ;; annotate-mode, which replaces it with the more sensible "span-to
2933 ;; days", along with autoscaling support.
2934 (defvar vc-annotate-ratio nil "Global variable.")
2935 (defvar vc-annotate-backend nil "Global variable.")
2937 (defconst vc-annotate-font-lock-keywords
2938 ;; The fontification is done by vc-annotate-lines instead of font-lock.
2939 '((vc-annotate-lines)))
2941 (defun vc-annotate-get-backend (buffer)
2942 "Return the backend matching \"Annotate\" buffer BUFFER.
2943 Return nil if no match made. Associations are made based on
2944 `vc-annotate-buffers'."
2945 (cdr (assoc buffer vc-annotate-buffers)))
2947 (define-derived-mode vc-annotate-mode fundamental-mode "Annotate"
2948 "Major mode for output buffers of the `vc-annotate' command.
2950 You can use the mode-specific menu to alter the time-span of the used
2951 colors. See variable `vc-annotate-menu-elements' for customizing the
2952 menu items."
2953 (set (make-local-variable 'truncate-lines) t)
2954 (set (make-local-variable 'font-lock-defaults)
2955 '(vc-annotate-font-lock-keywords t))
2956 (vc-annotate-add-menu))
2958 (defun vc-annotate-display-default (&optional ratio)
2959 "Display the output of \\[vc-annotate] using the default color range.
2960 The color range is given by `vc-annotate-color-map', scaled by RATIO
2961 if present. The current time is used as the offset."
2962 (interactive "e")
2963 (message "Redisplaying annotation...")
2964 (vc-annotate-display
2965 (if ratio (vc-annotate-time-span vc-annotate-color-map ratio)))
2966 (message "Redisplaying annotation...done"))
2968 (defun vc-annotate-display-autoscale (&optional full)
2969 "Highlight the output of \\[vc-annotate]] using an autoscaled color map.
2970 Autoscaling means that the map is scaled from the current time to the
2971 oldest annotation in the buffer, or, with argument FULL non-nil, to
2972 cover the range from the oldest annotation to the newest."
2973 (interactive)
2974 (let ((newest 0.0)
2975 (oldest 999999.) ;Any CVS users at the founding of Rome?
2976 (current (vc-annotate-convert-time (current-time)))
2977 date)
2978 (message "Redisplaying annotation...")
2979 ;; Run through this file and find the oldest and newest dates annotated.
2980 (save-excursion
2981 (goto-char (point-min))
2982 (while (setq date (vc-call-backend vc-annotate-backend 'annotate-time))
2983 (if (> date newest)
2984 (setq newest date))
2985 (if (< date oldest)
2986 (setq oldest date))))
2987 (vc-annotate-display
2988 (vc-annotate-time-span ;return the scaled colormap.
2989 vc-annotate-color-map
2990 (/ (- (if full newest current) oldest)
2991 (vc-annotate-car-last-cons vc-annotate-color-map)))
2992 (if full newest))
2993 (message "Redisplaying annotation...done \(%s\)"
2994 (if full
2995 (format "Spanned from %.1f to %.1f days old"
2996 (- current oldest)
2997 (- current newest))
2998 (format "Spanned to %.1f days old" (- current oldest))))))
3000 ;; Menu -- Using easymenu.el
3001 (defun vc-annotate-add-menu ()
3002 "Add the menu 'Annotate' to the menu bar in VC-Annotate mode."
3003 (let ((menu-elements vc-annotate-menu-elements)
3004 (menu-def
3005 '("VC-Annotate"
3006 ["Default" (unless (null vc-annotate-display-mode)
3007 (setq vc-annotate-display-mode nil)
3008 (vc-annotate-display-select))
3009 :style toggle :selected (null vc-annotate-display-mode)]))
3010 (oldest-in-map (vc-annotate-car-last-cons vc-annotate-color-map)))
3011 (while menu-elements
3012 (let* ((element (car menu-elements))
3013 (days (* element oldest-in-map)))
3014 (setq menu-elements (cdr menu-elements))
3015 (setq menu-def
3016 (append menu-def
3017 `([,(format "Span %.1f days" days)
3018 (unless (and (numberp vc-annotate-display-mode)
3019 (= vc-annotate-display-mode ,days))
3020 (vc-annotate-display-select nil ,days))
3021 :style toggle :selected
3022 (and (numberp vc-annotate-display-mode)
3023 (= vc-annotate-display-mode ,days)) ])))))
3024 (setq menu-def
3025 (append menu-def
3026 (list
3027 ["Span ..."
3028 (let ((days
3029 (float (string-to-number
3030 (read-string "Span how many days? ")))))
3031 (vc-annotate-display-select nil days)) t])
3032 (list "--")
3033 (list
3034 ["Span to Oldest"
3035 (unless (eq vc-annotate-display-mode 'scale)
3036 (vc-annotate-display-select nil 'scale))
3037 :style toggle :selected
3038 (eq vc-annotate-display-mode 'scale)])
3039 (list
3040 ["Span Oldest->Newest"
3041 (unless (eq vc-annotate-display-mode 'fullscale)
3042 (vc-annotate-display-select nil 'fullscale))
3043 :style toggle :selected
3044 (eq vc-annotate-display-mode 'fullscale)])))
3045 ;; Define the menu
3046 (if (or (featurep 'easymenu) (load "easymenu" t))
3047 (easy-menu-define vc-annotate-mode-menu vc-annotate-mode-map
3048 "VC Annotate Display Menu" menu-def))))
3050 (defun vc-annotate-display-select (&optional buffer mode)
3051 "Highlight the output of \\[vc-annotate].
3052 By default, the current buffer is highlighted, unless overridden by
3053 BUFFER. `vc-annotate-display-mode' specifies the highlighting mode to
3054 use; you may override this using the second optional arg MODE."
3055 (interactive)
3056 (if mode (setq vc-annotate-display-mode mode))
3057 (when buffer
3058 (set-buffer buffer)
3059 (display-buffer buffer))
3060 (if (not vc-annotate-mode) ; Turn on vc-annotate-mode if not done
3061 (vc-annotate-mode))
3062 (cond ((null vc-annotate-display-mode)
3063 (vc-annotate-display-default vc-annotate-ratio))
3064 ;; One of the auto-scaling modes
3065 ((eq vc-annotate-display-mode 'scale)
3066 (vc-annotate-display-autoscale))
3067 ((eq vc-annotate-display-mode 'fullscale)
3068 (vc-annotate-display-autoscale t))
3069 ((numberp vc-annotate-display-mode) ; A fixed number of days lookback
3070 (vc-annotate-display-default
3071 (/ vc-annotate-display-mode (vc-annotate-car-last-cons
3072 vc-annotate-color-map))))
3073 (t (error "No such display mode: %s"
3074 vc-annotate-display-mode))))
3076 ;;;; (defun vc-BACKEND-annotate-command (file buffer) ...)
3077 ;;;; Execute "annotate" on FILE by using `call-process' and insert
3078 ;;;; the contents in BUFFER.
3080 ;;;###autoload
3081 (defun vc-annotate (prefix)
3082 "Display the edit history of the current file using colours.
3084 This command creates a buffer that shows, for each line of the current
3085 file, when it was last edited and by whom. Additionally, colours are
3086 used to show the age of each line--blue means oldest, red means
3087 youngest, and intermediate colours indicate intermediate ages. By
3088 default, the time scale stretches back one year into the past;
3089 everything that is older than that is shown in blue.
3091 With a prefix argument, this command asks two questions in the
3092 minibuffer. First, you may enter a version number; then the buffer
3093 displays and annotates that version instead of the current version
3094 \(type RET in the minibuffer to leave that default unchanged). Then,
3095 you are prompted for the time span in days which the color range
3096 should cover. For example, a time span of 20 days means that changes
3097 over the past 20 days are shown in red to blue, according to their
3098 age, and everything that is older than that is shown in blue.
3100 Customization variables:
3102 `vc-annotate-menu-elements' customizes the menu elements of the
3103 mode-specific menu. `vc-annotate-color-map' and
3104 `vc-annotate-very-old-color' defines the mapping of time to
3105 colors. `vc-annotate-background' specifies the background color."
3106 (interactive "P")
3107 (vc-ensure-vc-buffer)
3108 (let* ((temp-buffer-name (concat "*Annotate " (buffer-name) "*"))
3109 (temp-buffer-show-function 'vc-annotate-display-select)
3110 (rev (vc-workfile-version (buffer-file-name)))
3111 (vc-annotate-version
3112 (if prefix (read-string
3113 (format "Annotate from version: (default %s) " rev)
3114 nil nil rev)
3115 rev)))
3116 (if prefix
3117 (setq vc-annotate-display-mode
3118 (float (string-to-number
3119 (read-string "Annotate span days: (default 20) "
3120 nil nil "20")))))
3121 (setq vc-annotate-backend (vc-backend (buffer-file-name)))
3122 (message "Annotating...")
3123 (if (not (vc-find-backend-function vc-annotate-backend 'annotate-command))
3124 (error "Sorry, annotating is not implemented for %s"
3125 vc-annotate-backend))
3126 (with-output-to-temp-buffer temp-buffer-name
3127 (vc-call-backend vc-annotate-backend 'annotate-command
3128 (file-name-nondirectory (buffer-file-name))
3129 (get-buffer temp-buffer-name)
3130 vc-annotate-version))
3131 ;; Don't use the temp-buffer-name until the buffer is created
3132 ;; (only after `with-output-to-temp-buffer'.)
3133 (setq vc-annotate-buffers
3134 (append vc-annotate-buffers
3135 (list (cons (get-buffer temp-buffer-name) vc-annotate-backend))))
3136 (message "Annotating... done")))
3138 (defun vc-annotate-car-last-cons (a-list)
3139 "Return car of last cons in association list A-LIST."
3140 (if (not (eq nil (cdr a-list)))
3141 (vc-annotate-car-last-cons (cdr a-list))
3142 (car (car a-list))))
3144 (defun vc-annotate-time-span (a-list span &optional quantize)
3145 "Apply factor SPAN to the time-span of association list A-LIST.
3146 Return the new alist.
3147 Optionally quantize to the factor of QUANTIZE."
3148 ;; Apply span to each car of every cons
3149 (if (not (eq nil a-list))
3150 (append (list (cons (* (car (car a-list)) span)
3151 (cdr (car a-list))))
3152 (vc-annotate-time-span (nthcdr (or quantize ; optional
3153 1) ; Default to cdr
3154 a-list) span quantize))))
3156 (defun vc-annotate-compcar (threshold a-list)
3157 "Test successive cons cells of A-LIST against THRESHOLD.
3158 Return the first cons cell with a car that is not less than THRESHOLD,
3159 nil if no such cell exists."
3160 (let ((i 1)
3161 (tmp-cons (car a-list)))
3162 (while (and tmp-cons (< (car tmp-cons) threshold))
3163 (setq tmp-cons (car (nthcdr i a-list)))
3164 (setq i (+ i 1)))
3165 tmp-cons)) ; Return the appropriate value
3167 (defun vc-annotate-convert-time (time)
3168 "Convert a time value to a floating-point number of days.
3169 The argument TIME is a list as returned by `current-time' or
3170 `encode-time', only the first two elements of that list are considered."
3171 (/ (+ (* (float (car time)) (lsh 1 16)) (cadr time)) 24 3600))
3173 (defun vc-annotate-difference (&optional offset)
3174 "Return the time span in days to the next annotation.
3175 This calls the backend function annotate-time, and returns the
3176 difference in days between the time returned and the current time,
3177 or OFFSET if present."
3178 (let ((next-time (vc-call-backend vc-annotate-backend 'annotate-time)))
3179 (if next-time
3180 (- (or offset
3181 (vc-call-backend vc-annotate-backend 'annotate-current-time))
3182 next-time))))
3184 (defun vc-default-annotate-current-time (backend)
3185 "Return the current time, encoded as fractional days."
3186 (vc-annotate-convert-time (current-time)))
3188 (defun vc-annotate-display (&optional color-map offset)
3189 "Highlight `vc-annotate' output in the current buffer.
3190 COLOR-MAP, if present, overrides `vc-annotate-color-map'.
3191 The annotations are relative to the current time, unless overridden by OFFSET.
3193 This function is obsolete, and has been replaced by
3194 `vc-annotate-display-select'."
3195 (if (and color-map (not (eq color-map vc-annotate-color-map)))
3196 (set (make-local-variable 'vc-annotate-color-map) color-map))
3197 (set (make-local-variable 'vc-annotate-offset) offset)
3198 (font-lock-mode 1))
3200 (defvar vc-annotate-offset nil)
3202 (defun vc-annotate-lines (limit)
3203 (let (difference)
3204 (while (and (< (point) limit)
3205 (setq difference (vc-annotate-difference vc-annotate-offset)))
3206 (let* ((color (or (vc-annotate-compcar difference vc-annotate-color-map)
3207 (cons nil vc-annotate-very-old-color)))
3208 ;; substring from index 1 to remove any leading `#' in the name
3209 (face-name (concat "vc-annotate-face-" (substring (cdr color) 1)))
3210 ;; Make the face if not done.
3211 (face (or (intern-soft face-name)
3212 (let ((tmp-face (make-face (intern face-name))))
3213 (set-face-foreground tmp-face (cdr color))
3214 (if vc-annotate-background
3215 (set-face-background tmp-face
3216 vc-annotate-background))
3217 tmp-face))) ; Return the face
3218 (point (point))
3219 overlay)
3220 (forward-line 1)
3221 (put-text-property point (point) 'face face)))
3222 ;; Pretend to font-lock there were no matches.
3223 nil))
3225 ;; Collect back-end-dependent stuff here
3227 (defalias 'vc-default-logentry-check 'ignore)
3229 (defun vc-check-headers ()
3230 "Check if the current file has any headers in it."
3231 (interactive)
3232 (vc-call-backend (vc-backend buffer-file-name) 'check-headers))
3234 (defun vc-default-check-headers (backend)
3235 "Default implementation of check-headers; always returns nil."
3236 nil)
3238 ;; Back-end-dependent stuff ends here.
3240 ;; Set up key bindings for use while editing log messages
3242 (define-derived-mode vc-log-mode text-mode "VC-Log"
3243 "Major mode for editing VC log entries.
3244 These bindings are added to the global keymap when you enter this mode:
3245 \\[vc-next-action] perform next logical version-control operation on current file
3246 \\[vc-register] register current file
3247 \\[vc-insert-headers] insert version-control headers in current file
3248 \\[vc-print-log] display change history of current file
3249 \\[vc-revert-buffer] revert buffer to latest version
3250 \\[vc-cancel-version] undo latest checkin
3251 \\[vc-diff] show diffs between file versions
3252 \\[vc-version-other-window] visit old version in another window
3253 \\[vc-directory] show all files locked by any user in or below .
3254 \\[vc-annotate] colorful display of the cvs annotate command
3255 \\[vc-update-change-log] add change log entry from recent checkins
3257 While you are entering a change log message for a version, the following
3258 additional bindings will be in effect.
3260 \\[vc-finish-logentry] proceed with check in, ending log message entry
3262 Whenever you do a checkin, your log comment is added to a ring of
3263 saved comments. These can be recalled as follows:
3265 \\[vc-next-comment] replace region with next message in comment ring
3266 \\[vc-previous-comment] replace region with previous message in comment ring
3267 \\[vc-comment-search-reverse] search backward for regexp in the comment ring
3268 \\[vc-comment-search-forward] search backward for regexp in the comment ring
3270 Entry to the change-log submode calls the value of `text-mode-hook', then
3271 the value of `vc-log-mode-hook'.
3273 Global user options:
3274 `vc-initial-comment' If non-nil, require user to enter a change
3275 comment upon first checkin of the file.
3277 `vc-keep-workfiles' Non-nil value prevents workfiles from being
3278 deleted when changes are checked in
3280 `vc-suppress-confirm' Suppresses some confirmation prompts.
3282 vc-BACKEND-header Which keywords to insert when adding headers
3283 with \\[vc-insert-headers]. Defaults to
3284 '(\"\%\W\%\") under SCCS, '(\"\$Id\$\") under
3285 RCS and CVS.
3287 `vc-static-header-alist' By default, version headers inserted in C files
3288 get stuffed in a static string area so that
3289 ident(RCS/CVS) or what(SCCS) can see them in
3290 the compiled object code. You can override
3291 this by setting this variable to nil, or change
3292 the header template by changing it.
3294 `vc-command-messages' if non-nil, display run messages from the
3295 actual version-control utilities (this is
3296 intended primarily for people hacking vc
3297 itself)."
3298 (make-local-variable 'vc-comment-ring-index))
3300 (defun vc-log-edit (file)
3301 "Set up `log-edit' for use with VC on FILE.
3302 If `log-edit' is not available, resort to `vc-log-mode'."
3303 (setq default-directory
3304 (if file (file-name-directory file)
3305 (with-current-buffer vc-parent-buffer default-directory)))
3306 (if (fboundp 'log-edit)
3307 (log-edit 'vc-finish-logentry nil
3308 (if file `(lambda () ',(list (file-name-nondirectory file)))
3309 ;; If FILE is nil, we were called from vc-dired.
3310 (lambda ()
3311 (with-current-buffer vc-parent-buffer
3312 (dired-get-marked-files t)))))
3313 (vc-log-mode))
3314 (set (make-local-variable 'vc-log-file) file)
3315 (make-local-variable 'vc-log-version)
3316 (set-buffer-modified-p nil)
3317 (setq buffer-file-name nil))
3319 ;; These things should probably be generally available
3321 (defun vc-file-tree-walk (dirname func &rest args)
3322 "Walk recursively through DIRNAME.
3323 Invoke FUNC f ARGS on each VC-managed file f underneath it."
3324 (vc-file-tree-walk-internal (expand-file-name dirname) func args)
3325 (message "Traversing directory %s...done" dirname))
3327 (defun vc-file-tree-walk-internal (file func args)
3328 (if (not (file-directory-p file))
3329 (if (vc-backend file) (apply func file args))
3330 (message "Traversing directory %s..." (abbreviate-file-name file))
3331 (let ((dir (file-name-as-directory file)))
3332 (mapcar
3333 (lambda (f) (or
3334 (string-equal f ".")
3335 (string-equal f "..")
3336 (member f vc-directory-exclusion-list)
3337 (let ((dirf (expand-file-name f dir)))
3339 (file-symlink-p dirf);; Avoid possible loops
3340 (vc-file-tree-walk-internal dirf func args)))))
3341 (directory-files dir)))))
3343 (provide 'vc)
3345 ;; DEVELOPER'S NOTES ON CONCURRENCY PROBLEMS IN THIS CODE
3347 ;; These may be useful to anyone who has to debug or extend the package.
3348 ;; (Note that this information corresponds to versions 5.x. Some of it
3349 ;; might have been invalidated by the additions to support branching
3350 ;; and RCS keyword lookup. AS, 1995/03/24)
3352 ;; A fundamental problem in VC is that there are time windows between
3353 ;; vc-next-action's computations of the file's version-control state and
3354 ;; the actions that change it. This is a window open to lossage in a
3355 ;; multi-user environment; someone else could nip in and change the state
3356 ;; of the master during it.
3358 ;; The performance problem is that rlog/prs calls are very expensive; we want
3359 ;; to avoid them as much as possible.
3361 ;; ANALYSIS:
3363 ;; The performance problem, it turns out, simplifies in practice to the
3364 ;; problem of making vc-state fast. The two other functions that call
3365 ;; prs/rlog will not be so commonly used that the slowdown is a problem; one
3366 ;; makes snapshots, the other deletes the calling user's last change in the
3367 ;; master.
3369 ;; The race condition implies that we have to either (a) lock the master
3370 ;; during the entire execution of vc-next-action, or (b) detect and
3371 ;; recover from errors resulting from dispatch on an out-of-date state.
3373 ;; Alternative (a) appears to be infeasible. The problem is that we can't
3374 ;; guarantee that the lock will ever be removed. Suppose a user starts a
3375 ;; checkin, the change message buffer pops up, and the user, having wandered
3376 ;; off to do something else, simply forgets about it?
3378 ;; Alternative (b), on the other hand, works well with a cheap way to speed up
3379 ;; vc-state. Usually, if a file is registered, we can read its locked/
3380 ;; unlocked state and its current owner from its permissions.
3382 ;; This shortcut will fail if someone has manually changed the workfile's
3383 ;; permissions; also if developers are munging the workfile in several
3384 ;; directories, with symlinks to a master (in this latter case, the
3385 ;; permissions shortcut will fail to detect a lock asserted from another
3386 ;; directory).
3388 ;; Note that these cases correspond exactly to the errors which could happen
3389 ;; because of a competing checkin/checkout race in between two instances of
3390 ;; vc-next-action.
3392 ;; For VC's purposes, a workfile/master pair may have the following states:
3394 ;; A. Unregistered. There is a workfile, there is no master.
3396 ;; B. Registered and not locked by anyone.
3398 ;; C. Locked by calling user and unchanged.
3400 ;; D. Locked by the calling user and changed.
3402 ;; E. Locked by someone other than the calling user.
3404 ;; This makes for 25 states and 20 error conditions. Here's the matrix:
3406 ;; VC's idea of state
3407 ;; |
3408 ;; V Actual state RCS action SCCS action Effect
3409 ;; A B C D E
3410 ;; A . 1 2 3 4 ci -u -t- admin -fb -i<file> initial admin
3411 ;; B 5 . 6 7 8 co -l get -e checkout
3412 ;; C 9 10 . 11 12 co -u unget; get revert
3413 ;; D 13 14 15 . 16 ci -u -m<comment> delta -y<comment>; get checkin
3414 ;; E 17 18 19 20 . rcs -u -M -l unget -n ; get -g steal lock
3416 ;; All commands take the master file name as a last argument (not shown).
3418 ;; In the discussion below, a "self-race" is a pathological situation in
3419 ;; which VC operations are being attempted simultaneously by two or more
3420 ;; Emacsen running under the same username.
3422 ;; The vc-next-action code has the following windows:
3424 ;; Window P:
3425 ;; Between the check for existence of a master file and the call to
3426 ;; admin/checkin in vc-buffer-admin (apparent state A). This window may
3427 ;; never close if the initial-comment feature is on.
3429 ;; Window Q:
3430 ;; Between the call to vc-workfile-unchanged-p in and the immediately
3431 ;; following revert (apparent state C).
3433 ;; Window R:
3434 ;; Between the call to vc-workfile-unchanged-p in and the following
3435 ;; checkin (apparent state D). This window may never close.
3437 ;; Window S:
3438 ;; Between the unlock and the immediately following checkout during a
3439 ;; revert operation (apparent state C). Included in window Q.
3441 ;; Window T:
3442 ;; Between vc-state and the following checkout (apparent state B).
3444 ;; Window U:
3445 ;; Between vc-state and the following revert (apparent state C).
3446 ;; Includes windows Q and S.
3448 ;; Window V:
3449 ;; Between vc-state and the following checkin (apparent state
3450 ;; D). This window may never be closed if the user fails to complete the
3451 ;; checkin message. Includes window R.
3453 ;; Window W:
3454 ;; Between vc-state and the following steal-lock (apparent
3455 ;; state E). This window may never close if the user fails to complete
3456 ;; the steal-lock message. Includes window X.
3458 ;; Window X:
3459 ;; Between the unlock and the immediately following re-lock during a
3460 ;; steal-lock operation (apparent state E). This window may never close
3461 ;; if the user fails to complete the steal-lock message.
3463 ;; Errors:
3465 ;; Apparent state A ---
3467 ;; 1. File looked unregistered but is actually registered and not locked.
3469 ;; Potential cause: someone else's admin during window P, with
3470 ;; caller's admin happening before their checkout.
3472 ;; RCS: Prior to version 5.6.4, ci fails with message
3473 ;; "no lock set by <user>". From 5.6.4 onwards, VC uses the new
3474 ;; ci -i option and the message is "<file>,v: already exists".
3475 ;; SCCS: admin will fail with error (ad19).
3477 ;; We can let these errors be passed up to the user.
3479 ;; 2. File looked unregistered but is actually locked by caller, unchanged.
3481 ;; Potential cause: self-race during window P.
3483 ;; RCS: Prior to version 5.6.4, reverts the file to the last saved
3484 ;; version and unlocks it. From 5.6.4 onwards, VC uses the new
3485 ;; ci -i option, failing with message "<file>,v: already exists".
3486 ;; SCCS: will fail with error (ad19).
3488 ;; Either of these consequences is acceptable.
3490 ;; 3. File looked unregistered but is actually locked by caller, changed.
3492 ;; Potential cause: self-race during window P.
3494 ;; RCS: Prior to version 5.6.4, VC registers the caller's workfile as
3495 ;; a delta with a null change comment (the -t- switch will be
3496 ;; ignored). From 5.6.4 onwards, VC uses the new ci -i option,
3497 ;; failing with message "<file>,v: already exists".
3498 ;; SCCS: will fail with error (ad19).
3500 ;; 4. File looked unregistered but is locked by someone else.
3502 ;; Potential cause: someone else's admin during window P, with
3503 ;; caller's admin happening *after* their checkout.
3505 ;; RCS: Prior to version 5.6.4, ci fails with a
3506 ;; "no lock set by <user>" message. From 5.6.4 onwards,
3507 ;; VC uses the new ci -i option, failing with message
3508 ;; "<file>,v: already exists".
3509 ;; SCCS: will fail with error (ad19).
3511 ;; We can let these errors be passed up to the user.
3513 ;; Apparent state B ---
3515 ;; 5. File looked registered and not locked, but is actually unregistered.
3517 ;; Potential cause: master file got nuked during window P.
3519 ;; RCS: will fail with "RCS/<file>: No such file or directory"
3520 ;; SCCS: will fail with error ut4.
3522 ;; We can let these errors be passed up to the user.
3524 ;; 6. File looked registered and not locked, but is actually locked by the
3525 ;; calling user and unchanged.
3527 ;; Potential cause: self-race during window T.
3529 ;; RCS: in the same directory as the previous workfile, co -l will fail
3530 ;; with "co error: writable foo exists; checkout aborted". In any other
3531 ;; directory, checkout will succeed.
3532 ;; SCCS: will fail with ge17.
3534 ;; Either of these consequences is acceptable.
3536 ;; 7. File looked registered and not locked, but is actually locked by the
3537 ;; calling user and changed.
3539 ;; As case 6.
3541 ;; 8. File looked registered and not locked, but is actually locked by another
3542 ;; user.
3544 ;; Potential cause: someone else checks it out during window T.
3546 ;; RCS: co error: revision 1.3 already locked by <user>
3547 ;; SCCS: fails with ge4 (in directory) or ut7 (outside it).
3549 ;; We can let these errors be passed up to the user.
3551 ;; Apparent state C ---
3553 ;; 9. File looks locked by calling user and unchanged, but is unregistered.
3555 ;; As case 5.
3557 ;; 10. File looks locked by calling user and unchanged, but is actually not
3558 ;; locked.
3560 ;; Potential cause: a self-race in window U, or by the revert's
3561 ;; landing during window X of some other user's steal-lock or window S
3562 ;; of another user's revert.
3564 ;; RCS: succeeds, refreshing the file from the identical version in
3565 ;; the master.
3566 ;; SCCS: fails with error ut4 (p file nonexistent).
3568 ;; Either of these consequences is acceptable.
3570 ;; 11. File is locked by calling user. It looks unchanged, but is actually
3571 ;; changed.
3573 ;; Potential cause: the file would have to be touched by a self-race
3574 ;; during window Q.
3576 ;; The revert will succeed, removing whatever changes came with
3577 ;; the touch. It is theoretically possible that work could be lost.
3579 ;; 12. File looks like it's locked by the calling user and unchanged, but
3580 ;; it's actually locked by someone else.
3582 ;; Potential cause: a steal-lock in window V.
3584 ;; RCS: co error: revision <rev> locked by <user>; use co -r or rcs -u
3585 ;; SCCS: fails with error un2
3587 ;; We can pass these errors up to the user.
3589 ;; Apparent state D ---
3591 ;; 13. File looks like it's locked by the calling user and changed, but it's
3592 ;; actually unregistered.
3594 ;; Potential cause: master file got nuked during window P.
3596 ;; RCS: Prior to version 5.6.4, checks in the user's version as an
3597 ;; initial delta. From 5.6.4 onwards, VC uses the new ci -j
3598 ;; option, failing with message "no such file or directory".
3599 ;; SCCS: will fail with error ut4.
3601 ;; This case is kind of nasty. Under RCS prior to version 5.6.4,
3602 ;; VC may fail to detect the loss of previous version information.
3604 ;; 14. File looks like it's locked by the calling user and changed, but it's
3605 ;; actually unlocked.
3607 ;; Potential cause: self-race in window V, or the checkin happening
3608 ;; during the window X of someone else's steal-lock or window S of
3609 ;; someone else's revert.
3611 ;; RCS: ci will fail with "no lock set by <user>".
3612 ;; SCCS: delta will fail with error ut4.
3614 ;; 15. File looks like it's locked by the calling user and changed, but it's
3615 ;; actually locked by the calling user and unchanged.
3617 ;; Potential cause: another self-race --- a whole checkin/checkout
3618 ;; sequence by the calling user would have to land in window R.
3620 ;; SCCS: checks in a redundant delta and leaves the file unlocked as usual.
3621 ;; RCS: reverts to the file state as of the second user's checkin, leaving
3622 ;; the file unlocked.
3624 ;; It is theoretically possible that work could be lost under RCS.
3626 ;; 16. File looks like it's locked by the calling user and changed, but it's
3627 ;; actually locked by a different user.
3629 ;; RCS: ci error: no lock set by <user>
3630 ;; SCCS: unget will fail with error un2
3632 ;; We can pass these errors up to the user.
3634 ;; Apparent state E ---
3636 ;; 17. File looks like it's locked by some other user, but it's actually
3637 ;; unregistered.
3639 ;; As case 13.
3641 ;; 18. File looks like it's locked by some other user, but it's actually
3642 ;; unlocked.
3644 ;; Potential cause: someone released a lock during window W.
3646 ;; RCS: The calling user will get the lock on the file.
3647 ;; SCCS: unget -n will fail with cm4.
3649 ;; Either of these consequences will be OK.
3651 ;; 19. File looks like it's locked by some other user, but it's actually
3652 ;; locked by the calling user and unchanged.
3654 ;; Potential cause: the other user relinquishing a lock followed by
3655 ;; a self-race, both in window W.
3657 ;; Under both RCS and SCCS, both unlock and lock will succeed, making
3658 ;; the sequence a no-op.
3660 ;; 20. File looks like it's locked by some other user, but it's actually
3661 ;; locked by the calling user and changed.
3663 ;; As case 19.
3665 ;; PROBLEM CASES:
3667 ;; In order of decreasing severity:
3669 ;; Cases 11 and 15 are the only ones that potentially lose work.
3670 ;; They would require a self-race for this to happen.
3672 ;; Case 13 in RCS loses information about previous deltas, retaining
3673 ;; only the information in the current workfile. This can only happen
3674 ;; if the master file gets nuked in window P.
3676 ;; Case 3 in RCS and case 15 under SCCS insert a redundant delta with
3677 ;; no change comment in the master. This would require a self-race in
3678 ;; window P or R respectively.
3680 ;; Cases 2, 10, 19 and 20 do extra work, but make no changes.
3682 ;; Unfortunately, it appears to me that no recovery is possible in these
3683 ;; cases. They don't yield error messages, so there's no way to tell that
3684 ;; a race condition has occurred.
3686 ;; All other cases don't change either the workfile or the master, and
3687 ;; trigger command errors which the user will see.
3689 ;; Thus, there is no explicit recovery code.
3691 ;;; vc.el ends here