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>
9 ;; $Id: vc.el,v 1.342 2002/10/08 15:31:43 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)
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.
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>
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
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
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.
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'.
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
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
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 ;; * find-version (file rev buffer)
216 ;; Fetch revision REV of file FILE and put it into BUFFER.
217 ;; If REV is the empty string, fetch the head of the trunk.
218 ;; The implementation should pass the value of vc-checkout-switches
219 ;; to the backend command.
221 ;; * checkout (file &optional editable rev)
223 ;; Check out revision REV of FILE into the working area. If EDITABLE
224 ;; is non-nil, FILE should be writable by the user and if locking is
225 ;; used for FILE, a lock should also be set. If REV is non-nil, that
226 ;; is the revision to check out (default is current workfile version);
227 ;; if REV is the empty string, that means to check out the head of the
228 ;; trunk. The implementation should pass the value of vc-checkout-switches
229 ;; to the backend command.
231 ;; * revert (file &optional contents-done)
233 ;; Revert FILE back to the current workfile version. If optional
234 ;; arg CONTENTS-DONE is non-nil, then the contents of FILE have
235 ;; already been reverted from a version backup, and this function
236 ;; only needs to update the status of FILE within the backend.
238 ;; - cancel-version (file editable)
240 ;; Cancel the current workfile version of FILE, i.e. remove it from the
241 ;; master. EDITABLE non-nil means that FILE should be writable
242 ;; afterwards, and if locking is used for FILE, then a lock should also
243 ;; be set. If this function is not provided, trying to cancel a
244 ;; version is caught as an error.
246 ;; - merge (file rev1 rev2)
248 ;; Merge the changes between REV1 and REV2 into the current working file.
250 ;; - merge-news (file)
252 ;; Merge recent changes from the current branch into FILE.
254 ;; - steal-lock (file &optional version)
256 ;; Steal any lock on the current workfile version of FILE, or on
257 ;; VERSION if that is provided. This function is only needed if
258 ;; locking is used for files under this backend, and if files can
259 ;; indeed be locked by other users.
263 ;; * print-log (file)
265 ;; Insert the revision log of FILE into the *vc* buffer.
267 ;; - show-log-entry (version)
269 ;; If provided, search the log entry for VERSION in the current buffer,
270 ;; and make sure it is displayed in the buffer's window. The default
271 ;; implementation of this function works for RCS-style logs.
275 ;; Remove all non-comment information from the output of print-log. The
276 ;; default implementation of this function works for RCS-style logs.
278 ;; - logentry-check ()
280 ;; If defined, this function is run to find out whether the user
281 ;; entered a valid log entry for check-in. The log entry is in the
282 ;; current buffer, and if it is not a valid one, the function should
285 ;; - comment-history (file)
287 ;; Return a string containing all log entries that were made for FILE.
288 ;; This is used for transferring a file from one backend to another,
289 ;; retaining comment information. The default implementation of this
290 ;; function does this by calling print-log and then wash-log, and
291 ;; returning the resulting buffer contents as a string.
293 ;; - update-changelog (files)
295 ;; Using recent log entries, create ChangeLog entries for FILES, or for
296 ;; all files at or below the default-directory if FILES is nil. The
297 ;; default implementation runs rcs2log, which handles RCS- and
300 ;; * diff (file &optional rev1 rev2)
302 ;; Insert the diff for FILE into the *vc-diff* buffer. If REV1 and
303 ;; REV2 are non-nil, report differences from REV1 to REV2. If REV1
304 ;; is nil, use the current workfile version (as found in the
305 ;; repository) as the older version; if REV2 is nil, use the current
306 ;; workfile contents as the newer version. This function should
307 ;; pass the value of (vc-diff-switches-list BACKEND) to the backend
308 ;; command. It should return a status of either 0 (no differences
309 ;; found), or 1 (either non-empty diff or the diff is run
312 ;; - diff-tree (dir &optional rev1 rev2)
314 ;; Insert the diff for all files at and below DIR into the *vc-diff*
315 ;; buffer. The meaning of REV1 and REV2 is the same as for
316 ;; vc-BACKEND-diff. The default implementation does an explicit tree
317 ;; walk, calling vc-BACKEND-diff for each individual file.
319 ;; - annotate-command (file buf rev)
321 ;; If this function is provided, it should produce an annotated version
322 ;; of FILE in BUF, relative to version REV. This is currently only
323 ;; implemented for CVS, using the `cvs annotate' command.
325 ;; - annotate-time ()
327 ;; Only required if `annotate-command' is defined for the backend.
328 ;; Return the time of the next line of annotation at or after point,
329 ;; as a floating point fractional number of days. The helper
330 ;; function `vc-annotate-convert-time' may be useful for converting
331 ;; multi-part times as returned by `current-time' and `encode-time'
332 ;; to this format. Return nil if no more lines of annotation appear
333 ;; in the buffer. You can safely assume that point is placed at the
334 ;; beginning of each line, starting at `point-min'. The buffer that
335 ;; point is placed in is the Annotate output, as defined by the
338 ;; - annotate-current-time ()
340 ;; Only required if `annotate-command' is defined for the backend,
341 ;; AND you'd like the current time considered to be anything besides
342 ;; (vs-annotate-convert-time (current-time)) -- i.e. the current
343 ;; time with hours, minutes, and seconds included. Probably safe to
344 ;; ignore. Return the current-time, in units of fractional days.
348 ;; - create-snapshot (dir name branchp)
350 ;; Take a snapshot of the current state of files under DIR and name it
351 ;; NAME. This should make sure that files are up-to-date before
352 ;; proceeding with the action. DIR can also be a file and if BRANCHP
353 ;; is specified, NAME should be created as a branch and DIR should be
354 ;; checked out under this new branch. The default implementation does
355 ;; not support branches but does a sanity check, a tree traversal and
356 ;; for each file calls `assign-name'.
358 ;; - assign-name (file name)
360 ;; Give name NAME to the current version of FILE, assuming it is
361 ;; up-to-date. Only used by the default version of `create-snapshot'.
363 ;; - retrieve-snapshot (dir name update)
365 ;; Retrieve a named snapshot of all registered files at or below DIR.
366 ;; If UPDATE is non-nil, then update buffers of any files in the
367 ;; snapshot that are currently visited. The default implementation
368 ;; does a sanity check whether there aren't any uncommitted changes at
369 ;; or below DIR, and then performs a tree walk, using the `checkout'
370 ;; function to retrieve the corresponding versions.
374 ;; - make-version-backups-p (file)
376 ;; Return non-nil if unmodified repository versions of FILE should be
377 ;; backed up locally. If this is done, VC can perform `diff' and
378 ;; `revert' operations itself, without calling the backend system. The
379 ;; default implementation always returns nil.
381 ;; - previous-version (file rev)
383 ;; Return the version number that precedes REV for FILE.
385 ;; - check-headers ()
387 ;; Return non-nil if the current buffer contains any version headers.
389 ;; - clear-headers ()
391 ;; In the current buffer, reset all version headers to their unexpanded
392 ;; form. This function should be provided if the state-querying code
393 ;; for this backend uses the version headers to determine the state of
394 ;; a file. This function will then be called whenever VC changes the
395 ;; version control state in such a way that the headers would give
396 ;; wrong information.
398 ;; - rename-file (old new)
400 ;; Rename file OLD to NEW, both in the working area and in the
401 ;; repository. If this function is not provided, the command
402 ;; `vc-rename-file' will signal an error.
411 (require 'dired
) ; for dired-map-over-marks macro
412 (require 'dired-aux
)) ; for dired-kill-{line,tree}
414 (if (not (assoc 'vc-parent-buffer minor-mode-alist
))
415 (setq minor-mode-alist
416 (cons '(vc-parent-buffer vc-parent-buffer-name
)
419 ;; General customization
422 "Version-control system in Emacs."
425 (defcustom vc-suppress-confirm nil
426 "*If non-nil, treat user as expert; suppress yes-no prompts on some things."
430 (defcustom vc-delete-logbuf-window t
431 "*If non-nil, delete the *VC-log* buffer and window after each logical action.
432 If nil, bury that buffer instead.
433 This is most useful if you have multiple windows on a frame and would like to
434 preserve the setting."
438 (defcustom vc-initial-comment nil
439 "*If non-nil, prompt for initial comment when a file is registered."
443 (defcustom vc-default-init-version
"1.1"
444 "*A string used as the default version number when a new file is registered.
445 This can be overridden by giving a prefix argument to \\[vc-register]. This
446 can also be overridden by a particular VC backend."
451 (defcustom vc-command-messages nil
452 "*If non-nil, display run messages from back-end commands."
456 (defcustom vc-checkin-switches nil
457 "*A string or list of strings specifying extra switches for checkin.
458 These are passed to the checkin program by \\[vc-checkin]."
459 :type
'(choice (const :tag
"None" nil
)
460 (string :tag
"Argument String")
461 (repeat :tag
"Argument List"
466 (defcustom vc-checkout-switches nil
467 "*A string or list of strings specifying extra switches for checkout.
468 These are passed to the checkout program by \\[vc-checkout]."
469 :type
'(choice (const :tag
"None" nil
)
470 (string :tag
"Argument String")
471 (repeat :tag
"Argument List"
476 (defcustom vc-register-switches nil
477 "*A string or list of strings; extra switches for registering a file.
478 These are passed to the checkin program by \\[vc-register]."
479 :type
'(choice (const :tag
"None" nil
)
480 (string :tag
"Argument String")
481 (repeat :tag
"Argument List"
486 (defcustom vc-dired-listing-switches
"-al"
487 "*Switches passed to `ls' for vc-dired. MUST contain the `l' option."
492 (defcustom vc-dired-recurse t
493 "*If non-nil, show directory trees recursively in VC Dired."
498 (defcustom vc-dired-terse-display t
499 "*If non-nil, show only locked files in VC Dired."
504 (defcustom vc-directory-exclusion-list
'("SCCS" "RCS" "CVS")
505 "*List of directory names to be ignored when walking directory trees."
506 :type
'(repeat string
)
509 (defconst vc-maximum-comment-ring-size
32
510 "Maximum number of saved comments in the comment ring.")
512 (defcustom vc-diff-switches nil
513 "*A string or list of strings specifying switches for diff under VC.
514 When running diff under a given BACKEND, VC concatenates the values of
515 `diff-switches', `vc-diff-switches', and `vc-BACKEND-diff-switches' to
516 get the switches for that command. Thus, `vc-diff-switches' should
517 contain switches that are specific to version control, but not
518 specific to any particular backend."
519 :type
'(choice (const :tag
"None" nil
)
520 (string :tag
"Argument String")
521 (repeat :tag
"Argument List"
528 (defcustom vc-checkout-hook nil
529 "*Normal hook (list of functions) run after checking out a file.
535 (defcustom vc-annotate-display-mode nil
536 "Which mode to color the output of \\[vc-annotate] with by default."
537 :type
'(choice (const :tag
"Default" nil
)
538 (const :tag
"Scale to Oldest" scale
)
539 (const :tag
"Scale Oldest->Newest" fullscale
)
540 (number :tag
"Specify Fractional Number of Days"
545 (defcustom vc-checkin-hook nil
546 "*Normal hook (list of functions) run after a checkin is done.
549 :options
'(vc-comment-to-change-log)
553 (defcustom vc-before-checkin-hook nil
554 "*Normal hook (list of functions) run before a file is checked in.
559 (defcustom vc-logentry-check-hook nil
560 "*Normal hook run by `vc-backend-logentry-check'.
561 Use this to impose your own rules on the entry in addition to any the
562 version control backend imposes itself."
566 ;; Annotate customization
567 (defcustom vc-annotate-color-map
585 "*Association list of age versus color, for \\[vc-annotate].
586 Ages are given in units of fractional days. Default is eighteen steps
587 using a twenty day increment."
591 (defcustom vc-annotate-very-old-color
"#0046FF"
592 "*Color for lines older than the current color range in \\[vc-annotate]]."
596 (defcustom vc-annotate-background
"black"
597 "*Background color for \\[vc-annotate].
598 Default color is used if nil."
602 (defcustom vc-annotate-menu-elements
'(2 0.5 0.1 0.01)
603 "*Menu elements for the mode-specific menu of VC-Annotate mode.
604 List of factors, used to expand/compress the time scale. See `vc-annotate'."
605 :type
'(repeat number
)
608 ;; vc-annotate functionality (CVS only).
609 (defvar vc-annotate-mode nil
610 "Variable indicating if VC-Annotate mode is active.")
612 (defvar vc-annotate-mode-map
613 (let ((m (make-sparse-keymap)))
614 (define-key m
[menu-bar
] (make-sparse-keymap "VC-Annotate"))
616 "Local keymap used for VC-Annotate mode.")
618 (defvar vc-annotate-mode-menu nil
619 "Local keymap used for VC-Annotate mode's menu bar menu.")
621 ;; Header-insertion hair
623 (defcustom vc-static-header-alist
625 "\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n#endif /* lint */\n"))
626 "*Associate static header string templates with file types.
627 A \%s in the template is replaced with the first string associated with
628 the file's version control type in `vc-header-alist'."
629 :type
'(repeat (cons :format
"%v"
630 (regexp :tag
"File Type")
631 (string :tag
"Header String")))
634 (defcustom vc-comment-alist
635 '((nroff-mode ".\\\"" ""))
636 "*Special comment delimiters for generating VC headers.
637 Add an entry in this list if you need to override the normal `comment-start'
638 and `comment-end' variables. This will only be necessary if the mode language
639 is sensitive to blank lines."
640 :type
'(repeat (list :format
"%v"
642 (string :tag
"Comment Start")
643 (string :tag
"Comment End")))
646 (defcustom vc-checkout-carefully
(= (user-uid) 0)
647 "*This variable is obsolete
648 The corresponding checks are always done now.
649 From the old doc string:
651 Non-nil means be extra-careful in checkout.
652 Verify that the file really is not locked
653 and that its contents match what the master file says."
660 ;; Initialization code, to be done just once at load-time
661 (defvar vc-log-mode-map
662 (let ((map (make-sparse-keymap)))
663 (set-keymap-parent map text-mode-map
)
664 (define-key map
"\M-n" 'vc-next-comment
)
665 (define-key map
"\M-p" 'vc-previous-comment
)
666 (define-key map
"\M-r" 'vc-comment-search-reverse
)
667 (define-key map
"\M-s" 'vc-comment-search-forward
)
668 (define-key map
"\C-c\C-c" 'vc-finish-logentry
)
670 ;; Compatibility with old name. Should we bother ?
671 (defvar vc-log-entry-mode vc-log-mode-map
)
674 ;; Variables the user doesn't need to know about.
675 (defvar vc-log-operation nil
)
676 (defvar vc-log-after-operation-hook nil
)
677 (defvar vc-annotate-buffers nil
678 "Alist of current \"Annotate\" buffers and their corresponding backends.
679 The keys are \(BUFFER . BACKEND\). See also `vc-annotate-get-backend'.")
680 ;; In a log entry buffer, this is a local variable
681 ;; that points to the buffer for which it was made
682 ;; (either a file, or a VC dired buffer).
683 (defvar vc-parent-buffer nil
)
684 (put 'vc-parent-buffer
'permanent-local t
)
685 (defvar vc-parent-buffer-name nil
)
686 (put 'vc-parent-buffer-name
'permanent-local t
)
689 (defvar vc-log-version
)
691 (defvar vc-dired-mode nil
)
692 (make-variable-buffer-local 'vc-dired-mode
)
694 (defvar vc-comment-ring
(make-ring vc-maximum-comment-ring-size
))
695 (defvar vc-comment-ring-index nil
)
696 (defvar vc-last-comment-match
"")
698 ;; functions that operate on RCS revision numbers. This code should
699 ;; also be moved into the backends. It stays for now, however, since
700 ;; it is used in code below.
701 (defun vc-trunk-p (rev)
702 "Return t if REV is a revision on the trunk."
703 (not (eq nil
(string-match "\\`[0-9]+\\.[0-9]+\\'" rev
))))
705 (defun vc-branch-p (rev)
706 "Return t if REV is a branch revision."
707 (not (eq nil
(string-match "\\`[0-9]+\\(\\.[0-9]+\\.[0-9]+\\)*\\'" rev
))))
710 (defun vc-branch-part (rev)
711 "Return the branch part of a revision number REV."
712 (let ((index (string-match "\\.[0-9]+\\'" rev
)))
714 (substring rev
0 index
))))
716 (defun vc-minor-part (rev)
717 "Return the minor version number of a revision number REV."
718 (string-match "[0-9]+\\'" rev
)
719 (substring rev
(match-beginning 0) (match-end 0)))
721 (defun vc-default-previous-version (backend file rev
)
722 "Guess the version number immediately preceding REV for FILE.
723 This default implementation works for <major>.<minor>-style version numbers
724 as used by RCS and CVS."
725 (let ((branch (vc-branch-part rev
))
726 (minor-num (string-to-number (vc-minor-part rev
))))
729 ;; version does probably not start a branch or release
730 (concat branch
"." (number-to-string (1- minor-num
)))
732 ;; we are at the beginning of the trunk --
733 ;; don't know anything to return here
735 ;; we are at the beginning of a branch --
736 ;; return version of starting point
737 (vc-branch-part branch
))))))
739 ;; File property caching
741 (defun vc-clear-context ()
742 "Clear all cached file properties and the comment ring."
744 (fillarray vc-file-prop-obarray
0)
745 ;; Note: there is potential for minor lossage here if there is an open
746 ;; log buffer with a nonzero local value of vc-comment-ring-index.
747 (setq vc-comment-ring
(make-ring vc-maximum-comment-ring-size
)))
749 (defmacro with-vc-properties
(file form settings
)
750 "Execute FORM, then maybe set per-file properties for FILE.
751 SETTINGS is an association list of property/value pairs. After
752 executing FORM, set those properties from SETTINGS that have not yet
753 been updated to their corresponding values."
754 `(let ((vc-touched-properties (list t
)))
756 (mapcar (lambda (setting)
757 (let ((property (car setting
)))
758 (unless (memq property vc-touched-properties
)
759 (put (intern ,file vc-file-prop-obarray
)
760 property
(cdr setting
)))))
763 ;; Random helper functions
765 (defsubst vc-editable-p
(file)
766 "Return non-nil if FILE can be edited."
767 (or (eq (vc-checkout-model file
) 'implicit
)
768 (memq (vc-state file
) '(edited needs-merge
))))
770 ;; Two macros for elisp programming
772 (defmacro with-vc-file
(file comment
&rest body
)
773 "Check out a writable copy of FILE if necessary, then execute BODY.
774 Check in FILE with COMMENT (a string) after BODY has been executed.
775 FILE is passed through `expand-file-name'; BODY executed within
776 `save-excursion'. If FILE is not under version control, or locked by
777 somebody else, signal error."
778 (let ((filevar (make-symbol "file")))
779 `(let ((,filevar
(expand-file-name ,file
)))
780 (or (vc-backend ,filevar
)
781 (error (format "File not under version control: `%s'" file
)))
782 (unless (vc-editable-p ,filevar
)
783 (let ((state (vc-state ,filevar
)))
785 (error (format "`%s' is locking `%s'" state
,filevar
))
786 (vc-checkout ,filevar t
))))
789 (vc-checkin ,filevar nil
,comment
))))
791 (put 'with-vc-file
'lisp-indent-function
2)
794 (defmacro edit-vc-file
(file comment
&rest body
)
795 "Edit FILE under version control, executing body.
796 Checkin with COMMENT after executing BODY.
797 This macro uses `with-vc-file', passing args to it.
798 However, before executing BODY, find FILE, and after BODY, save buffer."
799 (let ((filevar (make-symbol "file")))
800 `(let ((,filevar
(expand-file-name ,file
)))
803 (set-buffer (find-file-noselect ,filevar
))
807 (put 'edit-vc-file
'lisp-indent-function
2)
809 (defun vc-ensure-vc-buffer ()
810 "Make sure that the current buffer visits a version-controlled file."
812 (set-buffer (find-file-noselect (dired-get-filename)))
813 (while vc-parent-buffer
814 (pop-to-buffer vc-parent-buffer
))
815 (if (not (buffer-file-name))
816 (error "Buffer %s is not associated with a file" (buffer-name))
817 (if (not (vc-backend (buffer-file-name)))
818 (error "File %s is not under version control" (buffer-file-name))))))
820 (defvar vc-binary-assoc nil
)
821 (defvar vc-binary-suffixes
822 (if (memq system-type
'(ms-dos windows-nt
))
823 '(".exe" ".com" ".bat" ".cmd" ".btm" "")
826 (defun vc-process-filter (p s
)
827 "An alternative output filter for async process P.
828 The only difference with the default filter is to insert S after markers."
829 (with-current-buffer (process-buffer p
)
831 (let ((inhibit-read-only t
))
832 (goto-char (process-mark p
))
834 (set-marker (process-mark p
) (point))))))
836 (defun vc-setup-buffer (&optional buf
)
837 "Prepare BUF for executing a VC command and make it current.
838 BUF defaults to \"*vc*\", can be a string and will be created if necessary."
839 (unless buf
(setq buf
"*vc*"))
840 (let ((camefrom (current-buffer))
841 (olddir default-directory
))
842 (set-buffer (get-buffer-create buf
))
843 (kill-all-local-variables)
844 (set (make-local-variable 'vc-parent-buffer
) camefrom
)
845 (set (make-local-variable 'vc-parent-buffer-name
)
846 (concat " from " (buffer-name camefrom
)))
847 (setq default-directory olddir
)
848 (let ((inhibit-read-only t
))
851 (defun vc-exec-after (code)
852 "Eval CODE when the current buffer's process is done.
853 If the current buffer has no process, just evaluate CODE.
854 Else, add CODE to the process' sentinel."
855 (let ((proc (get-buffer-process (current-buffer))))
857 ;; If there's no background process, just execute the code.
858 ((null proc
) (eval code
))
859 ;; If the background process has exited, reap it and try again
860 ((eq (process-status proc
) 'exit
)
861 (delete-process proc
)
862 (vc-exec-after code
))
863 ;; If a process is running, add CODE to the sentinel
864 ((eq (process-status proc
) 'run
)
865 (let ((sentinel (process-sentinel proc
)))
866 (set-process-sentinel proc
868 (with-current-buffer ',(current-buffer)
869 (goto-char (process-mark p
))
870 ,@(append (cdr (cdr (cdr ;strip off `with-current-buffer buf
872 (car (cdr (cdr ;strip off `lambda (p s)'
874 (list `(vc-exec-after ',code
))))))))
875 (t (error "Unexpected process state"))))
878 (defvar vc-post-command-functions nil
879 "Hook run at the end of `vc-do-command'.
880 Each function is called inside the buffer in which the command was run
881 and is passed 3 arguments: the COMMAND, the FILE and the FLAGS.")
884 (defun vc-do-command (buffer okstatus command file
&rest flags
)
885 "Execute a VC command, notifying user and checking for errors.
886 Output from COMMAND goes to BUFFER, or *vc* if BUFFER is nil or the
887 current buffer if BUFFER is t. If the destination buffer is not
888 already current, set it up properly and erase it. The command is
889 considered successful if its exit status does not exceed OKSTATUS (if
890 OKSTATUS is nil, that means to ignore errors, if it is 'async, that
891 means not to wait for termination of the subprocess). FILE is the
892 name of the working file (may also be nil, to execute commands that
893 don't expect a file name). If an optional list of FLAGS is present,
894 that is inserted into the command line before the filename."
895 (and file
(setq file
(expand-file-name file
)))
896 (if vc-command-messages
897 (message "Running %s on %s..." command file
))
899 (unless (or (eq buffer t
)
900 (and (stringp buffer
)
901 (string= (buffer-name) buffer
))
902 (eq buffer
(current-buffer)))
903 (vc-setup-buffer buffer
))
905 (inhibit-read-only t
)
907 (setq squeezed
(delq nil
(copy-sequence flags
)))
909 ;; FIXME: file-relative-name can return a bogus result because
910 ;; it doesn't look at the actual file-system to see if symlinks
912 (setq squeezed
(append squeezed
(list (file-relative-name file
)))))
913 (let ((exec-path (append vc-path exec-path
))
914 ;; Add vc-path to PATH for the execution of this command.
916 (cons (concat "PATH=" (getenv "PATH")
918 (mapconcat 'identity vc-path path-separator
))
919 process-environment
))
920 (w32-quote-process-args t
))
921 (if (eq okstatus
'async
)
922 (let ((proc (apply 'start-process command
(current-buffer) command
924 (unless (active-minibuffer-window)
925 (message "Running %s in the background..." command
))
926 ;;(set-process-sentinel proc (lambda (p msg) (delete-process p)))
927 (set-process-filter proc
'vc-process-filter
)
929 `(unless (active-minibuffer-window)
930 (message "Running %s in the background... done" ',command
))))
931 (setq status
(apply 'call-process command nil t nil squeezed
))
932 (when (or (not (integerp status
)) (and okstatus
(< okstatus status
)))
933 (pop-to-buffer (current-buffer))
934 (goto-char (point-min))
935 (shrink-window-if-larger-than-buffer)
936 (error "Running %s...FAILED (%s)" command
937 (if (integerp status
) (format "status %d" status
) status
))))
938 (if vc-command-messages
939 (message "Running %s...OK" command
)))
941 `(run-hook-with-args 'vc-post-command-functions
',command
',file
',flags
))
944 (defun vc-position-context (posn)
945 "Save a bit of the text around POSN in the current buffer.
946 Used to help us find the corresponding position again later
947 if markers are destroyed or corrupted."
948 ;; A lot of this was shamelessly lifted from Sebastian Kremer's
952 (buffer-substring posn
953 (min (point-max) (+ posn
100)))))
955 (defun vc-find-position-by-context (context)
956 "Return the position of CONTEXT in the current buffer.
957 If CONTEXT cannot be found, return nil."
958 (let ((context-string (nth 2 context
)))
959 (if (equal "" context-string
)
962 (let ((diff (- (nth 1 context
) (buffer-size))))
963 (if (< diff
0) (setq diff
(- diff
)))
964 (goto-char (nth 0 context
))
965 (if (or (search-forward context-string nil t
)
966 ;; Can't use search-backward since the match may continue
968 (progn (goto-char (- (point) diff
(length context-string
)))
969 ;; goto-char doesn't signal an error at
970 ;; beginning of buffer like backward-char would
971 (search-forward context-string nil t
)))
972 ;; to beginning of OSTRING
973 (- (point) (length context-string
))))))))
975 (defun vc-context-matches-p (posn context
)
976 "Return t if POSN matches CONTEXT, nil otherwise."
977 (let* ((context-string (nth 2 context
))
978 (len (length context-string
))
980 (if (> end
(1+ (buffer-size)))
982 (string= context-string
(buffer-substring posn end
)))))
984 (defun vc-buffer-context ()
985 "Return a list (POINT-CONTEXT MARK-CONTEXT REPARSE).
986 Used by `vc-restore-buffer-context' to later restore the context."
987 (let ((point-context (vc-position-context (point)))
988 ;; Use mark-marker to avoid confusion in transient-mark-mode.
989 (mark-context (if (eq (marker-buffer (mark-marker)) (current-buffer))
990 (vc-position-context (mark-marker))))
991 ;; Make the right thing happen in transient-mark-mode.
993 ;; We may want to reparse the compilation buffer after revert
994 (reparse (and (boundp 'compilation-error-list
) ;compile loaded
995 (let ((curbuf (current-buffer)))
996 ;; Construct a list; each elt is nil or a buffer
997 ;; iff that buffer is a compilation output buffer
998 ;; that contains markers into the current buffer.
1000 (mapcar (lambda (buffer)
1003 compilation-old-error-list
1004 compilation-error-list
))
1005 (buffer-error-marked-p nil
))
1006 (while (and (consp errors
)
1007 (not buffer-error-marked-p
))
1008 (and (markerp (cdr (car errors
)))
1011 (cdr (car errors
))))
1012 (setq buffer-error-marked-p t
))
1013 (setq errors
(cdr errors
)))
1014 (if buffer-error-marked-p buffer
)))
1016 (list point-context mark-context reparse
)))
1018 (defun vc-restore-buffer-context (context)
1019 "Restore point/mark, and reparse any affected compilation buffers.
1020 CONTEXT is that which `vc-buffer-context' returns."
1021 (let ((point-context (nth 0 context
))
1022 (mark-context (nth 1 context
))
1023 (reparse (nth 2 context
)))
1024 ;; Reparse affected compilation buffers.
1027 (with-current-buffer (car reparse
)
1028 (let ((compilation-last-buffer (current-buffer)) ;select buffer
1029 ;; Record the position in the compilation buffer of
1030 ;; the last error next-error went to.
1031 (error-pos (marker-position
1032 (car (car-safe compilation-error-list
)))))
1033 ;; Reparse the error messages as far as they were parsed before.
1034 (compile-reinitialize-errors '(4) compilation-parsing-end
)
1035 ;; Move the pointer up to find the error we were at before
1036 ;; reparsing. Now next-error should properly go to the next one.
1037 (while (and compilation-error-list
1038 (/= error-pos
(car (car compilation-error-list
))))
1039 (setq compilation-error-list
(cdr compilation-error-list
))))))
1040 (setq reparse
(cdr reparse
)))
1042 ;; if necessary, restore point and mark
1043 (if (not (vc-context-matches-p (point) point-context
))
1044 (let ((new-point (vc-find-position-by-context point-context
)))
1045 (if new-point
(goto-char new-point
))))
1048 (not (vc-context-matches-p (mark) mark-context
))
1049 (let ((new-mark (vc-find-position-by-context mark-context
)))
1050 (if new-mark
(set-mark new-mark
))))))
1052 (defun vc-revert-buffer1 (&optional arg no-confirm
)
1053 "Revert buffer, keeping point and mark where user expects them.
1054 Try to be clever in the face of changes due to expanded version control
1055 key words. This is important for typeahead to work as expected.
1056 ARG and NO-CONFIRM are passed on to `revert-buffer'."
1059 (let ((context (vc-buffer-context)))
1060 ;; Use save-excursion here, because it may be able to restore point
1061 ;; and mark properly even in cases where vc-restore-buffer-context
1062 ;; would fail. However, save-excursion might also get it wrong --
1063 ;; in this case, vc-restore-buffer-context gives it a second try.
1065 ;; t means don't call normal-mode;
1066 ;; that's to preserve various minor modes.
1067 (revert-buffer arg no-confirm t
))
1068 (vc-restore-buffer-context context
)))
1071 (defun vc-buffer-sync (&optional not-urgent
)
1072 "Make sure the current buffer and its working file are in sync.
1073 NOT-URGENT means it is ok to continue if the user says not to save."
1074 (if (buffer-modified-p)
1075 (if (or vc-suppress-confirm
1076 (y-or-n-p (format "Buffer %s modified; save it? " (buffer-name))))
1079 (error "Aborted")))))
1081 (defun vc-default-latest-on-branch-p (backend file
)
1082 "Return non-nil if FILE is the latest on its branch.
1083 This default implementation always returns non-nil, which means that
1084 editing non-current versions is not supported by default."
1087 (defun vc-recompute-state (file)
1088 "Force a recomputation of the version control state of FILE.
1089 The state is computed using the exact, and possibly expensive
1090 function `vc-BACKEND-state', not the heuristic."
1091 (vc-file-setprop file
'vc-state
(vc-call state file
)))
1093 (defun vc-next-action-on-file (file verbose
&optional comment
)
1094 "Do The Right Thing for a given FILE under version control.
1095 If COMMENT is specified, it will be used as an admin or checkin comment.
1096 If VERBOSE is non-nil, query the user rather than using default parameters."
1097 (let ((visited (get-file-buffer file
))
1101 (switch-to-buffer-other-window visited
)
1102 (set-buffer visited
))
1103 ;; Check relation of buffer and file, and make sure
1104 ;; user knows what he's doing. First, finding the file
1105 ;; will check whether the file on disk is newer.
1106 ;; Ignore buffer-read-only during this test, and
1107 ;; preserve find-file-literally.
1108 (let ((buffer-read-only (not (file-writable-p file
))))
1109 (find-file-noselect file nil find-file-literally
))
1110 (if (not (verify-visited-file-modtime (current-buffer)))
1111 (if (yes-or-no-p "Replace file on disk with buffer contents? ")
1112 (write-file (buffer-file-name))
1114 ;; Now, check if we have unsaved changes.
1116 (if (buffer-modified-p)
1117 (or (y-or-n-p "Operate on disk file, keeping modified buffer? ")
1118 (error "Aborted")))))
1120 ;; Do the right thing
1121 (if (not (vc-registered file
))
1122 (vc-register verbose comment
)
1123 (vc-recompute-state file
)
1124 (if visited
(vc-mode-line file
))
1125 (setq state
(vc-state file
))
1128 ((or (eq state
'up-to-date
)
1129 (and verbose
(eq state
'needs-patch
)))
1132 ;; go to a different version
1134 (read-string "Branch, version, or backend to move to: "))
1135 (let ((vsym (intern-soft (upcase version
))))
1136 (if (member vsym vc-handled-backends
)
1137 (vc-transfer-file file vsym
)
1138 (vc-checkout file
(eq (vc-checkout-model file
) 'implicit
)
1140 ((not (eq (vc-checkout-model file
) 'implicit
))
1141 ;; check the file out
1142 (vc-checkout file t
))
1145 (message "%s is up-to-date" file
))))
1147 ;; Abnormal: edited but read-only
1148 ((and visited
(eq state
'edited
)
1149 buffer-read-only
(not (file-writable-p file
)))
1150 ;; Make the file+buffer read-write. If the user really wanted to
1151 ;; commit, he'll get a chance to do that next time around, anyway.
1152 (message "File is edited but read-only; making it writable")
1153 (set-file-modes buffer-file-name
1154 (logior (file-modes buffer-file-name
) 128))
1155 (toggle-read-only -
1))
1160 ;; For files with locking, if the file does not contain
1161 ;; any changes, just let go of the lock, i.e. revert.
1162 ((and (not (eq (vc-checkout-model file
) 'implicit
))
1163 (vc-workfile-unchanged-p file
)
1164 ;; If buffer is modified, that means the user just
1165 ;; said no to saving it; in that case, don't revert,
1166 ;; because the user might intend to save after
1167 ;; finishing the log entry.
1168 (not (and visited
(buffer-modified-p))))
1169 ;; DO NOT revert the file without asking the user!
1170 (if (not visited
) (find-file-other-window file
))
1171 (if (yes-or-no-p "Revert to master version? ")
1172 (vc-revert-buffer)))
1175 (vc-checkin file nil comment
)
1176 (setq version
(read-string "New version or backend: "))
1177 (let ((vsym (intern (upcase version
))))
1178 (if (member vsym vc-handled-backends
)
1179 (vc-transfer-file file vsym
)
1180 (vc-checkin file version comment
)))))))
1182 ;; locked by somebody else
1185 (error "Sorry, you can't steal the lock on %s this way"
1186 (file-name-nondirectory file
)))
1188 (if verbose
(read-string "Version to steal: ")
1189 (vc-workfile-version file
))
1193 ((eq state
'needs-patch
)
1194 (if (yes-or-no-p (format
1195 "%s is not up-to-date. Get latest version? "
1196 (file-name-nondirectory file
)))
1197 (vc-checkout file
(eq (vc-checkout-model file
) 'implicit
) "")
1198 (if (and (not (eq (vc-checkout-model file
) 'implicit
))
1199 (yes-or-no-p "Lock this version? "))
1200 (vc-checkout file t
)
1201 (error "Aborted"))))
1204 ((eq state
'needs-merge
)
1205 (if (yes-or-no-p (format
1206 "%s is not up-to-date. Merge in changes now? "
1207 (file-name-nondirectory file
)))
1208 (vc-maybe-resolve-conflicts file
(vc-call merge-news file
))
1212 ((eq state
'unlocked-changes
)
1213 (if (not visited
) (find-file-other-window file
))
1214 (if (save-window-excursion
1215 (vc-version-diff file
(vc-workfile-version file
) nil
)
1216 (goto-char (point-min))
1217 (let ((inhibit-read-only t
))
1219 (format "Changes to %s since last lock:\n\n" file
)))
1221 (yes-or-no-p (concat "File has unlocked changes. "
1222 "Claim lock retaining changes? ")))
1223 (progn (vc-call steal-lock file
)
1224 (clear-visited-file-modtime)
1225 ;; Must clear any headers here because they wouldn't
1226 ;; show that the file is locked now.
1227 (vc-clear-headers file
)
1228 (write-file (buffer-file-name))
1229 (vc-mode-line file
))
1230 (if (not (yes-or-no-p
1231 "Revert to checked-in version, instead? "))
1232 (error "Checkout aborted")
1233 (vc-revert-buffer1 t t
)
1234 (vc-checkout file t
))))))))
1236 (defvar vc-dired-window-configuration
)
1238 (defun vc-next-action-dired (file rev comment
)
1239 "Call `vc-next-action-on-file' on all the marked files.
1240 Ignores FILE and REV, but passes on COMMENT."
1241 (let ((dired-buffer (current-buffer))
1242 (dired-dir default-directory
))
1243 (dired-map-over-marks
1244 (let ((file (dired-get-filename)))
1245 (message "Processing %s..." file
)
1246 (vc-next-action-on-file file nil comment
)
1247 (set-buffer dired-buffer
)
1248 (set-window-configuration vc-dired-window-configuration
)
1249 (message "Processing %s...done" file
))
1251 (dired-move-to-filename))
1253 ;; Here's the major entry point.
1256 (defun vc-next-action (verbose)
1257 "Do the next logical version control operation on the current file.
1259 If you call this from within a VC dired buffer with no files marked,
1260 it will operate on the file in the current line.
1262 If you call this from within a VC dired buffer, and one or more
1263 files are marked, it will accept a log message and then operate on
1264 each one. The log message will be used as a comment for any register
1265 or checkin operations, but ignored when doing checkouts. Attempted
1266 lock steals will raise an error.
1268 A prefix argument lets you specify the version number to use.
1270 For RCS and SCCS files:
1271 If the file is not already registered, this registers it for version
1273 If the file is registered and not locked by anyone, this checks out
1274 a writable and locked file ready for editing.
1275 If the file is checked out and locked by the calling user, this
1276 first checks to see if the file has changed since checkout. If not,
1277 it performs a revert.
1278 If the file has been changed, this pops up a buffer for entry
1279 of a log message; when the message has been entered, it checks in the
1280 resulting changes along with the log message as change commentary. If
1281 the variable `vc-keep-workfiles' is non-nil (which is its default), a
1282 read-only copy of the changed file is left in place afterwards.
1283 If the file is registered and locked by someone else, you are given
1284 the option to steal the lock.
1287 If the file is not already registered, this registers it for version
1288 control. This does a \"cvs add\", but no \"cvs commit\".
1289 If the file is added but not committed, it is committed.
1290 If your working file is changed, but the repository file is
1291 unchanged, this pops up a buffer for entry of a log message; when the
1292 message has been entered, it checks in the resulting changes along
1293 with the logmessage as change commentary. A writable file is retained.
1294 If the repository file is changed, you are asked if you want to
1295 merge in the changes into your working copy."
1300 (let ((files (dired-get-marked-files)))
1301 (set (make-local-variable 'vc-dired-window-configuration
)
1302 (current-window-configuration))
1306 (if (not (vc-up-to-date-p f
)) "@" ""))
1308 (vc-next-action-dired nil nil
"dummy")
1309 (vc-start-entry nil nil nil nil
1310 "Enter a change comment for the marked files."
1311 'vc-next-action-dired
))
1313 (while vc-parent-buffer
1314 (pop-to-buffer vc-parent-buffer
))
1315 (if buffer-file-name
1316 (vc-next-action-on-file buffer-file-name verbose
)
1317 (error "Buffer %s is not associated with a file" (buffer-name)))))
1319 ;; These functions help the vc-next-action entry point
1322 (defun vc-register (&optional set-version comment
)
1323 "Register the current file into a version control system.
1324 With prefix argument SET-VERSION, allow user to specify initial version
1325 level. If COMMENT is present, use that as an initial comment.
1327 The version control system to use is found by cycling through the list
1328 `vc-handled-backends'. The first backend in that list which declares
1329 itself responsible for the file (usually because other files in that
1330 directory are already registered under that backend) will be used to
1331 register the file. If no backend declares itself responsible, the
1332 first backend that could register the file is used."
1334 (unless buffer-file-name
(error "No visited file"))
1335 (when (vc-backend buffer-file-name
)
1336 (if (vc-registered buffer-file-name
)
1337 (error "This file is already registered")
1338 (unless (y-or-n-p "Previous master file has vanished. Make a new one? ")
1339 (error "Aborted"))))
1340 ;; Watch out for new buffers of size 0: the corresponding file
1341 ;; does not exist yet, even though buffer-modified-p is nil.
1342 (if (and (not (buffer-modified-p))
1343 (zerop (buffer-size))
1344 (not (file-exists-p buffer-file-name
)))
1345 (set-buffer-modified-p t
))
1348 (vc-start-entry buffer-file-name
1350 (read-string (format "Initial version level for %s: "
1352 (let ((backend (vc-responsible-backend buffer-file-name
)))
1353 (if (vc-find-backend-function backend
'init-version
)
1354 (vc-call-backend backend
'init-version
)
1355 vc-default-init-version
)))
1356 (or comment
(not vc-initial-comment
))
1358 "Enter initial comment."
1359 (lambda (file rev comment
)
1360 (message "Registering %s... " file
)
1361 (let ((backend (vc-responsible-backend file t
)))
1362 (vc-file-clearprops file
)
1363 (vc-call-backend backend
'register file rev comment
)
1364 (vc-file-setprop file
'vc-backend backend
)
1365 (unless vc-make-backup-files
1366 (make-local-variable 'backup-inhibited
)
1367 (setq backup-inhibited t
)))
1368 (message "Registering %s... done" file
))))
1371 (defun vc-responsible-backend (file &optional register
)
1372 "Return the name of a backend system that is responsible for FILE.
1373 The optional argument REGISTER means that a backend suitable for
1374 registration should be found.
1376 If REGISTER is nil, then if FILE is already registered, return the
1377 backend of FILE. If FILE is not registered, or a directory, then the
1378 first backend in `vc-handled-backends' that declares itself
1379 responsible for FILE is returned. If no backend declares itself
1380 responsible, return the first backend.
1382 If REGISTER is non-nil, return the first responsible backend under
1383 which FILE is not yet registered. If there is no such backend, return
1384 the first backend under which FILE is not yet registered, but could
1386 (if (not vc-handled-backends
)
1387 (error "No handled backends"))
1388 (or (and (not (file-directory-p file
)) (not register
) (vc-backend file
))
1390 ;; First try: find a responsible backend. If this is for registration,
1391 ;; it must be a backend under which FILE is not yet registered.
1392 (dolist (backend vc-handled-backends
)
1393 (and (or (not register
)
1394 (not (vc-call-backend backend
'registered file
)))
1395 (vc-call-backend backend
'responsible-p file
)
1396 (throw 'found backend
)))
1397 ;; no responsible backend
1399 ;; if this is not for registration, the first backend must do
1400 (car vc-handled-backends
)
1401 ;; for registration, we need to find a new backend that
1402 ;; could register FILE
1403 (dolist (backend vc-handled-backends
)
1404 (and (not (vc-call-backend backend
'registered file
))
1405 (vc-call-backend backend
'could-register file
)
1406 (throw 'found backend
)))
1407 (error "No backend that could register")))))
1409 (defun vc-default-responsible-p (backend file
)
1410 "Indicate whether BACKEND is reponsible for FILE.
1411 The default is to return nil always."
1414 (defun vc-default-could-register (backend file
)
1415 "Return non-nil if BACKEND could be used to register FILE.
1416 The default implementation returns t for all files."
1419 (defun vc-resynch-window (file &optional keep noquery
)
1420 "If FILE is in the current buffer, either revert or unvisit it.
1421 The choice between revert (to see expanded keywords) and unvisit depends on
1422 `vc-keep-workfiles'. NOQUERY if non-nil inhibits confirmation for
1423 reverting. NOQUERY should be t *only* if it is known the only
1424 difference between the buffer and the file is due to version control
1425 rather than user editing!"
1426 (and (string= buffer-file-name file
)
1429 (vc-revert-buffer1 t noquery
)
1430 ;; TODO: Adjusting view mode might no longer be necessary
1431 ;; after RMS change to files.el of 1999-08-08. Investigate
1432 ;; this when we install the new VC.
1434 (if (file-writable-p file
)
1436 (let ((view-old-buffer-read-only nil
))
1438 (and (not view-mode
)
1439 (not (eq (get major-mode
'mode-class
) 'special
))
1440 (view-mode-enter))))
1441 (vc-mode-line buffer-file-name
))
1442 (kill-buffer (current-buffer)))))
1444 (defun vc-resynch-buffer (file &optional keep noquery
)
1445 "If FILE is currently visited, resynch its buffer."
1446 (if (string= buffer-file-name file
)
1447 (vc-resynch-window file keep noquery
)
1448 (let ((buffer (get-file-buffer file
)))
1450 (with-current-buffer buffer
1451 (vc-resynch-window file keep noquery
)))))
1452 (vc-dired-resynch-file file
))
1454 (defun vc-start-entry (file rev comment initial-contents msg action
&optional after-hook
)
1455 "Accept a comment for an operation on FILE revision REV.
1456 If COMMENT is nil, pop up a VC-log buffer, emit MSG, and set the
1457 action on close to ACTION. If COMMENT is a string and
1458 INITIAL-CONTENTS is non-nil, then COMMENT is used as the initial
1459 contents of the log entry buffer. If COMMENT is a string and
1460 INITIAL-CONTENTS is nil, do action immediately as if the user had
1461 entered COMMENT. If COMMENT is t, also do action immediately with an
1462 empty comment. Remember the file's buffer in `vc-parent-buffer'
1463 \(current one if no file). AFTER-HOOK specifies the local value
1464 for vc-log-operation-hook."
1465 (let ((parent (or (and file
(get-file-buffer file
)) (current-buffer))))
1466 (if vc-before-checkin-hook
1468 (with-current-buffer parent
1469 (run-hooks 'vc-before-checkin-hook
))
1470 (run-hooks 'vc-before-checkin-hook
)))
1471 (if (and comment
(not initial-contents
))
1472 (set-buffer (get-buffer-create "*VC-log*"))
1473 (pop-to-buffer (get-buffer-create "*VC-log*")))
1474 (set (make-local-variable 'vc-parent-buffer
) parent
)
1475 (set (make-local-variable 'vc-parent-buffer-name
)
1476 (concat " from " (buffer-name vc-parent-buffer
)))
1477 (if file
(vc-mode-line file
))
1479 (make-local-variable 'vc-log-after-operation-hook
)
1481 (setq vc-log-after-operation-hook after-hook
))
1482 (setq vc-log-operation action
)
1483 (setq vc-log-version rev
)
1486 (when (stringp comment
) (insert comment
)))
1487 (if (or (not comment
) initial-contents
)
1488 (message "%s Type C-c C-c when done" msg
)
1489 (vc-finish-logentry (eq comment t
)))))
1491 (defun vc-checkout (file &optional writable rev
)
1492 "Retrieve a copy of the revision REV of FILE.
1493 If WRITABLE is non-nil, make sure the retrieved file is writable.
1494 REV defaults to the latest revision.
1496 After check-out, runs the normal hook `vc-checkout-hook'."
1499 (vc-call make-version-backups-p file
)
1500 (vc-up-to-date-p file
)
1501 (vc-make-version-backup file
))
1505 (vc-call checkout file writable rev
)
1507 ;; Maybe the backend is not installed ;-(
1509 (let ((buf (get-file-buffer file
)))
1510 (when buf
(with-current-buffer buf
(toggle-read-only -
1)))))
1511 (signal (car err
) (cdr err
))))
1512 `((vc-state .
,(if (or (eq (vc-checkout-model file
) 'implicit
)
1514 (if (vc-call latest-on-branch-p file
)
1518 (vc-checkout-time .
,(nth 5 (file-attributes file
)))))
1519 (vc-resynch-buffer file t t
)
1520 (run-hooks 'vc-checkout-hook
))
1522 (defun vc-steal-lock (file rev owner
)
1523 "Steal the lock on FILE."
1524 (let (file-description)
1526 (setq file-description
(format "%s:%s" file rev
))
1527 (setq file-description file
))
1528 (if (not (yes-or-no-p (format "Steal the lock on %s from %s? "
1529 file-description owner
)))
1530 (error "Steal canceled"))
1531 (message "Stealing lock on %s..." file
)
1534 (vc-call steal-lock file rev
)
1535 `((vc-state . edited
)))
1536 (vc-resynch-buffer file t t
)
1537 (message "Stealing lock on %s...done" file
)
1538 ;; Write mail after actually stealing, because if the stealing
1539 ;; goes wrong, we don't want to send any mail.
1540 (compose-mail owner
(format "Stolen lock on %s" file-description
))
1541 (setq default-directory
(expand-file-name "~/"))
1542 (goto-char (point-max))
1544 (format "I stole the lock on %s, " file-description
)
1545 (current-time-string)
1547 (message "Please explain why you stole the lock. Type C-c C-c when done.")))
1549 (defun vc-checkin (file &optional rev comment initial-contents
)
1551 The optional argument REV may be a string specifying the new version
1552 level (if nil increment the current level). COMMENT is a comment
1553 string; if omitted, a buffer is popped up to accept a comment. If
1554 INITIAL-CONTENTS is non-nil, then COMMENT is used as the initial contents
1555 of the log entry buffer.
1557 If `vc-keep-workfiles' is nil, FILE is deleted afterwards, provided
1558 that the version control system supports this mode of operation.
1560 Runs the normal hook `vc-checkin-hook'."
1562 file rev comment initial-contents
1563 "Enter a change comment."
1564 (lambda (file rev comment
)
1565 (message "Checking in %s..." file
)
1566 ;; "This log message intentionally left almost blank".
1567 ;; RCS 5.7 gripes about white-space-only comments too.
1568 (or (and comment
(string-match "[^\t\n ]" comment
))
1569 (setq comment
"*** empty log message ***"))
1572 ;; Change buffers to get local value of vc-checkin-switches.
1573 (with-current-buffer (or (get-file-buffer file
) (current-buffer))
1575 (vc-call checkin file rev comment
)
1576 (vc-delete-automatic-version-backups file
)))
1577 `((vc-state . up-to-date
)
1578 (vc-checkout-time .
,(nth 5 (file-attributes file
)))
1579 (vc-workfile-version . nil
)))
1580 (message "Checking in %s...done" file
))
1583 (defun vc-comment-to-change-log (&optional whoami file-name
)
1584 "Enter last VC comment into the change log for the current file.
1585 WHOAMI (interactive prefix) non-nil means prompt for user name
1586 and site. FILE-NAME is the name of the change log; if nil, use
1587 `change-log-default-name'.
1589 This may be useful as a `vc-checkin-hook' to update change logs
1591 (interactive (if current-prefix-arg
1592 (list current-prefix-arg
1593 (prompt-for-change-log-name))))
1594 ;; Make sure the defvar for add-log-current-defun-function has been executed
1595 ;; before binding it.
1597 (let (;; Extract the comment first so we get any error before doing anything.
1598 (comment (ring-ref vc-comment-ring
0))
1599 ;; Don't let add-change-log-entry insert a defun name.
1600 (add-log-current-defun-function 'ignore
)
1602 ;; Call add-log to do half the work.
1603 (add-change-log-entry whoami file-name t t
)
1604 ;; Insert the VC comment, leaving point before it.
1605 (setq end
(save-excursion (insert comment
) (point-marker)))
1606 (if (looking-at "\\s *\\s(")
1607 ;; It starts with an open-paren, as in "(foo): Frobbed."
1608 ;; So remove the ": " add-log inserted.
1610 ;; Canonicalize the white space between the file name and comment.
1612 ;; Indent rest of the text the same way add-log indented the first line.
1613 (let ((indentation (current-indentation)))
1615 (while (< (point) end
)
1617 (indent-to indentation
))
1618 (setq end
(point))))
1619 ;; Fill the inserted text, preserving open-parens at bol.
1620 (let ((paragraph-separate (concat paragraph-separate
"\\|\\s *\\s("))
1621 (paragraph-start (concat paragraph-start
"\\|\\s *\\s(")))
1623 (fill-region (point) end
))
1624 ;; Canonicalize the white space at the end of the entry so it is
1625 ;; separated from the next entry by a single blank line.
1626 (skip-syntax-forward " " end
)
1627 (delete-char (- (skip-syntax-backward " ")))
1628 (or (eobp) (looking-at "\n\n")
1631 (defun vc-finish-logentry (&optional nocomment
)
1632 "Complete the operation implied by the current log entry.
1633 Use the contents of the current buffer as a check-in or registration
1634 comment. If the optional arg NOCOMMENT is non-nil, then don't check
1635 the buffer contents as a comment, and don't add it to
1638 ;; Check and record the comment, if any.
1640 ;; Comment too long?
1641 (vc-call-backend (or (and vc-log-file
(vc-backend vc-log-file
))
1642 (vc-responsible-backend default-directory
))
1644 (run-hooks 'vc-logentry-check-hook
)
1645 ;; Record the comment in the comment ring
1646 (let ((comment (buffer-string)))
1647 (unless (and (ring-p vc-comment-ring
)
1648 (not (ring-empty-p vc-comment-ring
))
1649 (equal comment
(ring-ref vc-comment-ring
0)))
1650 (ring-insert vc-comment-ring comment
))))
1651 ;; Sync parent buffer in case the user modified it while editing the comment.
1652 ;; But not if it is a vc-dired buffer.
1653 (with-current-buffer vc-parent-buffer
1654 (or vc-dired-mode
(vc-buffer-sync)))
1655 (if (not vc-log-operation
) (error "No log operation is pending"))
1656 ;; save the parameters held in buffer-local variables
1657 (let ((log-operation vc-log-operation
)
1658 (log-file vc-log-file
)
1659 (log-version vc-log-version
)
1660 (log-entry (buffer-string))
1661 (after-hook vc-log-after-operation-hook
)
1662 (tmp-vc-parent-buffer vc-parent-buffer
))
1663 (pop-to-buffer vc-parent-buffer
)
1666 (funcall log-operation
1670 ;; Remove checkin window (after the checkin so that if that fails
1671 ;; we don't zap the *VC-log* buffer and the typing therein).
1672 (let ((logbuf (get-buffer "*VC-log*")))
1673 (cond ((and logbuf vc-delete-logbuf-window
)
1674 (delete-windows-on logbuf
(selected-frame))
1675 ;; Kill buffer and delete any other dedicated windows/frames.
1676 (kill-buffer logbuf
))
1677 (logbuf (pop-to-buffer "*VC-log*")
1679 (pop-to-buffer tmp-vc-parent-buffer
))))
1680 ;; Now make sure we see the expanded headers
1682 (vc-resynch-buffer log-file vc-keep-workfiles t
))
1684 (dired-move-to-filename))
1685 (run-hooks after-hook
'vc-finish-logentry-hook
)))
1687 ;; Code for access to the comment ring
1689 (defun vc-new-comment-index (stride len
)
1690 "Return the comment index STRIDE elements from the current one.
1691 LEN is the length of `vc-comment-ring'."
1693 (vc-comment-ring-index (+ vc-comment-ring-index stride
))
1694 ;; Initialize the index on the first use of this command
1695 ;; so that the first M-p gets index 0, and the first M-n gets
1697 ((> stride
0) (1- stride
))
1701 (defun vc-previous-comment (arg)
1702 "Cycle backwards through comment history.
1703 With a numeric prefix ARG, go back ARG comments."
1705 (let ((len (ring-length vc-comment-ring
)))
1707 (progn (message "Empty comment ring") (ding))
1709 (setq vc-comment-ring-index
(vc-new-comment-index arg len
))
1710 (message "Comment %d" (1+ vc-comment-ring-index
))
1711 (insert (ring-ref vc-comment-ring vc-comment-ring-index
)))))
1713 (defun vc-next-comment (arg)
1714 "Cycle forwards through comment history.
1715 With a numeric prefix ARG, go forward ARG comments."
1717 (vc-previous-comment (- arg
)))
1719 (defun vc-comment-search-reverse (str &optional stride
)
1720 "Search backwards through comment history for substring match of STR.
1721 If the optional argument STRIDE is present, that is a step-width to use
1722 when going through the comment ring."
1723 ;; Why substring rather than regexp ? -sm
1725 (list (read-string "Comment substring: " nil nil vc-last-comment-match
)))
1726 (unless stride
(setq stride
1))
1727 (if (string= str
"")
1728 (setq str vc-last-comment-match
)
1729 (setq vc-last-comment-match str
))
1730 (let* ((str (regexp-quote str
))
1731 (len (ring-length vc-comment-ring
))
1732 (n (vc-new-comment-index stride len
)))
1733 (while (progn (when (or (>= n len
) (< n
0)) (error "Not found"))
1734 (not (string-match str
(ring-ref vc-comment-ring n
))))
1735 (setq n
(+ n stride
)))
1736 (setq vc-comment-ring-index n
)
1737 (vc-previous-comment 0)))
1739 (defun vc-comment-search-forward (str)
1740 "Search forwards through comment history for a substring match of STR."
1742 (list (read-string "Comment substring: " nil nil vc-last-comment-match
)))
1743 (vc-comment-search-reverse str -
1))
1745 ;; Additional entry points for examining version histories
1748 (defun vc-diff (historic &optional not-urgent
)
1749 "Display diffs between file versions.
1750 Normally this compares the current file and buffer with the most
1751 recent checked in version of that file. This uses no arguments. With
1752 a prefix argument HISTORIC, it reads the file name to use and two
1753 version designators specifying which versions to compare. The
1754 optional argument NOT-URGENT non-nil means it is ok to say no to
1756 (interactive (list current-prefix-arg t
))
1758 (call-interactively 'vc-version-diff
)
1759 (vc-ensure-vc-buffer)
1760 (let ((file buffer-file-name
))
1761 (vc-buffer-sync not-urgent
)
1762 (if (vc-workfile-unchanged-p buffer-file-name
)
1763 (message "No changes to %s since latest version" file
)
1764 (vc-version-diff file nil nil
)))))
1766 (defun vc-version-diff (file rel1 rel2
)
1767 "List the differences between FILE's versions REL1 and REL2.
1768 If REL1 is empty or nil it means to use the current workfile version;
1769 REL2 empty or nil means the current file contents. FILE may also be
1770 a directory, in that case, generate diffs between the correponding
1771 versions of all registered files in or below it."
1773 (let ((file (expand-file-name
1774 (read-file-name (if buffer-file-name
1775 "File or dir to diff: (default visited file) "
1776 "File or dir to diff: ")
1777 default-directory buffer-file-name t
)))
1778 (rel1-default nil
) (rel2-default nil
))
1779 ;; compute default versions based on the file state
1781 ;; if it's a directory, don't supply any version default
1782 ((file-directory-p file
)
1784 ;; if the file is not up-to-date, use current version as older version
1785 ((not (vc-up-to-date-p file
))
1786 (setq rel1-default
(vc-workfile-version file
)))
1787 ;; if the file is not locked, use last and previous version as default
1789 (setq rel1-default
(vc-call previous-version file
1790 (vc-workfile-version file
)))
1791 (if (string= rel1-default
"") (setq rel1-default nil
))
1792 (setq rel2-default
(vc-workfile-version file
))))
1793 ;; construct argument list
1795 (read-string (if rel1-default
1796 (concat "Older version: (default "
1799 nil nil rel1-default
)
1800 (read-string (if rel2-default
1801 (concat "Newer version: (default "
1803 "Newer version (default: current source): ")
1804 nil nil rel2-default
))))
1805 (if (file-directory-p file
)
1806 ;; recursive directory diff
1808 (vc-setup-buffer "*vc-diff*")
1809 (if (string-equal rel1
"") (setq rel1 nil
))
1810 (if (string-equal rel2
"") (setq rel2 nil
))
1811 (let ((inhibit-read-only t
))
1812 (insert "Diffs between "
1813 (or rel1
"last version checked in")
1815 (or rel2
"current workfile(s)")
1817 (let ((dir (file-name-as-directory file
)))
1818 (vc-call-backend (vc-responsible-backend dir
)
1819 'diff-tree dir rel1 rel2
))
1820 (vc-exec-after `(let ((inhibit-read-only t
))
1821 (insert "\nEnd of diffs.\n"))))
1823 (vc-diff-internal file rel1 rel2
))
1824 (set-buffer "*vc-diff*")
1825 (if (and (zerop (buffer-size))
1826 (not (get-buffer-process (current-buffer))))
1830 (message "No changes to %s between %s and %s" file rel1 rel2
)
1831 (message "No changes to %s since %s" file rel1
))
1832 (message "No changes to %s since latest version" file
))
1834 (pop-to-buffer (current-buffer))
1835 ;; Gnus-5.8.5 sets up an autoload for diff-mode, even if it's
1836 ;; not available. Work around that.
1837 (if (require 'diff-mode nil t
) (diff-mode))
1838 (vc-exec-after '(let ((inhibit-read-only t
))
1839 (if (eq (buffer-size) 0)
1840 (insert "No differences found.\n"))
1841 (goto-char (point-min))
1842 (shrink-window-if-larger-than-buffer)))
1845 (defun vc-diff-internal (file rel1 rel2
)
1846 "Run diff to compare FILE's revisions REL1 and REL2.
1847 Output goes to the current buffer, which is assumed properly set up.
1848 The exit status of the diff command is returned.
1850 This function takes care to set up a proper coding system for diff output.
1851 If both revisions are available as local files, then it also does not
1852 actually call the backend, but performs a local diff."
1853 (if (or (not rel1
) (string-equal rel1
""))
1854 (setq rel1
(vc-workfile-version file
)))
1855 (if (string-equal rel2
"")
1857 (let ((file-rel1 (vc-version-backup-file file rel1
))
1858 (file-rel2 (if (not rel2
)
1860 (vc-version-backup-file file rel2
)))
1861 (coding-system-for-read (vc-coding-system-for-diff file
)))
1862 (if (and file-rel1 file-rel2
)
1863 (apply 'vc-do-command
"*vc-diff*" 1 "diff" nil
1864 (append (if (listp diff-switches
)
1866 (list diff-switches
))
1867 (if (listp vc-diff-switches
)
1869 (list vc-diff-switches
))
1870 (list (file-relative-name file-rel1
)
1871 (file-relative-name file-rel2
))))
1872 (vc-call diff file rel1 rel2
))))
1874 (defmacro vc-diff-switches-list
(backend)
1875 "Return the list of switches to use for executing diff under BACKEND."
1877 (if (listp diff-switches
) diff-switches
(list diff-switches
))
1878 (if (listp vc-diff-switches
) vc-diff-switches
(list vc-diff-switches
))
1879 (let* ((backend-switches-symbol
1880 (intern (concat "vc-" (downcase (symbol-name ,backend
))
1883 (if (boundp backend-switches-symbol
)
1884 (eval backend-switches-symbol
)
1886 (if (listp backend-switches
) backend-switches
(list backend-switches
)))))
1888 (defun vc-default-diff-tree (backend dir rel1 rel2
)
1889 "List differences for all registered files at and below DIR.
1890 The meaning of REL1 and REL2 is the same as for `vc-version-diff'."
1891 ;; This implementation does an explicit tree walk, and calls
1892 ;; vc-BACKEND-diff directly for each file. An optimization
1893 ;; would be to use `vc-diff-internal', so that diffs can be local,
1894 ;; and to call it only for files that are actually changed.
1895 ;; However, this is expensive for some backends, and so it is left
1896 ;; to backend-specific implementations.
1897 (setq default-directory dir
)
1902 `(let ((coding-system-for-read (vc-coding-system-for-diff ',f
)))
1903 (message "Looking at %s" ',f
)
1904 (vc-call-backend ',(vc-backend f
)
1905 'diff
',f
',rel1
',rel2
))))))
1907 (defun vc-coding-system-for-diff (file)
1908 "Return the coding system for reading diff output for FILE."
1909 (or coding-system-for-read
1910 ;; if we already have this file open,
1911 ;; use the buffer's coding system
1912 (let ((buf (find-buffer-visiting file
)))
1913 (if buf
(with-current-buffer buf
1914 buffer-file-coding-system
)))
1915 ;; otherwise, try to find one based on the file name
1916 (car (find-operation-coding-system 'insert-file-contents file
))
1917 ;; and a final fallback
1921 (defun vc-version-other-window (rev)
1922 "Visit version REV of the current file in another window.
1923 If the current file is named `F', the version is named `F.~REV~'.
1924 If `F.~REV~' already exists, use it instead of checking it out again."
1925 (interactive "sVersion to visit (default is workfile version): ")
1926 (vc-ensure-vc-buffer)
1927 (let* ((file buffer-file-name
)
1928 (version (if (string-equal rev
"")
1929 (vc-workfile-version file
)
1931 (switch-to-buffer-other-window (vc-find-version file version
))))
1933 (defun vc-find-version (file version
)
1934 "Read VERSION of FILE into a buffer and return the buffer."
1935 (let ((automatic-backup (vc-version-backup-file-name file version
))
1936 (filebuf (or (get-file-buffer file
) (current-buffer)))
1937 (filename (vc-version-backup-file-name file version
'manual
)))
1938 (unless (file-exists-p filename
)
1939 (if (file-exists-p automatic-backup
)
1940 (rename-file automatic-backup filename nil
)
1941 (message "Checking out %s..." filename
)
1942 (with-current-buffer filebuf
1945 (let ((coding-system-for-read 'no-conversion
)
1946 (coding-system-for-write 'no-conversion
))
1947 (with-temp-file filename
1948 (let ((outbuf (current-buffer)))
1949 ;; Change buffer to get local value of
1950 ;; vc-checkout-switches.
1951 (with-current-buffer filebuf
1952 (vc-call find-version file version outbuf
))))
1954 (if (and failed
(file-exists-p filename
))
1955 (delete-file filename
))))
1956 (vc-mode-line file
))
1957 (message "Checking out %s...done" filename
)))
1958 (find-file-noselect filename
)))
1960 (defun vc-default-find-version (backend file rev buffer
)
1961 "Provide the new `find-version' op based on the old `checkout' op.
1962 This is only for compatibility with old backends. They should be updated
1963 to provide the `find-version' operation instead."
1964 (let ((tmpfile (make-temp-file (expand-file-name file
))))
1967 (vc-call-backend backend
'checkout file nil rev tmpfile
)
1968 (with-current-buffer buffer
1969 (insert-file-contents-literally tmpfile
)))
1970 (delete-file tmpfile
))))
1972 ;; Header-insertion code
1975 (defun vc-insert-headers ()
1976 "Insert headers into a file for use with a version control system.
1977 Headers desired are inserted at point, and are pulled from
1978 the variable `vc-BACKEND-header'."
1980 (vc-ensure-vc-buffer)
1984 (if (or (not (vc-check-headers))
1985 (y-or-n-p "Version headers already exist. Insert another set? "))
1987 (let* ((delims (cdr (assq major-mode vc-comment-alist
)))
1988 (comment-start-vc (or (car delims
) comment-start
"#"))
1989 (comment-end-vc (or (car (cdr delims
)) comment-end
""))
1990 (hdsym (vc-make-backend-sym (vc-backend (buffer-file-name))
1992 (hdstrings (and (boundp hdsym
) (symbol-value hdsym
))))
1994 (insert comment-start-vc
"\t" s
"\t"
1995 comment-end-vc
"\n"))
1997 (if vc-static-header-alist
1999 (if (string-match (car f
) buffer-file-name
)
2000 (insert (format (cdr f
) (car hdstrings
)))))
2001 vc-static-header-alist
))
2005 (defun vc-clear-headers (&optional file
)
2006 "Clear all version headers in the current buffer (or FILE).
2007 The headers are reset to their non-expanded form."
2008 (let* ((filename (or file buffer-file-name
))
2009 (visited (find-buffer-visiting filename
))
2010 (backend (vc-backend filename
)))
2011 (when (vc-find-backend-function backend
'clear-headers
)
2013 (let ((context (vc-buffer-context)))
2014 ;; save-excursion may be able to relocate point and mark
2015 ;; properly. If it fails, vc-restore-buffer-context
2016 ;; will give it a second try.
2018 (vc-call-backend backend
'clear-headers
))
2019 (vc-restore-buffer-context context
))
2020 (set-buffer (find-file-noselect filename
))
2021 (vc-call-backend backend
'clear-headers
)
2022 (kill-buffer filename
)))))
2026 "Merge changes between two versions into the current buffer's file.
2027 This asks for two versions to merge from in the minibuffer. If the
2028 first version is a branch number, then merge all changes from that
2029 branch. If the first version is empty, merge news, i.e. recent changes
2030 from the current branch.
2032 See Info node `Merging'."
2034 (vc-ensure-vc-buffer)
2036 (let* ((file buffer-file-name
)
2037 (backend (vc-backend file
))
2038 (state (vc-state file
))
2039 first-version second-version status
)
2042 (error "File is locked by %s" state
))
2043 ((not (vc-editable-p file
))
2045 "File must be checked out for merging. Check out now? ")
2046 (vc-checkout file t
)
2047 (error "Merge aborted"))))
2049 (read-string (concat "Branch or version to merge from "
2050 "(default: news on current branch): ")))
2051 (if (string= first-version
"")
2052 (if (not (vc-find-backend-function backend
'merge-news
))
2053 (error "Sorry, merging news is not implemented for %s" backend
)
2054 (setq status
(vc-call merge-news file
)))
2055 (if (not (vc-find-backend-function backend
'merge
))
2056 (error "Sorry, merging is not implemented for %s" backend
)
2057 (if (not (vc-branch-p first-version
))
2058 (setq second-version
2059 (read-string "Second version: "
2060 (concat (vc-branch-part first-version
) ".")))
2061 ;; We want to merge an entire branch. Set versions
2062 ;; accordingly, so that vc-BACKEND-merge understands us.
2063 (setq second-version first-version
)
2064 ;; first-version must be the starting point of the branch
2065 (setq first-version
(vc-branch-part first-version
)))
2066 (setq status
(vc-call merge file first-version second-version
))))
2067 (vc-maybe-resolve-conflicts file status
"WORKFILE" "MERGE SOURCE")))
2069 (defun vc-maybe-resolve-conflicts (file status
&optional name-A name-B
)
2070 (vc-resynch-buffer file t
(not (buffer-modified-p)))
2071 (if (zerop status
) (message "Merge successful")
2073 (if (y-or-n-p "Conflicts detected. Resolve them now? ")
2074 (vc-resolve-conflicts name-A name-B
)
2075 (message "File contains conflict markers"))))
2078 (defalias 'vc-resolve-conflicts
'smerge-ediff
)
2080 ;; The VC directory major mode. Coopt Dired for this.
2081 ;; All VC commands get mapped into logical equivalents.
2083 (defvar vc-dired-switches
)
2084 (defvar vc-dired-terse-mode
)
2086 (defvar vc-dired-mode-map
2087 (let ((map (make-sparse-keymap))
2088 (vmap (make-sparse-keymap)))
2089 (define-key map
"\C-xv" vmap
)
2090 (define-key map
"v" vmap
)
2091 (set-keymap-parent vmap vc-prefix-map
)
2092 (define-key vmap
"t" 'vc-dired-toggle-terse-mode
)
2095 (define-derived-mode vc-dired-mode dired-mode
"Dired under VC"
2096 "The major mode used in VC directory buffers.
2098 It works like Dired, but lists only files under version control, with
2099 the current VC state of each file being indicated in the place of the
2100 file's link count, owner, group and size. Subdirectories are also
2101 listed, and you may insert them into the buffer as desired, like in
2104 All Dired commands operate normally, with the exception of `v', which
2105 is redefined as the version control prefix, so that you can type
2106 `vl', `v=' etc. to invoke `vc-print-log', `vc-diff', and the like on
2107 the file named in the current Dired buffer line. `vv' invokes
2108 `vc-next-action' on this file, or on all files currently marked.
2109 There is a special command, `*l', to mark all files currently locked."
2110 ;; define-derived-mode does it for us in Emacs-21, but not in Emacs-20.
2111 ;; We do it here because dired might not be loaded yet
2112 ;; when vc-dired-mode-map is initialized.
2113 (set-keymap-parent vc-dired-mode-map dired-mode-map
)
2114 (add-hook 'dired-after-readin-hook
'vc-dired-hook nil t
)
2115 ;; The following is slightly modified from dired.el,
2116 ;; because file lines look a bit different in vc-dired-mode.
2117 (set (make-local-variable 'dired-move-to-filename-regexp
)
2119 ((l "\\([A-Za-z]\\|[^\0-\177]\\)")
2120 ;; In some locales, month abbreviations are as short as 2 letters,
2121 ;; and they can be padded on the right with spaces.
2122 (month (concat l l
"+ *"))
2123 ;; Recognize any non-ASCII character.
2124 ;; The purpose is to match a Kanji character.
2126 ;; (k "[^\x00-\x7f\x80-\xff]")
2128 (yyyy "[0-9][0-9][0-9][0-9]")
2131 (HH:MM
"[ 0-2][0-9]:[0-5][0-9]")
2132 (western (concat "\\(" month s dd
"\\|" dd s month
"\\)"
2133 s
"\\(" HH
:MM
"\\|" s yyyy
"\\|" yyyy s
"\\)"))
2134 (japanese (concat mm k s dd k s
"\\(" s HH
:MM
"\\|" yyyy k
"\\)")))
2135 ;; the .* below ensures that we find the last match on a line
2136 (concat ".*" s
"\\(" western
"\\|" japanese
"\\)" s
)))
2137 (and (boundp 'vc-dired-switches
)
2139 (set (make-local-variable 'dired-actual-switches
)
2141 (set (make-local-variable 'vc-dired-terse-mode
) vc-dired-terse-display
)
2142 (setq vc-dired-mode t
))
2144 (defun vc-dired-toggle-terse-mode ()
2145 "Toggle terse display in VC Dired."
2147 (if (not vc-dired-mode
)
2149 (setq vc-dired-terse-mode
(not vc-dired-terse-mode
))
2150 (if vc-dired-terse-mode
2154 (defun vc-dired-mark-locked ()
2155 "Mark all files currently locked."
2157 (dired-mark-if (let ((f (dired-get-filename nil t
)))
2159 (not (file-directory-p f
))
2160 (not (vc-up-to-date-p f
))))
2163 (define-key vc-dired-mode-map
"*l" 'vc-dired-mark-locked
)
2165 (defun vc-default-dired-state-info (backend file
)
2166 (let ((state (vc-state file
)))
2168 ((stringp state
) (concat "(" state
")"))
2169 ((eq state
'edited
) (concat "(" (vc-user-login-name) ")"))
2170 ((eq state
'needs-merge
) "(merge)")
2171 ((eq state
'needs-patch
) "(patch)")
2172 ((eq state
'unlocked-changes
) "(stale)"))))
2174 (defun vc-dired-reformat-line (vc-info)
2175 "Reformat a directory-listing line.
2176 Replace various columns with version control information, VC-INFO.
2177 This code, like dired, assumes UNIX -l format."
2179 (let ((pos (point)) limit
)
2181 (setq limit
(point))
2185 (re-search-forward ;; owner and group
2186 "^\\(..[drwxlts-]+ \\) *[0-9]+ [^ ]+ +[^ ]+ +[0-9]+\\( .*\\)"
2188 (re-search-forward ;; only owner displayed
2189 "^\\(..[drwxlts-]+ \\) *[0-9]+ [^ ]+ +[0-9]+\\( .*\\)"
2191 (re-search-forward ;; OS/2 -l format, no links, owner, group
2192 "^\\(..[drwxlts-]+ \\) *[0-9]+\\( .*\\)"
2194 (let ((replacement (concat (match-string 1)
2195 (substring (concat vc-info
" ")
2198 ;; FIXME: Clear the text properties to make it work, because with
2199 ;; a straightforward replacement, they will get messed up.
2200 ;; Eventually, the text properties should be transformed correctly,
2202 (set-text-properties 0 (length replacement
) nil replacement
)
2203 (replace-match replacement
)))))
2205 (defun vc-dired-hook ()
2206 "Reformat the listing according to version control.
2207 Called by dired after any portion of a vc-dired buffer has been read in."
2208 (message "Getting version information... ")
2209 (let (subdir filename
(buffer-read-only nil
) cvs-dir
)
2210 (goto-char (point-min))
2213 ;; subdir header line
2214 ((setq subdir
(dired-get-subdir))
2215 ;; if the backend supports it, get the state
2216 ;; of all files in this directory at once
2217 (let ((backend (vc-responsible-backend subdir
)))
2218 (if (vc-find-backend-function backend
'dir-state
)
2219 (vc-call-backend backend
'dir-state subdir
)))
2221 ;; erase (but don't remove) the "total" line
2222 (delete-region (point) (line-end-position))
2226 ((setq filename
(dired-get-filename nil t
))
2229 ((file-directory-p filename
)
2231 ((member (file-name-nondirectory filename
)
2232 vc-directory-exclusion-list
)
2233 (let ((pos (point)))
2234 (dired-kill-tree filename
)
2237 (vc-dired-terse-mode
2238 ;; Don't show directories in terse mode. Don't use
2239 ;; dired-kill-line to remove it, because in recursive listings,
2240 ;; that would remove the directory contents as well.
2241 (delete-region (line-beginning-position)
2242 (progn (forward-line 1) (point))))
2243 ((string-match "\\`\\.\\.?\\'" (file-name-nondirectory filename
))
2246 (vc-dired-reformat-line nil
)
2249 ((and (vc-backend filename
)
2250 (not (and vc-dired-terse-mode
2251 (vc-up-to-date-p filename
))))
2252 (vc-dired-reformat-line (vc-call dired-state-info filename
))
2255 (dired-kill-line))))
2257 (t (forward-line 1))))
2259 (message "Getting version information... done")
2262 (cond ((eq (count-lines (point-min) (point-max)) 1)
2263 (goto-char (point-min))
2264 (message "No files locked under %s" default-directory
)))))
2266 (defun vc-dired-purge ()
2267 "Remove empty subdirs."
2269 (goto-char (point-min))
2270 (while (setq subdir
(dired-get-subdir))
2272 (if (dired-get-filename nil t
)
2273 (if (not (dired-next-subdir 1 t
))
2274 (goto-char (point-max)))
2276 (if (not (string= (dired-current-directory) default-directory
))
2277 (dired-do-kill-lines t
"")
2278 ;; We cannot remove the top level directory.
2279 ;; Just make it look a little nicer.
2282 (if (not (dired-next-subdir 1 t
))
2283 (goto-char (point-max))))))
2284 (goto-char (point-min))))
2286 (defun vc-dired-buffers-for-dir (dir)
2287 "Return a list of all vc-dired buffers that currently display DIR."
2289 ;; Check whether dired is loaded.
2290 (when (fboundp 'dired-buffers-for-dir
)
2291 (mapcar (lambda (buffer)
2292 (with-current-buffer buffer
2294 (setq result
(append result
(list buffer
))))))
2295 (dired-buffers-for-dir dir
)))
2298 (defun vc-dired-resynch-file (file)
2299 "Update the entries for FILE in any VC Dired buffers that list it."
2300 (let ((buffers (vc-dired-buffers-for-dir (file-name-directory file
))))
2302 (mapcar (lambda (buffer)
2303 (with-current-buffer buffer
2304 (if (dired-goto-file file
)
2305 ;; bind vc-dired-terse-mode to nil so that
2306 ;; files won't vanish when they are checked in
2307 (let ((vc-dired-terse-mode nil
))
2308 (dired-do-redisplay 1)))))
2312 (defun vc-directory (dir read-switches
)
2313 "Create a buffer in VC Dired Mode for directory DIR.
2315 See Info node `VC Dired Mode'.
2317 With prefix arg READ-SWITCHES, specify a value to override
2318 `dired-listing-switches' when generating the listing."
2319 (interactive "DDired under VC (directory): \nP")
2320 (let ((vc-dired-switches (concat vc-dired-listing-switches
2321 (if vc-dired-recurse
"R" ""))))
2323 (setq vc-dired-switches
2324 (read-string "Dired listing switches: "
2325 vc-dired-switches
)))
2327 (require 'dired-aux
)
2329 (dired-internal-noselect (expand-file-name (file-name-as-directory dir
))
2334 ;; Named-configuration entry points
2336 (defun vc-snapshot-precondition (dir)
2337 "Scan the tree below DIR, looking for files not up-to-date.
2338 If any file is not up-to-date, return the name of the first such file.
2339 \(This means, neither snapshot creation nor retrieval is allowed.\)
2340 If one or more of the files are currently visited, return `visited'.
2341 Otherwise, return nil."
2343 (catch 'vc-locked-example
2347 (if (not (vc-up-to-date-p f
)) (throw 'vc-locked-example f
)
2348 (if (get-file-buffer f
) (setq status
'visited
)))))
2352 (defun vc-create-snapshot (dir name branchp
)
2353 "Descending recursively from DIR, make a snapshot called NAME.
2354 For each registered file, the version level of its latest version
2355 becomes part of the named configuration. If the prefix argument
2356 BRANCHP is given, the snapshot is made as a new branch and the files
2357 are checked out in that new branch."
2359 (list (read-file-name "Directory: " default-directory default-directory t
)
2360 (read-string "New snapshot name: ")
2361 current-prefix-arg
))
2362 (message "Making %s... " (if branchp
"branch" "snapshot"))
2363 (if (file-directory-p dir
) (setq dir
(file-name-as-directory dir
)))
2364 (vc-call-backend (vc-responsible-backend dir
)
2365 'create-snapshot dir name branchp
)
2366 (message "Making %s... done" (if branchp
"branch" "snapshot")))
2368 (defun vc-default-create-snapshot (backend dir name branchp
)
2370 (error "VC backend %s does not support module branches" backend
))
2371 (let ((result (vc-snapshot-precondition dir
)))
2372 (if (stringp result
)
2373 (error "File %s is not up-to-date" result
)
2377 (vc-call assign-name f name
))))))
2380 (defun vc-retrieve-snapshot (dir name
)
2381 "Descending recursively from DIR, retrieve the snapshot called NAME.
2382 If NAME is empty, it refers to the latest versions.
2383 If locking is used for the files in DIR, then there must not be any
2384 locked files at or below DIR (but if NAME is empty, locked files are
2385 allowed and simply skipped)."
2387 (list (read-file-name "Directory: " default-directory default-directory t
)
2388 (read-string "Snapshot name to retrieve (default latest versions): ")))
2389 (let ((update (yes-or-no-p "Update any affected buffers? "))
2390 (msg (if (or (not name
) (string= name
""))
2391 (format "Updating %s... " (abbreviate-file-name dir
))
2392 (format "Retrieving snapshot into %s... "
2393 (abbreviate-file-name dir
)))))
2395 (vc-call-backend (vc-responsible-backend dir
)
2396 'retrieve-snapshot dir name update
)
2397 (message (concat msg
"done"))))
2399 (defun vc-default-retrieve-snapshot (backend dir name update
)
2400 (if (string= name
"")
2407 (vc-call checkout f nil
"")
2408 (if update
(vc-resynch-buffer f t t
)))))))
2409 (let ((result (vc-snapshot-precondition dir
)))
2410 (if (stringp result
)
2411 (error "File %s is locked" result
)
2412 (setq update
(and (eq result
'visited
) update
))
2415 (lambda (f) (vc-error-occurred
2416 (vc-call checkout f nil name
)
2417 (if update
(vc-resynch-buffer f t t
)))))))))
2419 ;; Miscellaneous other entry points
2422 (defun vc-print-log ()
2423 "List the change log of the current buffer in a window."
2425 (vc-ensure-vc-buffer)
2426 (let ((file buffer-file-name
))
2427 (vc-call print-log file
)
2429 (pop-to-buffer (current-buffer))
2432 `(let ((inhibit-read-only t
))
2433 (goto-char (point-max)) (forward-line -
1)
2434 (while (looking-at "=*\n")
2435 (delete-char (- (match-end 0) (match-beginning 0)))
2437 (goto-char (point-min))
2438 (if (looking-at "[\b\t\n\v\f\r ]+")
2439 (delete-char (- (match-end 0) (match-beginning 0))))
2440 (shrink-window-if-larger-than-buffer)
2441 ;; move point to the log entry for the current version
2442 (vc-call-backend ',(vc-backend file
)
2444 ',(vc-workfile-version file
))
2445 (set-buffer-modified-p nil
)))))
2447 (defun vc-default-show-log-entry (backend rev
)
2448 (log-view-goto-rev rev
))
2450 (defun vc-default-comment-history (backend file
)
2451 "Return a string with all log entries stored in BACKEND for FILE."
2452 (if (vc-find-backend-function backend
'print-log
)
2453 (with-current-buffer "*vc*"
2454 (vc-call print-log file
)
2455 (vc-call wash-log file
)
2458 (defun vc-default-wash-log (backend file
)
2459 "Remove all non-comment information from log output.
2460 This default implementation works for RCS logs; backends should override
2461 it if their logs are not in RCS format."
2462 (let ((separator (concat "^-+\nrevision [0-9.]+\ndate: .*\n"
2463 "\\(branches: .*;\n\\)?"
2464 "\\(\\*\\*\\* empty log message \\*\\*\\*\n\\)?")))
2465 (goto-char (point-max)) (forward-line -
1)
2466 (while (looking-at "=*\n")
2467 (delete-char (- (match-end 0) (match-beginning 0)))
2469 (goto-char (point-min))
2470 (if (looking-at "[\b\t\n\v\f\r ]+")
2471 (delete-char (- (match-end 0) (match-beginning 0))))
2472 (goto-char (point-min))
2473 (re-search-forward separator nil t
)
2474 (delete-region (point-min) (point))
2475 (while (re-search-forward separator nil t
)
2476 (delete-region (match-beginning 0) (match-end 0)))))
2479 (defun vc-revert-buffer ()
2480 "Revert the current buffer's file to the version it was based on.
2481 This asks for confirmation if the buffer contents are not identical
2482 to that version. This function does not automatically pick up newer
2483 changes found in the master file; use \\[universal-argument] \\[vc-next-action] to do so."
2485 (vc-ensure-vc-buffer)
2486 ;; Make sure buffer is saved. If the user says `no', abort since
2487 ;; we cannot show the changes and ask for confirmation to discard them.
2488 (vc-buffer-sync nil
)
2489 (let ((file buffer-file-name
)
2490 ;; This operation should always ask for confirmation.
2491 (vc-suppress-confirm nil
)
2492 (obuf (current-buffer))
2494 (if (vc-up-to-date-p file
)
2495 (unless (yes-or-no-p "File seems up-to-date. Revert anyway? ")
2496 (error "Revert canceled")))
2497 (unless (vc-workfile-unchanged-p file
)
2498 ;; vc-diff selects the new window, which is not what we want:
2499 ;; if the new window is on another frame, that'd require the user
2500 ;; moving her mouse to answer the yes-or-no-p question.
2501 (let ((win (save-selected-window
2502 (setq status
(vc-diff nil t
)) (selected-window))))
2503 (vc-exec-after `(message nil
))
2506 (unless (yes-or-no-p "Discard changes? ")
2507 (error "Revert canceled"))
2509 (if (one-window-p t
)
2510 (if (window-dedicated-p (selected-window))
2511 (make-frame-invisible))
2512 (delete-window))))))
2515 (message "Reverting %s..." file
)
2516 (vc-revert-file file
)
2517 (message "Reverting %s...done" file
)))
2521 "Update the current buffer's file to the latest version on its branch.
2522 If the file contains no changes, and is not locked, then this simply replaces
2523 the working file with the latest version on its branch. If the file contains
2524 changes, and the backend supports merging news, then any recent changes from
2525 the current branch are merged into the working file."
2527 (vc-ensure-vc-buffer)
2528 (vc-buffer-sync nil
)
2529 (let ((file buffer-file-name
))
2530 (if (vc-up-to-date-p file
)
2531 (vc-checkout file nil
"")
2532 (if (eq (vc-checkout-model file
) 'locking
)
2533 (if (eq (vc-state file
) 'edited
)
2535 (substitute-command-keys
2536 "File is locked--type \\[vc-revert-buffer] to discard changes"))
2538 (substitute-command-keys
2539 "Unexpected file state (%s)--type \\[vc-next-action] to correct")
2541 (if (not (vc-find-backend-function (vc-backend file
) 'merge-news
))
2542 (error "Sorry, merging news is not implemented for %s"
2544 (vc-call merge-news file
)
2545 (vc-resynch-window file t t
))))))
2547 (defun vc-version-backup-file (file &optional rev
)
2548 "Return name of backup file for revision REV of FILE.
2549 If version backups should be used for FILE, and there exists
2550 such a backup for REV or the current workfile version of file,
2551 return its name; otherwise return nil."
2552 (when (vc-call make-version-backups-p file
)
2553 (let ((backup-file (vc-version-backup-file-name file rev
)))
2554 (if (file-exists-p backup-file
)
2556 ;; there is no automatic backup, but maybe the user made one manually
2557 (setq backup-file
(vc-version-backup-file-name file rev
'manual
))
2558 (if (file-exists-p backup-file
)
2561 (defun vc-revert-file (file)
2562 "Revert FILE back to the version it was based on."
2565 (let ((backup-file (vc-version-backup-file file
)))
2567 (copy-file backup-file file
'ok-if-already-exists
'keep-date
)
2568 (vc-delete-automatic-version-backups file
))
2569 (vc-call revert file backup-file
))
2570 `((vc-state . up-to-date
)
2571 (vc-checkout-time .
,(nth 5 (file-attributes file
)))))
2572 (vc-resynch-buffer file t t
))
2575 (defun vc-cancel-version (norevert)
2576 "Get rid of most recently checked in version of this file.
2577 A prefix argument NOREVERT means do not revert the buffer afterwards."
2579 (vc-ensure-vc-buffer)
2580 (let* ((file (buffer-file-name))
2581 (backend (vc-backend file
))
2582 (target (vc-workfile-version file
))
2583 (config (current-window-configuration)) done
)
2585 ((not (vc-find-backend-function backend
'cancel-version
))
2586 (error "Sorry, canceling versions is not supported under %s" backend
))
2587 ((not (vc-call latest-on-branch-p file
))
2588 (error "This is not the latest version; VC cannot cancel it"))
2589 ((not (vc-up-to-date-p file
))
2590 (error (substitute-command-keys "File is not up to date; use \\[vc-revert-buffer] to discard changes"))))
2591 (if (null (yes-or-no-p (format "Remove version %s from master? " target
)))
2593 (setq norevert
(or norevert
(not
2594 (yes-or-no-p "Revert buffer to most recent remaining version? "))))
2596 (message "Removing last change from %s..." file
)
2599 (vc-call cancel-version file norevert
)
2600 `((vc-state .
,(if norevert
'edited
'up-to-date
))
2601 (vc-checkout-time .
,(if norevert
2603 (nth 5 (file-attributes file
))))
2604 (vc-workfile-version . nil
)))
2605 (message "Removing last change from %s...done" file
)
2608 (norevert ;; clear version headers and mark the buffer modified
2609 (set-visited-file-name file
)
2610 (when (not vc-make-backup-files
)
2611 ;; inhibit backup for this buffer
2612 (make-local-variable 'backup-inhibited
)
2613 (setq backup-inhibited t
))
2614 (setq buffer-read-only nil
)
2617 (vc-dired-resynch-file file
))
2618 (t ;; revert buffer to file on disk
2619 (vc-resynch-buffer file t t
)))
2620 (message "Version %s has been removed from the master" target
))))
2623 (defun vc-switch-backend (file backend
)
2624 "Make BACKEND the current version control system for FILE.
2625 FILE must already be registered in BACKEND. The change is not
2626 permanent, only for the current session. This function only changes
2627 VC's perspective on FILE, it does not register or unregister it.
2628 By default, this command cycles through the registered backends.
2629 To get a prompt, use a prefix argument."
2633 (let ((backend (vc-backend buffer-file-name
))
2635 ;; Find the registered backends.
2636 (dolist (backend vc-handled-backends
)
2637 (when (vc-call-backend backend
'registered buffer-file-name
)
2638 (push backend backends
)))
2639 ;; Find the next backend.
2640 (let ((def (car (delq backend
(append (memq backend backends
) backends
))))
2641 (others (delete backend backends
)))
2643 ((null others
) (error "No other backend to switch to"))
2648 (format "Switch to backend [%s]: " def
)
2649 (mapcar (lambda (b) (list (downcase (symbol-name b
)))) backends
)
2650 nil t nil nil
(downcase (symbol-name def
))))))
2652 (unless (eq backend
(vc-backend file
))
2653 (vc-file-clearprops file
)
2654 (vc-file-setprop file
'vc-backend backend
)
2655 ;; Force recomputation of the state
2656 (unless (vc-call-backend backend
'registered file
)
2657 (vc-file-clearprops file
)
2658 (error "%s is not registered in %s" file backend
))
2659 (vc-mode-line file
)))
2662 (defun vc-transfer-file (file new-backend
)
2663 "Transfer FILE to another version control system NEW-BACKEND.
2664 If NEW-BACKEND has a higher precedence than FILE's current backend
2665 \(i.e. it comes earlier in `vc-handled-backends'), then register FILE in
2666 NEW-BACKEND, using the version number from the current backend as the
2667 base level. If NEW-BACKEND has a lower precedence than the current
2668 backend, then commit all changes that were made under the current
2669 backend to NEW-BACKEND, and unregister FILE from the current backend.
2670 \(If FILE is not yet registered under NEW-BACKEND, register it.)"
2671 (let* ((old-backend (vc-backend file
))
2672 (edited (memq (vc-state file
) '(edited needs-merge
)))
2673 (registered (vc-call-backend new-backend
'registered file
))
2675 (and registered
; Never move if not registered in new-backend yet.
2676 ;; move if new-backend comes later in vc-handled-backends
2677 (or (memq new-backend
(memq old-backend vc-handled-backends
))
2678 (y-or-n-p "Final transfer? "))))
2680 (if (eq old-backend new-backend
)
2681 (error "%s is the current backend of %s" new-backend file
))
2683 (set-file-modes file
(logior (file-modes file
) 128))
2684 ;; `registered' might have switched under us.
2685 (vc-switch-backend file old-backend
)
2686 (let* ((rev (vc-workfile-version file
))
2687 (modified-file (and edited
(make-temp-file file
)))
2688 (unmodified-file (and modified-file
(vc-version-backup-file file
))))
2689 ;; Go back to the base unmodified file.
2693 (copy-file file modified-file
'ok-if-already-exists
)
2694 ;; If we have a local copy of the unmodified file, handle that
2695 ;; here and not in vc-revert-file because we don't want to
2696 ;; delete that copy -- it is still useful for OLD-BACKEND.
2698 (copy-file unmodified-file file
'ok-if-already-exists
)
2699 (if (y-or-n-p "Get base version from master? ")
2700 (vc-revert-file file
))))
2701 (vc-call-backend new-backend
'receive-file file rev
))
2703 (vc-switch-backend file new-backend
)
2704 (unless (eq (vc-checkout-model file
) 'implicit
)
2705 (vc-checkout file t nil
))
2706 (rename-file modified-file file
'ok-if-already-exists
)
2707 (vc-file-setprop file
'vc-checkout-time nil
)))))
2709 (vc-switch-backend file old-backend
)
2710 (setq comment
(vc-call comment-history file
))
2711 (vc-call unregister file
))
2712 (vc-switch-backend file new-backend
)
2713 (when (or move edited
)
2714 (vc-file-setprop file
'vc-state
'edited
)
2716 (vc-checkin file nil comment
(stringp comment
)))))
2718 (defun vc-default-unregister (backend file
)
2719 "Default implementation of `vc-unregister', signals an error."
2720 (error "Unregistering files is not supported for %s" backend
))
2722 (defun vc-default-receive-file (backend file rev
)
2723 "Let BACKEND receive FILE from another version control system."
2724 (vc-call-backend backend
'register file rev
""))
2726 (defun vc-rename-master (oldmaster newfile templates
)
2727 "Rename OLDMASTER to be the master file for NEWFILE based on TEMPLATES."
2728 (let* ((dir (file-name-directory (expand-file-name oldmaster
)))
2729 (newdir (or (file-name-directory newfile
) ""))
2730 (newbase (file-name-nondirectory newfile
))
2732 ;; List of potential master files for `newfile'
2734 (lambda (s) (vc-possible-master s newdir newbase
))
2736 (if (or (file-symlink-p oldmaster
)
2737 (file-symlink-p (file-name-directory oldmaster
)))
2738 (error "This is unsafe in the presence of symbolic links"))
2742 ;; If possible, keep the master file in the same directory.
2744 (if (and f
(string= (file-name-directory (expand-file-name f
))
2748 ;; If not, just use the first possible place.
2751 (or (not (setq dir
(file-name-directory f
)))
2752 (file-directory-p dir
))
2755 (error "New file lacks a version control directory")))))
2758 (defun vc-rename-file (old new
)
2759 "Rename file OLD to NEW, and rename its master file likewise."
2760 (interactive "fVC rename file: \nFRename to: ")
2761 (let ((oldbuf (get-file-buffer old
))
2762 (backend (vc-backend old
)))
2763 (unless (or (null backend
) (vc-find-backend-function backend
'rename-file
))
2764 (error "Renaming files under %s is not supported in VC" backend
))
2765 (if (and oldbuf
(buffer-modified-p oldbuf
))
2766 (error "Please save files before moving them"))
2767 (if (get-file-buffer new
)
2768 (error "Already editing new file name"))
2769 (if (file-exists-p new
)
2770 (error "New file already exists"))
2772 (if (and backend
(not (vc-up-to-date-p old
)))
2773 (error "Please check in files before moving them"))
2774 (vc-call-backend backend
'rename-file old new
))
2775 ;; Move the actual file (unless the backend did it already)
2776 (if (or (not backend
) (file-exists-p old
))
2777 (rename-file old new
))
2778 ;; ?? Renaming a file might change its contents due to keyword expansion.
2779 ;; We should really check out a new copy if the old copy was precisely equal
2780 ;; to some checked in version. However, testing for this is tricky....
2782 (with-current-buffer oldbuf
2783 (let ((buffer-read-only buffer-read-only
))
2784 (set-visited-file-name new
))
2787 (set-buffer-modified-p nil
)))))
2789 ;; Only defined in very recent Emacsen
2790 (defvar small-temporary-file-directory nil
)
2793 (defun vc-update-change-log (&rest args
)
2794 "Find change log file and add entries from recent version control logs.
2795 Normally, find log entries for all registered files in the default
2798 With prefix arg of \\[universal-argument], only find log entries for the current buffer's file.
2800 With any numeric prefix arg, find log entries for all currently visited
2801 files that are under version control. This puts all the entries in the
2802 log for the default directory, which may not be appropriate.
2804 From a program, any ARGS are assumed to be filenames for which
2805 log entries should be gathered."
2807 (cond ((consp current-prefix-arg
) ;C-u
2808 (list buffer-file-name
))
2809 (current-prefix-arg ;Numeric argument.
2811 (buffers (buffer-list))
2814 (setq file
(buffer-file-name (car buffers
)))
2815 (and file
(vc-backend file
)
2816 (setq files
(cons file files
)))
2817 (setq buffers
(cdr buffers
)))
2820 ;; Don't supply any filenames to backend; this means
2821 ;; it should find all relevant files relative to
2822 ;; the default-directory.
2824 (vc-call-backend (vc-responsible-backend default-directory
)
2825 'update-changelog args
))
2827 (defun vc-default-update-changelog (backend files
)
2828 "Default implementation of update-changelog.
2829 Uses `rcs2log' which only works for RCS and CVS."
2830 ;; FIXME: We (c|sh)ould add support for cvs2cl
2831 (let ((odefault default-directory
)
2832 (changelog (find-change-log))
2833 ;; Presumably not portable to non-Unixy systems, along with rcs2log:
2834 (tempfile (make-temp-file
2835 (expand-file-name "vc"
2836 (or small-temporary-file-directory
2837 temporary-file-directory
))))
2838 (full-name (or add-log-full-name
2841 (format "uid%d" (number-to-string (user-uid)))))
2842 (mailing-address (or add-log-mailing-address
2843 user-mail-address
)))
2844 (find-file-other-window changelog
)
2845 (barf-if-buffer-read-only)
2848 (goto-char (point-min))
2850 (message "Computing change log entries...")
2851 (message "Computing change log entries... %s"
2854 (setq default-directory odefault
)
2855 (if (eq 0 (apply 'call-process
2856 (expand-file-name "rcs2log"
2858 nil
(list t tempfile
) nil
2860 "-u" (concat (vc-user-login-name)
2862 "\t" mailing-address
)
2866 (if (file-name-absolute-p f
)
2868 (concat odefault f
))))
2872 (set-buffer (get-buffer-create "*vc*")))
2874 (insert-file tempfile
)
2876 (setq default-directory
(file-name-directory changelog
))
2877 (delete-file tempfile
)))))
2879 ;; Annotate functionality
2881 ;; Declare globally instead of additional parameter to
2882 ;; temp-buffer-show-function (not possible to pass more than one
2883 ;; parameter). The use of annotate-ratio is deprecated in favor of
2884 ;; annotate-mode, which replaces it with the more sensible "span-to
2885 ;; days", along with autoscaling support.
2886 (defvar vc-annotate-ratio nil
"Global variable.")
2887 (defvar vc-annotate-backend nil
"Global variable.")
2889 (defconst vc-annotate-font-lock-keywords
2890 ;; The fontification is done by vc-annotate-lines instead of font-lock.
2891 '((vc-annotate-lines)))
2893 (defun vc-annotate-get-backend (buffer)
2894 "Return the backend matching \"Annotate\" buffer BUFFER.
2895 Return nil if no match made. Associations are made based on
2896 `vc-annotate-buffers'."
2897 (cdr (assoc buffer vc-annotate-buffers
)))
2899 (define-derived-mode vc-annotate-mode fundamental-mode
"Annotate"
2900 "Major mode for output buffers of the `vc-annotate' command.
2902 You can use the mode-specific menu to alter the time-span of the used
2903 colors. See variable `vc-annotate-menu-elements' for customizing the
2905 (set (make-local-variable 'truncate-lines
) t
)
2906 (set (make-local-variable 'font-lock-defaults
)
2907 '(vc-annotate-font-lock-keywords t
))
2908 (vc-annotate-add-menu))
2910 (defun vc-annotate-display-default (&optional ratio
)
2911 "Display the output of \\[vc-annotate] using the default color range.
2912 The color range is given by `vc-annotate-color-map', scaled by RATIO
2913 if present. The current time is used as the offset."
2915 (message "Redisplaying annotation...")
2916 (vc-annotate-display
2917 (if ratio
(vc-annotate-time-span vc-annotate-color-map ratio
)))
2918 (message "Redisplaying annotation...done"))
2920 (defun vc-annotate-display-autoscale (&optional full
)
2921 "Highlight the output of \\[vc-annotate]] using an autoscaled color map.
2922 Autoscaling means that the map is scaled from the current time to the
2923 oldest annotation in the buffer, or, with argument FULL non-nil, to
2924 cover the range from the oldest annotation to the newest."
2927 (oldest 999999.
) ;Any CVS users at the founding of Rome?
2928 (current (vc-annotate-convert-time (current-time)))
2930 (message "Redisplaying annotation...")
2931 ;; Run through this file and find the oldest and newest dates annotated.
2933 (goto-char (point-min))
2934 (while (setq date
(vc-call-backend vc-annotate-backend
'annotate-time
))
2938 (setq oldest date
))))
2939 (vc-annotate-display
2940 (vc-annotate-time-span ;return the scaled colormap.
2941 vc-annotate-color-map
2942 (/ (- (if full newest current
) oldest
)
2943 (vc-annotate-car-last-cons vc-annotate-color-map
)))
2945 (message "Redisplaying annotation...done \(%s\)"
2947 (format "Spanned from %.1f to %.1f days old"
2950 (format "Spanned to %.1f days old" (- current oldest
))))))
2952 ;; Menu -- Using easymenu.el
2953 (defun vc-annotate-add-menu ()
2954 "Add the menu 'Annotate' to the menu bar in VC-Annotate mode."
2955 (let ((menu-elements vc-annotate-menu-elements
)
2958 ["Default" (unless (null vc-annotate-display-mode
)
2959 (setq vc-annotate-display-mode nil
)
2960 (vc-annotate-display-select))
2961 :style toggle
:selected
(null vc-annotate-display-mode
)]))
2962 (oldest-in-map (vc-annotate-car-last-cons vc-annotate-color-map
)))
2963 (while menu-elements
2964 (let* ((element (car menu-elements
))
2965 (days (* element oldest-in-map
)))
2966 (setq menu-elements
(cdr menu-elements
))
2969 `([,(format "Span %.1f days" days
)
2970 (unless (and (numberp vc-annotate-display-mode
)
2971 (= vc-annotate-display-mode
,days
))
2972 (vc-annotate-display-select nil
,days
))
2973 :style toggle
:selected
2974 (and (numberp vc-annotate-display-mode
)
2975 (= vc-annotate-display-mode
,days
)) ])))))
2981 (float (string-to-number
2982 (read-string "Span how many days? ")))))
2983 (vc-annotate-display-select nil days
)) t
])
2987 (unless (eq vc-annotate-display-mode
'scale
)
2988 (vc-annotate-display-select nil
'scale
))
2989 :style toggle
:selected
2990 (eq vc-annotate-display-mode
'scale
)])
2992 ["Span Oldest->Newest"
2993 (unless (eq vc-annotate-display-mode
'fullscale
)
2994 (vc-annotate-display-select nil
'fullscale
))
2995 :style toggle
:selected
2996 (eq vc-annotate-display-mode
'fullscale
)])))
2998 (if (or (featurep 'easymenu
) (load "easymenu" t
))
2999 (easy-menu-define vc-annotate-mode-menu vc-annotate-mode-map
3000 "VC Annotate Display Menu" menu-def
))))
3002 (defun vc-annotate-display-select (&optional buffer mode
)
3003 "Highlight the output of \\[vc-annotate].
3004 By default, the current buffer is highlighted, unless overridden by
3005 BUFFER. `vc-annotate-display-mode' specifies the highlighting mode to
3006 use; you may override this using the second optional arg MODE."
3008 (if mode
(setq vc-annotate-display-mode mode
))
3011 (display-buffer buffer
))
3012 (if (not vc-annotate-mode
) ; Turn on vc-annotate-mode if not done
3014 (cond ((null vc-annotate-display-mode
)
3015 (vc-annotate-display-default vc-annotate-ratio
))
3016 ;; One of the auto-scaling modes
3017 ((eq vc-annotate-display-mode
'scale
)
3018 (vc-annotate-display-autoscale))
3019 ((eq vc-annotate-display-mode
'fullscale
)
3020 (vc-annotate-display-autoscale t
))
3021 ((numberp vc-annotate-display-mode
) ; A fixed number of days lookback
3022 (vc-annotate-display-default
3023 (/ vc-annotate-display-mode
(vc-annotate-car-last-cons
3024 vc-annotate-color-map
))))
3025 (t (error "No such display mode: %s"
3026 vc-annotate-display-mode
))))
3028 ;;;; (defun vc-BACKEND-annotate-command (file buffer) ...)
3029 ;;;; Execute "annotate" on FILE by using `call-process' and insert
3030 ;;;; the contents in BUFFER.
3033 (defun vc-annotate (prefix)
3034 "Display the edit history of the current file using colours.
3036 This command creates a buffer that shows, for each line of the current
3037 file, when it was last edited and by whom. Additionally, colours are
3038 used to show the age of each line--blue means oldest, red means
3039 youngest, and intermediate colours indicate intermediate ages. By
3040 default, the time scale stretches back one year into the past;
3041 everything that is older than that is shown in blue.
3043 With a prefix argument, this command asks two questions in the
3044 minibuffer. First, you may enter a version number; then the buffer
3045 displays and annotates that version instead of the current version
3046 \(type RET in the minibuffer to leave that default unchanged). Then,
3047 you are prompted for the time span in days which the color range
3048 should cover. For example, a time span of 20 days means that changes
3049 over the past 20 days are shown in red to blue, according to their
3050 age, and everything that is older than that is shown in blue.
3052 Customization variables:
3054 `vc-annotate-menu-elements' customizes the menu elements of the
3055 mode-specific menu. `vc-annotate-color-map' and
3056 `vc-annotate-very-old-color' defines the mapping of time to
3057 colors. `vc-annotate-background' specifies the background color."
3059 (vc-ensure-vc-buffer)
3060 (let* ((temp-buffer-name (concat "*Annotate " (buffer-name) "*"))
3061 (temp-buffer-show-function 'vc-annotate-display-select
)
3062 (rev (vc-workfile-version (buffer-file-name)))
3063 (vc-annotate-version
3064 (if prefix
(read-string
3065 (format "Annotate from version: (default %s) " rev
)
3069 (setq vc-annotate-display-mode
3070 (float (string-to-number
3071 (read-string "Annotate span days: (default 20) "
3073 (setq vc-annotate-backend
(vc-backend (buffer-file-name)))
3074 (message "Annotating...")
3075 (if (not (vc-find-backend-function vc-annotate-backend
'annotate-command
))
3076 (error "Sorry, annotating is not implemented for %s"
3077 vc-annotate-backend
))
3078 (with-output-to-temp-buffer temp-buffer-name
3079 (vc-call-backend vc-annotate-backend
'annotate-command
3080 (file-name-nondirectory (buffer-file-name))
3081 (get-buffer temp-buffer-name
)
3082 vc-annotate-version
))
3083 ;; Don't use the temp-buffer-name until the buffer is created
3084 ;; (only after `with-output-to-temp-buffer'.)
3085 (setq vc-annotate-buffers
3086 (append vc-annotate-buffers
3087 (list (cons (get-buffer temp-buffer-name
) vc-annotate-backend
))))
3088 (message "Annotating... done")))
3090 (defun vc-annotate-car-last-cons (a-list)
3091 "Return car of last cons in association list A-LIST."
3092 (if (not (eq nil
(cdr a-list
)))
3093 (vc-annotate-car-last-cons (cdr a-list
))
3094 (car (car a-list
))))
3096 (defun vc-annotate-time-span (a-list span
&optional quantize
)
3097 "Apply factor SPAN to the time-span of association list A-LIST.
3098 Return the new alist.
3099 Optionally quantize to the factor of QUANTIZE."
3100 ;; Apply span to each car of every cons
3101 (if (not (eq nil a-list
))
3102 (append (list (cons (* (car (car a-list
)) span
)
3103 (cdr (car a-list
))))
3104 (vc-annotate-time-span (nthcdr (or quantize
; optional
3106 a-list
) span quantize
))))
3108 (defun vc-annotate-compcar (threshold a-list
)
3109 "Test successive cons cells of A-LIST against THRESHOLD.
3110 Return the first cons cell with a car that is not less than THRESHOLD,
3111 nil if no such cell exists."
3113 (tmp-cons (car a-list
)))
3114 (while (and tmp-cons
(< (car tmp-cons
) threshold
))
3115 (setq tmp-cons
(car (nthcdr i a-list
)))
3117 tmp-cons
)) ; Return the appropriate value
3119 (defun vc-annotate-convert-time (time)
3120 "Convert a time value to a floating-point number of days.
3121 The argument TIME is a list as returned by `current-time' or
3122 `encode-time', only the first two elements of that list are considered."
3123 (/ (+ (* (float (car time
)) (lsh 1 16)) (cadr time
)) 24 3600))
3125 (defun vc-annotate-difference (&optional offset
)
3126 "Return the time span in days to the next annotation.
3127 This calls the backend function annotate-time, and returns the
3128 difference in days between the time returned and the current time,
3129 or OFFSET if present."
3130 (let ((next-time (vc-call-backend vc-annotate-backend
'annotate-time
)))
3133 (vc-call-backend vc-annotate-backend
'annotate-current-time
))
3136 (defun vc-default-annotate-current-time (backend)
3137 "Return the current time, encoded as fractional days."
3138 (vc-annotate-convert-time (current-time)))
3140 (defun vc-annotate-display (&optional color-map offset
)
3141 "Highlight `vc-annotate' output in the current buffer.
3142 COLOR-MAP, if present, overrides `vc-annotate-color-map'.
3143 The annotations are relative to the current time, unless overridden by OFFSET.
3145 This function is obsolete, and has been replaced by
3146 `vc-annotate-display-select'."
3147 (if (and color-map
(not (eq color-map vc-annotate-color-map
)))
3148 (set (make-local-variable 'vc-annotate-color-map
) color-map
))
3149 (set (make-local-variable 'vc-annotate-offset
) offset
)
3152 (defvar vc-annotate-offset nil
)
3154 (defun vc-annotate-lines (limit)
3156 (while (and (< (point) limit
)
3157 (setq difference
(vc-annotate-difference vc-annotate-offset
)))
3158 (let* ((color (or (vc-annotate-compcar difference vc-annotate-color-map
)
3159 (cons nil vc-annotate-very-old-color
)))
3160 ;; substring from index 1 to remove any leading `#' in the name
3161 (face-name (concat "vc-annotate-face-" (substring (cdr color
) 1)))
3162 ;; Make the face if not done.
3163 (face (or (intern-soft face-name
)
3164 (let ((tmp-face (make-face (intern face-name
))))
3165 (set-face-foreground tmp-face
(cdr color
))
3166 (if vc-annotate-background
3167 (set-face-background tmp-face
3168 vc-annotate-background
))
3169 tmp-face
))) ; Return the face
3173 (put-text-property point
(point) 'face face
)))
3174 ;; Pretend to font-lock there were no matches.
3177 ;; Collect back-end-dependent stuff here
3179 (defalias 'vc-default-logentry-check
'ignore
)
3181 (defun vc-check-headers ()
3182 "Check if the current file has any headers in it."
3184 (vc-call-backend (vc-backend buffer-file-name
) 'check-headers
))
3186 (defun vc-default-check-headers (backend)
3187 "Default implementation of check-headers; always returns nil."
3190 ;; Back-end-dependent stuff ends here.
3192 ;; Set up key bindings for use while editing log messages
3194 (defun vc-log-edit (file)
3195 "Set up `log-edit' for use with VC on FILE."
3196 (setq default-directory
3197 (if file
(file-name-directory file
)
3198 (with-current-buffer vc-parent-buffer default-directory
)))
3199 (log-edit 'vc-finish-logentry nil
3200 (if file
`(lambda () ',(list (file-name-nondirectory file
)))
3201 ;; If FILE is nil, we were called from vc-dired.
3203 (with-current-buffer vc-parent-buffer
3204 (dired-get-marked-files t
)))))
3205 (set (make-local-variable 'vc-log-file
) file
)
3206 (make-local-variable 'vc-log-version
)
3207 (set-buffer-modified-p nil
)
3208 (setq buffer-file-name nil
))
3210 ;; These things should probably be generally available
3212 (defun vc-file-tree-walk (dirname func
&rest args
)
3213 "Walk recursively through DIRNAME.
3214 Invoke FUNC f ARGS on each VC-managed file f underneath it."
3215 (vc-file-tree-walk-internal (expand-file-name dirname
) func args
)
3216 (message "Traversing directory %s...done" dirname
))
3218 (defun vc-file-tree-walk-internal (file func args
)
3219 (if (not (file-directory-p file
))
3220 (if (vc-backend file
) (apply func file args
))
3221 (message "Traversing directory %s..." (abbreviate-file-name file
))
3222 (let ((dir (file-name-as-directory file
)))
3225 (string-equal f
".")
3226 (string-equal f
"..")
3227 (member f vc-directory-exclusion-list
)
3228 (let ((dirf (expand-file-name f dir
)))
3230 (file-symlink-p dirf
);; Avoid possible loops
3231 (vc-file-tree-walk-internal dirf func args
)))))
3232 (directory-files dir
)))))
3236 ;; DEVELOPER'S NOTES ON CONCURRENCY PROBLEMS IN THIS CODE
3238 ;; These may be useful to anyone who has to debug or extend the package.
3239 ;; (Note that this information corresponds to versions 5.x. Some of it
3240 ;; might have been invalidated by the additions to support branching
3241 ;; and RCS keyword lookup. AS, 1995/03/24)
3243 ;; A fundamental problem in VC is that there are time windows between
3244 ;; vc-next-action's computations of the file's version-control state and
3245 ;; the actions that change it. This is a window open to lossage in a
3246 ;; multi-user environment; someone else could nip in and change the state
3247 ;; of the master during it.
3249 ;; The performance problem is that rlog/prs calls are very expensive; we want
3250 ;; to avoid them as much as possible.
3254 ;; The performance problem, it turns out, simplifies in practice to the
3255 ;; problem of making vc-state fast. The two other functions that call
3256 ;; prs/rlog will not be so commonly used that the slowdown is a problem; one
3257 ;; makes snapshots, the other deletes the calling user's last change in the
3260 ;; The race condition implies that we have to either (a) lock the master
3261 ;; during the entire execution of vc-next-action, or (b) detect and
3262 ;; recover from errors resulting from dispatch on an out-of-date state.
3264 ;; Alternative (a) appears to be infeasible. The problem is that we can't
3265 ;; guarantee that the lock will ever be removed. Suppose a user starts a
3266 ;; checkin, the change message buffer pops up, and the user, having wandered
3267 ;; off to do something else, simply forgets about it?
3269 ;; Alternative (b), on the other hand, works well with a cheap way to speed up
3270 ;; vc-state. Usually, if a file is registered, we can read its locked/
3271 ;; unlocked state and its current owner from its permissions.
3273 ;; This shortcut will fail if someone has manually changed the workfile's
3274 ;; permissions; also if developers are munging the workfile in several
3275 ;; directories, with symlinks to a master (in this latter case, the
3276 ;; permissions shortcut will fail to detect a lock asserted from another
3279 ;; Note that these cases correspond exactly to the errors which could happen
3280 ;; because of a competing checkin/checkout race in between two instances of
3283 ;; For VC's purposes, a workfile/master pair may have the following states:
3285 ;; A. Unregistered. There is a workfile, there is no master.
3287 ;; B. Registered and not locked by anyone.
3289 ;; C. Locked by calling user and unchanged.
3291 ;; D. Locked by the calling user and changed.
3293 ;; E. Locked by someone other than the calling user.
3295 ;; This makes for 25 states and 20 error conditions. Here's the matrix:
3297 ;; VC's idea of state
3299 ;; V Actual state RCS action SCCS action Effect
3301 ;; A . 1 2 3 4 ci -u -t- admin -fb -i<file> initial admin
3302 ;; B 5 . 6 7 8 co -l get -e checkout
3303 ;; C 9 10 . 11 12 co -u unget; get revert
3304 ;; D 13 14 15 . 16 ci -u -m<comment> delta -y<comment>; get checkin
3305 ;; E 17 18 19 20 . rcs -u -M -l unget -n ; get -g steal lock
3307 ;; All commands take the master file name as a last argument (not shown).
3309 ;; In the discussion below, a "self-race" is a pathological situation in
3310 ;; which VC operations are being attempted simultaneously by two or more
3311 ;; Emacsen running under the same username.
3313 ;; The vc-next-action code has the following windows:
3316 ;; Between the check for existence of a master file and the call to
3317 ;; admin/checkin in vc-buffer-admin (apparent state A). This window may
3318 ;; never close if the initial-comment feature is on.
3321 ;; Between the call to vc-workfile-unchanged-p in and the immediately
3322 ;; following revert (apparent state C).
3325 ;; Between the call to vc-workfile-unchanged-p in and the following
3326 ;; checkin (apparent state D). This window may never close.
3329 ;; Between the unlock and the immediately following checkout during a
3330 ;; revert operation (apparent state C). Included in window Q.
3333 ;; Between vc-state and the following checkout (apparent state B).
3336 ;; Between vc-state and the following revert (apparent state C).
3337 ;; Includes windows Q and S.
3340 ;; Between vc-state and the following checkin (apparent state
3341 ;; D). This window may never be closed if the user fails to complete the
3342 ;; checkin message. Includes window R.
3345 ;; Between vc-state and the following steal-lock (apparent
3346 ;; state E). This window may never close if the user fails to complete
3347 ;; the steal-lock message. Includes window X.
3350 ;; Between the unlock and the immediately following re-lock during a
3351 ;; steal-lock operation (apparent state E). This window may never close
3352 ;; if the user fails to complete the steal-lock message.
3356 ;; Apparent state A ---
3358 ;; 1. File looked unregistered but is actually registered and not locked.
3360 ;; Potential cause: someone else's admin during window P, with
3361 ;; caller's admin happening before their checkout.
3363 ;; RCS: Prior to version 5.6.4, ci fails with message
3364 ;; "no lock set by <user>". From 5.6.4 onwards, VC uses the new
3365 ;; ci -i option and the message is "<file>,v: already exists".
3366 ;; SCCS: admin will fail with error (ad19).
3368 ;; We can let these errors be passed up to the user.
3370 ;; 2. File looked unregistered but is actually locked by caller, unchanged.
3372 ;; Potential cause: self-race during window P.
3374 ;; RCS: Prior to version 5.6.4, reverts the file to the last saved
3375 ;; version and unlocks it. From 5.6.4 onwards, VC uses the new
3376 ;; ci -i option, failing with message "<file>,v: already exists".
3377 ;; SCCS: will fail with error (ad19).
3379 ;; Either of these consequences is acceptable.
3381 ;; 3. File looked unregistered but is actually locked by caller, changed.
3383 ;; Potential cause: self-race during window P.
3385 ;; RCS: Prior to version 5.6.4, VC registers the caller's workfile as
3386 ;; a delta with a null change comment (the -t- switch will be
3387 ;; ignored). From 5.6.4 onwards, VC uses the new ci -i option,
3388 ;; failing with message "<file>,v: already exists".
3389 ;; SCCS: will fail with error (ad19).
3391 ;; 4. File looked unregistered but is locked by someone else.
3393 ;; Potential cause: someone else's admin during window P, with
3394 ;; caller's admin happening *after* their checkout.
3396 ;; RCS: Prior to version 5.6.4, ci fails with a
3397 ;; "no lock set by <user>" message. From 5.6.4 onwards,
3398 ;; VC uses the new ci -i option, failing with message
3399 ;; "<file>,v: already exists".
3400 ;; SCCS: will fail with error (ad19).
3402 ;; We can let these errors be passed up to the user.
3404 ;; Apparent state B ---
3406 ;; 5. File looked registered and not locked, but is actually unregistered.
3408 ;; Potential cause: master file got nuked during window P.
3410 ;; RCS: will fail with "RCS/<file>: No such file or directory"
3411 ;; SCCS: will fail with error ut4.
3413 ;; We can let these errors be passed up to the user.
3415 ;; 6. File looked registered and not locked, but is actually locked by the
3416 ;; calling user and unchanged.
3418 ;; Potential cause: self-race during window T.
3420 ;; RCS: in the same directory as the previous workfile, co -l will fail
3421 ;; with "co error: writable foo exists; checkout aborted". In any other
3422 ;; directory, checkout will succeed.
3423 ;; SCCS: will fail with ge17.
3425 ;; Either of these consequences is acceptable.
3427 ;; 7. File looked registered and not locked, but is actually locked by the
3428 ;; calling user and changed.
3432 ;; 8. File looked registered and not locked, but is actually locked by another
3435 ;; Potential cause: someone else checks it out during window T.
3437 ;; RCS: co error: revision 1.3 already locked by <user>
3438 ;; SCCS: fails with ge4 (in directory) or ut7 (outside it).
3440 ;; We can let these errors be passed up to the user.
3442 ;; Apparent state C ---
3444 ;; 9. File looks locked by calling user and unchanged, but is unregistered.
3448 ;; 10. File looks locked by calling user and unchanged, but is actually not
3451 ;; Potential cause: a self-race in window U, or by the revert's
3452 ;; landing during window X of some other user's steal-lock or window S
3453 ;; of another user's revert.
3455 ;; RCS: succeeds, refreshing the file from the identical version in
3457 ;; SCCS: fails with error ut4 (p file nonexistent).
3459 ;; Either of these consequences is acceptable.
3461 ;; 11. File is locked by calling user. It looks unchanged, but is actually
3464 ;; Potential cause: the file would have to be touched by a self-race
3467 ;; The revert will succeed, removing whatever changes came with
3468 ;; the touch. It is theoretically possible that work could be lost.
3470 ;; 12. File looks like it's locked by the calling user and unchanged, but
3471 ;; it's actually locked by someone else.
3473 ;; Potential cause: a steal-lock in window V.
3475 ;; RCS: co error: revision <rev> locked by <user>; use co -r or rcs -u
3476 ;; SCCS: fails with error un2
3478 ;; We can pass these errors up to the user.
3480 ;; Apparent state D ---
3482 ;; 13. File looks like it's locked by the calling user and changed, but it's
3483 ;; actually unregistered.
3485 ;; Potential cause: master file got nuked during window P.
3487 ;; RCS: Prior to version 5.6.4, checks in the user's version as an
3488 ;; initial delta. From 5.6.4 onwards, VC uses the new ci -j
3489 ;; option, failing with message "no such file or directory".
3490 ;; SCCS: will fail with error ut4.
3492 ;; This case is kind of nasty. Under RCS prior to version 5.6.4,
3493 ;; VC may fail to detect the loss of previous version information.
3495 ;; 14. File looks like it's locked by the calling user and changed, but it's
3496 ;; actually unlocked.
3498 ;; Potential cause: self-race in window V, or the checkin happening
3499 ;; during the window X of someone else's steal-lock or window S of
3500 ;; someone else's revert.
3502 ;; RCS: ci will fail with "no lock set by <user>".
3503 ;; SCCS: delta will fail with error ut4.
3505 ;; 15. File looks like it's locked by the calling user and changed, but it's
3506 ;; actually locked by the calling user and unchanged.
3508 ;; Potential cause: another self-race --- a whole checkin/checkout
3509 ;; sequence by the calling user would have to land in window R.
3511 ;; SCCS: checks in a redundant delta and leaves the file unlocked as usual.
3512 ;; RCS: reverts to the file state as of the second user's checkin, leaving
3513 ;; the file unlocked.
3515 ;; It is theoretically possible that work could be lost under RCS.
3517 ;; 16. File looks like it's locked by the calling user and changed, but it's
3518 ;; actually locked by a different user.
3520 ;; RCS: ci error: no lock set by <user>
3521 ;; SCCS: unget will fail with error un2
3523 ;; We can pass these errors up to the user.
3525 ;; Apparent state E ---
3527 ;; 17. File looks like it's locked by some other user, but it's actually
3532 ;; 18. File looks like it's locked by some other user, but it's actually
3535 ;; Potential cause: someone released a lock during window W.
3537 ;; RCS: The calling user will get the lock on the file.
3538 ;; SCCS: unget -n will fail with cm4.
3540 ;; Either of these consequences will be OK.
3542 ;; 19. File looks like it's locked by some other user, but it's actually
3543 ;; locked by the calling user and unchanged.
3545 ;; Potential cause: the other user relinquishing a lock followed by
3546 ;; a self-race, both in window W.
3548 ;; Under both RCS and SCCS, both unlock and lock will succeed, making
3549 ;; the sequence a no-op.
3551 ;; 20. File looks like it's locked by some other user, but it's actually
3552 ;; locked by the calling user and changed.
3558 ;; In order of decreasing severity:
3560 ;; Cases 11 and 15 are the only ones that potentially lose work.
3561 ;; They would require a self-race for this to happen.
3563 ;; Case 13 in RCS loses information about previous deltas, retaining
3564 ;; only the information in the current workfile. This can only happen
3565 ;; if the master file gets nuked in window P.
3567 ;; Case 3 in RCS and case 15 under SCCS insert a redundant delta with
3568 ;; no change comment in the master. This would require a self-race in
3569 ;; window P or R respectively.
3571 ;; Cases 2, 10, 19 and 20 do extra work, but make no changes.
3573 ;; Unfortunately, it appears to me that no recovery is possible in these
3574 ;; cases. They don't yield error messages, so there's no way to tell that
3575 ;; a race condition has occurred.
3577 ;; All other cases don't change either the workfile or the master, and
3578 ;; trigger command errors which the user will see.
3580 ;; Thus, there is no explicit recovery code.