(compilation-minor-mode-map, compilation-mode-map):
[emacs.git] / lisp / vc.el
blob259def067659bcb473b24c49e52bcb63b4fb2728
1 ;;; vc.el --- drive a version-control system from within Emacs
3 ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000,
4 ;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
5 ;; Free Software Foundation, Inc.
7 ;; Author: FSF (see below for full credits)
8 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
9 ;; Keywords: tools
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 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Credits:
28 ;; VC was initially designed and implemented by Eric S. Raymond
29 ;; <esr@thyrsus.com> in 1992. Over the years, many other people have
30 ;; contributed substantial amounts of work to VC. These include:
32 ;; Per Cederqvist <ceder@lysator.liu.se>
33 ;; Paul Eggert <eggert@twinsun.com>
34 ;; Sebastian Kremer <sk@thp.uni-koeln.de>
35 ;; Martin Lorentzson <martinl@gnu.org>
36 ;; Dave Love <fx@gnu.org>
37 ;; Stefan Monnier <monnier@cs.yale.edu>
38 ;; Thien-Thi Nguyen <ttn@gnu.org>
39 ;; Dan Nicolaescu <dann@ics.uci.edu>
40 ;; J.D. Smith <jdsmith@alum.mit.edu>
41 ;; Andre Spiegel <spiegel@gnu.org>
42 ;; Richard Stallman <rms@gnu.org>
44 ;; In July 2007 ESR returned and redesigned the mode to cope better
45 ;; with modern version-control systems that do commits by fileset
46 ;; rather than per individual file.
48 ;; If you maintain a client of the mode or customize it in your .emacs,
49 ;; note that some backend functions which formerly took single file arguments
50 ;; now take a list of files. These include: register, checkin, print-log,
51 ;; rollback, and diff.
53 ;;; Commentary:
55 ;; This mode is fully documented in the Emacs user's manual.
57 ;; Supported version-control systems presently include CVS, RCS, GNU
58 ;; Arch, Subversion, Bzr, Git, Mercurial, Meta-CVS, Monotone and SCCS
59 ;; (or its free replacement, CSSC).
61 ;; Some features will not work with old RCS versions. Where
62 ;; appropriate, VC finds out which version you have, and allows or
63 ;; disallows those features (stealing locks, for example, works only
64 ;; from 5.6.2 onwards).
65 ;; Even initial checkins will fail if your RCS version is so old that ci
66 ;; doesn't understand -t-; this has been known to happen to people running
67 ;; NExTSTEP 3.0.
69 ;; You can support the RCS -x option by customizing vc-rcs-master-templates.
71 ;; Proper function of the SCCS diff commands requires the shellscript vcdiff
72 ;; to be installed somewhere on Emacs's path for executables.
74 ;; If your site uses the ChangeLog convention supported by Emacs, the
75 ;; function `log-edit-comment-to-change-log' could prove a useful checkin hook,
76 ;; although you might prefer to use C-c C-a (i.e. `log-edit-insert-changelog')
77 ;; from the commit buffer instead or to set `log-edit-setup-invert'.
79 ;; The vc code maintains some internal state in order to reduce expensive
80 ;; version-control operations to a minimum. Some names are only computed
81 ;; once. If you perform version control operations with the backend while
82 ;; vc's back is turned, or move/rename master files while vc is running,
83 ;; vc may get seriously confused. Don't do these things!
85 ;; Developer's notes on some concurrency issues are included at the end of
86 ;; the file.
88 ;; ADDING SUPPORT FOR OTHER BACKENDS
90 ;; VC can use arbitrary version control systems as a backend. To add
91 ;; support for a new backend named SYS, write a library vc-sys.el that
92 ;; contains functions of the form `vc-sys-...' (note that SYS is in lower
93 ;; case for the function and library names). VC will use that library if
94 ;; you put the symbol SYS somewhere into the list of
95 ;; `vc-handled-backends'. Then, for example, if `vc-sys-registered'
96 ;; returns non-nil for a file, all SYS-specific versions of VC commands
97 ;; will be available for that file.
99 ;; VC keeps some per-file information in the form of properties (see
100 ;; vc-file-set/getprop in vc-hooks.el). The backend-specific functions
101 ;; do not generally need to be aware of these properties. For example,
102 ;; `vc-sys-working-revision' should compute the working revision and
103 ;; return it; it should not look it up in the property, and it needn't
104 ;; store it there either. However, if a backend-specific function does
105 ;; store a value in a property, that value takes precedence over any
106 ;; value that the generic code might want to set (check for uses of
107 ;; the macro `with-vc-properties' in vc.el).
109 ;; In the list of functions below, each identifier needs to be prepended
110 ;; with `vc-sys-'. Some of the functions are mandatory (marked with a
111 ;; `*'), others are optional (`-').
113 ;; BACKEND PROPERTIES
115 ;; * revision-granularity
117 ;; Takes no arguments. Returns either 'file or 'repository. Backends
118 ;; that return 'file have per-file revision numbering; backends
119 ;; that return 'repository have per-repository revision numbering,
120 ;; so a revision level implicitly identifies a changeset
122 ;; STATE-QUERYING FUNCTIONS
124 ;; * registered (file)
126 ;; Return non-nil if FILE is registered in this backend. Both this
127 ;; function as well as `state' should be careful to fail gracefully
128 ;; in the event that the backend executable is absent. It is
129 ;; preferable that this function's body is autoloaded, that way only
130 ;; calling vc-registered does not cause the backend to be loaded
131 ;; (all the vc-FOO-registered functions are called to try to find
132 ;; the controlling backend for FILE.
134 ;; * state (file)
136 ;; Return the current version control state of FILE. For a list of
137 ;; possible values, see `vc-state'. This function should do a full and
138 ;; reliable state computation; it is usually called immediately after
139 ;; C-x v v. If you want to use a faster heuristic when visiting a
140 ;; file, put that into `state-heuristic' below. Note that under most
141 ;; VCSes this won't be called at all, dir-status is used instead.
143 ;; - state-heuristic (file)
145 ;; If provided, this function is used to estimate the version control
146 ;; state of FILE at visiting time. It should be considerably faster
147 ;; than the implementation of `state'. For a list of possible values,
148 ;; see the doc string of `vc-state'.
150 ;; - dir-status (dir update-function)
152 ;; Produce RESULT: a list of lists of the form (FILE VC-STATE EXTRA)
153 ;; for the files in DIR.
154 ;; EXTRA can be used for backend specific information about FILE.
155 ;; If a command needs to be run to compute this list, it should be
156 ;; run asynchronously using (current-buffer) as the buffer for the
157 ;; command. When RESULT is computed, it should be passed back by
158 ;; doing: (funcall UPDATE-FUNCTION RESULT nil).
159 ;; If the backend uses a process filter, hence it produces partial results,
160 ;; they can be passed back by doing:
161 ;; (funcall UPDATE-FUNCTION RESULT t)
162 ;; and then do a (funcall UPDATE-FUNCTION RESULT nil)
163 ;; when all the results have been computed.
164 ;; To provide more backend specific functionality for `vc-dir'
165 ;; the following functions might be needed: `status-extra-headers',
166 ;; `status-printer', `extra-status-menu' and `dir-status-files'.
168 ;; - dir-status-files (dir files default-state update-function)
170 ;; This function is identical to dir-status except that it should
171 ;; only report status for the specified FILES. Also it needs to
172 ;; report on all requested files, including up-to-date or ignored
173 ;; files. If not provided, the default is to consider that the files
174 ;; are in DEFAULT-STATE.
176 ;; - status-extra-headers (dir)
178 ;; Return a string that will be added to the *vc-dir* buffer header.
180 ;; - status-printer (fileinfo)
182 ;; Pretty print the `vc-dir-fileinfo' FILEINFO.
183 ;; If a backend needs to show more information than the default FILE
184 ;; and STATE in the vc-dir listing, it can store that extra
185 ;; information in `vc-dir-fileinfo->extra'. This function can be
186 ;; used to display that extra information in the *vc-dir* buffer.
188 ;; - status-fileinfo-extra (file)
190 ;; Compute `vc-dir-fileinfo->extra' for FILE.
192 ;; * working-revision (file)
194 ;; Return the working revision of FILE. This is the revision fetched
195 ;; by the last checkout or upate, not necessarily the same thing as the
196 ;; head or tip revision. Should return "0" for a file added but not yet
197 ;; committed.
199 ;; - latest-on-branch-p (file)
201 ;; Return non-nil if the working revision of FILE is the latest revision
202 ;; on its branch (many VCSes call this the 'tip' or 'head' revision).
203 ;; The default implementation always returns t, which means that
204 ;; working with non-current revisions is not supported by default.
206 ;; * checkout-model (files)
208 ;; Indicate whether FILES need to be "checked out" before they can be
209 ;; edited. See `vc-checkout-model' for a list of possible values.
211 ;; - workfile-unchanged-p (file)
213 ;; Return non-nil if FILE is unchanged from the working revision.
214 ;; This function should do a brief comparison of FILE's contents
215 ;; with those of the repository master of the working revision. If
216 ;; the backend does not have such a brief-comparison feature, the
217 ;; default implementation of this function can be used, which
218 ;; delegates to a full vc-BACKEND-diff. (Note that vc-BACKEND-diff
219 ;; must not run asynchronously in this case, see variable
220 ;; `vc-disable-async-diff'.)
222 ;; - mode-line-string (file)
224 ;; If provided, this function should return the VC-specific mode
225 ;; line string for FILE. The returned string should have a
226 ;; `help-echo' property which is the text to be displayed as a
227 ;; tooltip when the mouse hovers over the VC entry on the mode-line.
228 ;; The default implementation deals well with all states that
229 ;; `vc-state' can return.
231 ;; - prettify-state-info (file)
233 ;; Translate the `vc-state' property of FILE into a string that can be
234 ;; used in a human-readable buffer. The default implementation deals well
235 ;; with all states that `vc-state' can return.
237 ;; STATE-CHANGING FUNCTIONS
239 ;; * create-repo (backend)
241 ;; Create an empty repository in the current directory and initialize
242 ;; it so VC mode can add files to it. For file-oriented systems, this
243 ;; need do no more than create a subdirectory with the right name.
245 ;; * register (files &optional rev comment)
247 ;; Register FILES in this backend. Optionally, an initial revision REV
248 ;; and an initial description of the file, COMMENT, may be specified,
249 ;; but it is not guaranteed that the backend will do anything with this.
250 ;; The implementation should pass the value of vc-register-switches
251 ;; to the backend command. (Note: in older versions of VC, this
252 ;; command took a single file argument and not a list.)
254 ;; - init-revision (file)
256 ;; The initial revision to use when registering FILE if one is not
257 ;; specified by the user. If not provided, the variable
258 ;; vc-default-init-revision is used instead.
260 ;; - responsible-p (file)
262 ;; Return non-nil if this backend considers itself "responsible" for
263 ;; FILE, which can also be a directory. This function is used to find
264 ;; out what backend to use for registration of new files and for things
265 ;; like change log generation. The default implementation always
266 ;; returns nil.
268 ;; - could-register (file)
270 ;; Return non-nil if FILE could be registered under this backend. The
271 ;; default implementation always returns t.
273 ;; - receive-file (file rev)
275 ;; Let this backend "receive" a file that is already registered under
276 ;; another backend. The default implementation simply calls `register'
277 ;; for FILE, but it can be overridden to do something more specific,
278 ;; e.g. keep revision numbers consistent or choose editing modes for
279 ;; FILE that resemble those of the other backend.
281 ;; - unregister (file)
283 ;; Unregister FILE from this backend. This is only needed if this
284 ;; backend may be used as a "more local" backend for temporary editing.
286 ;; * checkin (files rev comment)
288 ;; Commit changes in FILES to this backend. If REV is non-nil, that
289 ;; should become the new revision number (not all backends do
290 ;; anything with it). COMMENT is used as a check-in comment. The
291 ;; implementation should pass the value of vc-checkin-switches to
292 ;; the backend command. (Note: in older versions of VC, this
293 ;; command took a single file argument and not a list.)
295 ;; * find-revision (file rev buffer)
297 ;; Fetch revision REV of file FILE and put it into BUFFER.
298 ;; If REV is the empty string, fetch the head of the trunk.
299 ;; The implementation should pass the value of vc-checkout-switches
300 ;; to the backend command.
302 ;; * checkout (file &optional editable rev)
304 ;; Check out revision REV of FILE into the working area. If EDITABLE
305 ;; is non-nil, FILE should be writable by the user and if locking is
306 ;; used for FILE, a lock should also be set. If REV is non-nil, that
307 ;; is the revision to check out (default is the working revision).
308 ;; If REV is t, that means to check out the head of the current branch;
309 ;; if it is the empty string, check out the head of the trunk.
310 ;; The implementation should pass the value of vc-checkout-switches
311 ;; to the backend command.
313 ;; * revert (file &optional contents-done)
315 ;; Revert FILE back to the working revision. If optional
316 ;; arg CONTENTS-DONE is non-nil, then the contents of FILE have
317 ;; already been reverted from a version backup, and this function
318 ;; only needs to update the status of FILE within the backend.
320 ;; - rollback (files)
322 ;; Remove the tip revision of each of FILES from the repository. If
323 ;; this function is not provided, trying to cancel a revision is
324 ;; caught as an error. (Most backends don't provide it.) (Also
325 ;; note that older versions of this backend command were called
326 ;; 'cancel-version' and took a single file arg, not a list of
327 ;; files.)
329 ;; - merge (file rev1 rev2)
331 ;; Merge the changes between REV1 and REV2 into the current working file.
333 ;; - merge-news (file)
335 ;; Merge recent changes from the current branch into FILE.
337 ;; - steal-lock (file &optional revision)
339 ;; Steal any lock on the working revision of FILE, or on REVISION if
340 ;; that is provided. This function is only needed if locking is
341 ;; used for files under this backend, and if files can indeed be
342 ;; locked by other users.
344 ;; - modify-change-comment (files rev comment)
346 ;; Modify the change comments associated with the files at the
347 ;; given revision. This is optional, many backends do not support it.
349 ;; - mark-resolved (files)
351 ;; Mark conflicts as resolved. Some VC systems need to run a
352 ;; command to mark conflicts as resolved.
354 ;; HISTORY FUNCTIONS
356 ;; * print-log (files &optional buffer)
358 ;; Insert the revision log for FILES into BUFFER, or the *vc* buffer
359 ;; if BUFFER is nil. (Note: older versions of this function expected
360 ;; only a single file argument.)
362 ;; - log-view-mode ()
364 ;; Mode to use for the output of print-log. This defaults to
365 ;; `log-view-mode' and is expected to be changed (if at all) to a derived
366 ;; mode of `log-view-mode'.
368 ;; - show-log-entry (revision)
370 ;; If provided, search the log entry for REVISION in the current buffer,
371 ;; and make sure it is displayed in the buffer's window. The default
372 ;; implementation of this function works for RCS-style logs.
374 ;; - wash-log (file)
376 ;; Remove all non-comment information from the output of print-log.
378 ;; - comment-history (file)
380 ;; Return a string containing all log entries that were made for FILE.
381 ;; This is used for transferring a file from one backend to another,
382 ;; retaining comment information. The default implementation of this
383 ;; function does this by calling print-log and then wash-log, and
384 ;; returning the resulting buffer contents as a string.
386 ;; - update-changelog (files)
388 ;; Using recent log entries, create ChangeLog entries for FILES, or for
389 ;; all files at or below the default-directory if FILES is nil. The
390 ;; default implementation runs rcs2log, which handles RCS- and
391 ;; CVS-style logs.
393 ;; * diff (files &optional rev1 rev2 buffer)
395 ;; Insert the diff for FILE into BUFFER, or the *vc-diff* buffer if
396 ;; BUFFER is nil. If REV1 and REV2 are non-nil, report differences
397 ;; from REV1 to REV2. If REV1 is nil, use the working revision (as
398 ;; found in the repository) as the older revision; if REV2 is nil,
399 ;; use the current working-copy contents as the newer revision. This
400 ;; function should pass the value of (vc-switches BACKEND 'diff) to
401 ;; the backend command. It should return a status of either 0 (no
402 ;; differences found), or 1 (either non-empty diff or the diff is
403 ;; run asynchronously).
405 ;; - revision-completion-table (files)
407 ;; Return a completion table for existing revisions of FILES.
408 ;; The default is to not use any completion table.
410 ;; - annotate-command (file buf &optional rev)
412 ;; If this function is provided, it should produce an annotated display
413 ;; of FILE in BUF, relative to revision REV. Annotation means each line
414 ;; of FILE displayed is prefixed with version information associated with
415 ;; its addition (deleted lines leave no history) and that the text of the
416 ;; file is fontified according to age.
418 ;; - annotate-time ()
420 ;; Only required if `annotate-command' is defined for the backend.
421 ;; Return the time of the next line of annotation at or after point,
422 ;; as a floating point fractional number of days. The helper
423 ;; function `vc-annotate-convert-time' may be useful for converting
424 ;; multi-part times as returned by `current-time' and `encode-time'
425 ;; to this format. Return nil if no more lines of annotation appear
426 ;; in the buffer. You can safely assume that point is placed at the
427 ;; beginning of each line, starting at `point-min'. The buffer that
428 ;; point is placed in is the Annotate output, as defined by the
429 ;; relevant backend. This function also affects how much of the line
430 ;; is fontified; where it leaves point is where fontification begins.
432 ;; - annotate-current-time ()
434 ;; Only required if `annotate-command' is defined for the backend,
435 ;; AND you'd like the current time considered to be anything besides
436 ;; (vc-annotate-convert-time (current-time)) -- i.e. the current
437 ;; time with hours, minutes, and seconds included. Probably safe to
438 ;; ignore. Return the current-time, in units of fractional days.
440 ;; - annotate-extract-revision-at-line ()
442 ;; Only required if `annotate-command' is defined for the backend.
443 ;; Invoked from a buffer in vc-annotate-mode, return the revision
444 ;; corresponding to the current line, or nil if there is no revision
445 ;; corresponding to the current line.
447 ;; SNAPSHOT SYSTEM
449 ;; - create-snapshot (dir name branchp)
451 ;; Take a snapshot of the current state of files under DIR and name it
452 ;; NAME. This should make sure that files are up-to-date before
453 ;; proceeding with the action. DIR can also be a file and if BRANCHP
454 ;; is specified, NAME should be created as a branch and DIR should be
455 ;; checked out under this new branch. The default implementation does
456 ;; not support branches but does a sanity check, a tree traversal and
457 ;; for each file calls `assign-name'.
459 ;; - assign-name (file name)
461 ;; Give name NAME to the working revision of FILE, assuming it is
462 ;; up-to-date. Only used by the default version of `create-snapshot'.
464 ;; - retrieve-snapshot (dir name update)
466 ;; Retrieve a named snapshot of all registered files at or below DIR.
467 ;; If UPDATE is non-nil, then update buffers of any files in the
468 ;; snapshot that are currently visited. The default implementation
469 ;; does a sanity check whether there aren't any uncommitted changes at
470 ;; or below DIR, and then performs a tree walk, using the `checkout'
471 ;; function to retrieve the corresponding revisions.
473 ;; MISCELLANEOUS
475 ;; - root (dir)
477 ;; Return DIR's "root" directory, that is, a parent directory of
478 ;; DIR for which the same backend as used for DIR applies. If no
479 ;; such parent exists, this function should return DIR.
481 ;; - make-version-backups-p (file)
483 ;; Return non-nil if unmodified repository revisions of FILE should be
484 ;; backed up locally. If this is done, VC can perform `diff' and
485 ;; `revert' operations itself, without calling the backend system. The
486 ;; default implementation always returns nil.
488 ;; - repository-hostname (dirname)
490 ;; Return the hostname that the backend will have to contact
491 ;; in order to operate on a file in DIRNAME. If the return value
492 ;; is nil, it means that the repository is local.
493 ;; This function is used in `vc-stay-local-p' which backends can use
494 ;; for their convenience.
496 ;; - previous-revision (file rev)
498 ;; Return the revision number that precedes REV for FILE, or nil if no such
499 ;; revision exists.
501 ;; - next-revision (file rev)
503 ;; Return the revision number that follows REV for FILE, or nil if no such
504 ;; revision exists.
506 ;; - check-headers ()
508 ;; Return non-nil if the current buffer contains any version headers.
510 ;; - clear-headers ()
512 ;; In the current buffer, reset all version headers to their unexpanded
513 ;; form. This function should be provided if the state-querying code
514 ;; for this backend uses the version headers to determine the state of
515 ;; a file. This function will then be called whenever VC changes the
516 ;; version control state in such a way that the headers would give
517 ;; wrong information.
519 ;; - delete-file (file)
521 ;; Delete FILE and mark it as deleted in the repository. If this
522 ;; function is not provided, the command `vc-delete-file' will
523 ;; signal an error.
525 ;; - rename-file (old new)
527 ;; Rename file OLD to NEW, both in the working area and in the
528 ;; repository. If this function is not provided, the renaming
529 ;; will be done by (vc-delete-file old) and (vc-register new).
531 ;; - find-file-hook ()
533 ;; Operation called in current buffer when opening a file. This can
534 ;; be used by the backend to setup some local variables it might need.
536 ;; - find-file-not-found-hook ()
538 ;; Operation called in current buffer when opening a non-existing file.
539 ;; By default, this asks the user if she wants to check out the file.
541 ;; - extra-menu ()
543 ;; Return a menu keymap, the items in the keymap will appear at the
544 ;; end of the Version Control menu. The goal is to allow backends
545 ;; to specify extra menu items that appear in the VC menu. This way
546 ;; you can provide menu entries for functionality that is specific
547 ;; to your backend and which does not map to any of the VC generic
548 ;; concepts.
550 ;; - extra-status-menu ()
552 ;; Return a menu keymap, the items in the keymap will appear at the
553 ;; end of the VC Status menu. The goal is to allow backends to
554 ;; specify extra menu items that appear in the VC Status menu. This
555 ;; makes it possible to provide menu entries for functionality that
556 ;; is specific to a backend and which does not map to any of the VC
557 ;; generic concepts.
559 ;;; Todo:
561 ;; - vc-update/vc-merge should deal with VC systems that don't
562 ;; update/merge on a file basis, but on a whole repository basis.
564 ;; - deal with push/pull operations.
566 ;; - "snapshots" should be renamed to "branches", and thoroughly reworked.
568 ;; - when a file is in `conflict' state, turn on smerge-mode.
570 ;; - figure out what to do with conflicts that are not caused by the
571 ;; file contents, but by metadata or other causes. Example: File A
572 ;; gets renamed to B in one branch and to C in another and you merge
573 ;; the two branches. Or you locally add file FOO and then pull a
574 ;; change that also adds a new file FOO, ...
576 ;; - add a generic mechanism for remembering the current branch names,
577 ;; display the branch name in the mode-line. Replace
578 ;; vc-cvs-sticky-tag with that.
580 ;; - C-x v b does switch to a different backend, but the mode line is not
581 ;; adapted accordingly. Also, it considers RCS and CVS to be the same,
582 ;; which is pretty confusing.
584 ;; - vc-diff should be able to show the diff for all files in a
585 ;; changeset, especially for VC systems that have per repository
586 ;; version numbers. log-view should take advantage of this.
588 ;; - make it easier to write logs. Maybe C-x 4 a should add to the log
589 ;; buffer, if one is present, instead of adding to the ChangeLog.
591 ;; - add a mechanism for editing the underlying VCS's list of files
592 ;; to be ignored, when that's possible.
594 ;; - When vc-next-action calls vc-checkin it could pre-fill the
595 ;; *VC-log* buffer with some obvious items: the list of files that
596 ;; were added, the list of files that were removed. If the diff is
597 ;; available, maybe it could even call something like
598 ;; `diff-add-change-log-entries-other-window' to create a detailed
599 ;; skeleton for the log...
601 ;; - a way to do repository wide log (instead of just per
602 ;; file/fileset) is needed. Doing it per directory might be enough...
604 ;; - most vc-dir backends need more work. They might need to
605 ;; provide custom headers, use the `extra' field and deal with all
606 ;; possible VC states.
608 ;; - add function that calls vc-dir to `find-directory-functions'.
610 ;; - vc-diff, vc-annotate, etc. need to deal better with unregistered
611 ;; files. Now that unregistered and ignored files are shown in
612 ;; vc-dir, it is possible that these commands are called
613 ;; for unregistered/ignored files.
615 ;; - do not default to RCS anymore when the current directory is not
616 ;; controlled by any VCS and the user does C-x v v
618 ;; - vc-create-snapshot and vc-retrieve-snapshot should update the
619 ;; buffers that might be visiting the affected files.
621 ;; - Using multiple backends needs work. Given a CVS directory with some
622 ;; files checked into git (but not all), using C-x v l to get a log file
623 ;; from a file only present in git, and then typing RET on some log entry,
624 ;; vc will bombs out because it wants to see the file being in CVS.
625 ;; Those logs should likely use a local variable to hardware the VC they
626 ;; are supposed to work with.
628 ;; - Another important thing: merge all the status-like backend operations.
629 ;; We should remove dir-status, state, and dir-status-files, and
630 ;; replace them with just `status' which takes a fileset and a continuation
631 ;; (like dir-status) and returns a buffer in which the process(es) are run
632 ;; (or nil if it worked synchronously). Hopefully we can define the old
633 ;; 4 operations in term of this one.
635 ;; - backends that care about vc-stay-local should try to take it into
636 ;; account for vc-dir. Is this likely to be useful???
638 ;; - vc-dir listing needs a footer generated when it's done to make it obvious
639 ;; that it has finished.
642 ;;; Code:
644 (require 'vc-hooks)
645 (require 'vc-dispatcher)
646 (require 'tool-bar)
647 (require 'ewoc)
649 (eval-when-compile
650 (require 'cl))
652 (unless (assoc 'vc-parent-buffer minor-mode-alist)
653 (setq minor-mode-alist
654 (cons '(vc-parent-buffer vc-parent-buffer-name)
655 minor-mode-alist)))
657 ;; General customization
659 (defgroup vc nil
660 "Version-control system in Emacs."
661 :group 'tools)
663 (defcustom vc-initial-comment nil
664 "If non-nil, prompt for initial comment when a file is registered."
665 :type 'boolean
666 :group 'vc)
668 (defcustom vc-default-init-revision "1.1"
669 "A string used as the default revision number when a new file is registered.
670 This can be overridden by giving a prefix argument to \\[vc-register]. This
671 can also be overridden by a particular VC backend."
672 :type 'string
673 :group 'vc
674 :version "20.3")
676 (defcustom vc-checkin-switches nil
677 "A string or list of strings specifying extra switches for checkin.
678 These are passed to the checkin program by \\[vc-checkin]."
679 :type '(choice (const :tag "None" nil)
680 (string :tag "Argument String")
681 (repeat :tag "Argument List"
682 :value ("")
683 string))
684 :group 'vc)
686 (defcustom vc-checkout-switches nil
687 "A string or list of strings specifying extra switches for checkout.
688 These are passed to the checkout program by \\[vc-checkout]."
689 :type '(choice (const :tag "None" nil)
690 (string :tag "Argument String")
691 (repeat :tag "Argument List"
692 :value ("")
693 string))
694 :group 'vc)
696 (defcustom vc-register-switches nil
697 "A string or list of strings; extra switches for registering a file.
698 These are passed to the checkin program by \\[vc-register]."
699 :type '(choice (const :tag "None" nil)
700 (string :tag "Argument String")
701 (repeat :tag "Argument List"
702 :value ("")
703 string))
704 :group 'vc)
706 (defcustom vc-diff-switches nil
707 "A string or list of strings specifying switches for diff under VC.
708 When running diff under a given BACKEND, VC concatenates the values of
709 `diff-switches', `vc-diff-switches', and `vc-BACKEND-diff-switches' to
710 get the switches for that command. Thus, `vc-diff-switches' should
711 contain switches that are specific to version control, but not
712 specific to any particular backend."
713 :type '(choice (const :tag "None" nil)
714 (string :tag "Argument String")
715 (repeat :tag "Argument List"
716 :value ("")
717 string))
718 :group 'vc
719 :version "21.1")
721 (defcustom vc-diff-knows-L nil
722 "*Indicates whether diff understands the -L option.
723 The value is either `yes', `no', or nil. If it is nil, VC tries
724 to use -L and sets this variable to remember whether it worked."
725 :type '(choice (const :tag "Work out" nil) (const yes) (const no))
726 :group 'vc)
728 (defcustom vc-allow-async-revert nil
729 "Specifies whether the diff during \\[vc-revert] may be asynchronous.
730 Enabling this option means that you can confirm a revert operation even
731 if the local changes in the file have not been found and displayed yet."
732 :type '(choice (const :tag "No" nil)
733 (const :tag "Yes" t))
734 :group 'vc
735 :version "22.1")
737 ;;;###autoload
738 (defcustom vc-checkout-hook nil
739 "Normal hook (list of functions) run after checking out a file.
740 See `run-hooks'."
741 :type 'hook
742 :group 'vc
743 :version "21.1")
745 (defcustom vc-annotate-display-mode 'fullscale
746 "Which mode to color the output of \\[vc-annotate] with by default."
747 :type '(choice (const :tag "By Color Map Range" nil)
748 (const :tag "Scale to Oldest" scale)
749 (const :tag "Scale Oldest->Newest" fullscale)
750 (number :tag "Specify Fractional Number of Days"
751 :value "20.5"))
752 :group 'vc)
754 ;;;###autoload
755 (defcustom vc-checkin-hook nil
756 "Normal hook (list of functions) run after commit or file checkin.
757 See also `log-edit-done-hook'."
758 :type 'hook
759 :options '(log-edit-comment-to-change-log)
760 :group 'vc)
762 ;;;###autoload
763 (defcustom vc-before-checkin-hook nil
764 "Normal hook (list of functions) run before a commit or a file checkin.
765 See `run-hooks'."
766 :type 'hook
767 :group 'vc)
769 ;; Annotate customization
770 (defcustom vc-annotate-color-map
771 (if (and (tty-display-color-p) (<= (display-color-cells) 8))
772 ;; A custom sorted TTY colormap
773 (let* ((colors
774 (sort
775 (delq nil
776 (mapcar (lambda (x)
777 (if (not (or
778 (string-equal (car x) "white")
779 (string-equal (car x) "black") ))
780 (car x)))
781 (tty-color-alist)))
782 (lambda (a b)
783 (cond
784 ((or (string-equal a "red") (string-equal b "blue")) t)
785 ((or (string-equal b "red") (string-equal a "blue")) nil)
786 ((string-equal a "yellow") t)
787 ((string-equal b "yellow") nil)
788 ((string-equal a "cyan") t)
789 ((string-equal b "cyan") nil)
790 ((string-equal a "green") t)
791 ((string-equal b "green") nil)
792 ((string-equal a "magenta") t)
793 ((string-equal b "magenta") nil)
794 (t (string< a b))))))
795 (date 20.)
796 (delta (/ (- 360. date) (1- (length colors)))))
797 (mapcar (lambda (x)
798 (prog1
799 (cons date x)
800 (setq date (+ date delta)))) colors))
801 ;; Normal colormap: hue stepped from 0-240deg, value=1., saturation=0.75
802 '(( 20. . "#FF3F3F")
803 ( 40. . "#FF6C3F")
804 ( 60. . "#FF993F")
805 ( 80. . "#FFC63F")
806 (100. . "#FFF33F")
807 (120. . "#DDFF3F")
808 (140. . "#B0FF3F")
809 (160. . "#83FF3F")
810 (180. . "#56FF3F")
811 (200. . "#3FFF56")
812 (220. . "#3FFF83")
813 (240. . "#3FFFB0")
814 (260. . "#3FFFDD")
815 (280. . "#3FF3FF")
816 (300. . "#3FC6FF")
817 (320. . "#3F99FF")
818 (340. . "#3F6CFF")
819 (360. . "#3F3FFF")))
820 "Association list of age versus color, for \\[vc-annotate].
821 Ages are given in units of fractional days. Default is eighteen
822 steps using a twenty day increment, from red to blue. For TTY
823 displays with 8 or fewer colors, the default is red to blue with
824 all other colors between (excluding black and white)."
825 :type 'alist
826 :group 'vc)
828 (defcustom vc-annotate-very-old-color "#3F3FFF"
829 "Color for lines older than the current color range in \\[vc-annotate]]."
830 :type 'string
831 :group 'vc)
833 (defcustom vc-annotate-background "black"
834 "Background color for \\[vc-annotate].
835 Default color is used if nil."
836 :type '(choice (const :tag "Default background" nil) (color))
837 :group 'vc)
839 (defcustom vc-annotate-menu-elements '(2 0.5 0.1 0.01)
840 "Menu elements for the mode-specific menu of VC-Annotate mode.
841 List of factors, used to expand/compress the time scale. See `vc-annotate'."
842 :type '(repeat number)
843 :group 'vc)
845 (defvar vc-annotate-mode-map
846 (let ((m (make-sparse-keymap)))
847 (define-key m "A" 'vc-annotate-revision-previous-to-line)
848 (define-key m "D" 'vc-annotate-show-diff-revision-at-line)
849 (define-key m "f" 'vc-annotate-find-revision-at-line)
850 (define-key m "J" 'vc-annotate-revision-at-line)
851 (define-key m "L" 'vc-annotate-show-log-revision-at-line)
852 (define-key m "N" 'vc-annotate-next-revision)
853 (define-key m "P" 'vc-annotate-prev-revision)
854 (define-key m "W" 'vc-annotate-working-revision)
855 (define-key m "V" 'vc-annotate-toggle-annotation-visibility)
857 "Local keymap used for VC-Annotate mode.")
859 ;; Header-insertion hair
861 (defcustom vc-static-header-alist
862 '(("\\.c\\'" .
863 "\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n#endif /* lint */\n"))
864 "*Associate static header string templates with file types.
865 A \%s in the template is replaced with the first string associated with
866 the file's version control type in `vc-header-alist'."
867 :type '(repeat (cons :format "%v"
868 (regexp :tag "File Type")
869 (string :tag "Header String")))
870 :group 'vc)
872 (defcustom vc-comment-alist
873 '((nroff-mode ".\\\"" ""))
874 "*Special comment delimiters for generating VC headers.
875 Add an entry in this list if you need to override the normal `comment-start'
876 and `comment-end' variables. This will only be necessary if the mode language
877 is sensitive to blank lines."
878 :type '(repeat (list :format "%v"
879 (symbol :tag "Mode")
880 (string :tag "Comment Start")
881 (string :tag "Comment End")))
882 :group 'vc)
884 (defcustom vc-checkout-carefully (= (user-uid) 0)
885 "*Non-nil means be extra-careful in checkout.
886 Verify that the file really is not locked
887 and that its contents match what the master file says."
888 :type 'boolean
889 :group 'vc)
890 (make-obsolete-variable 'vc-checkout-carefully
891 "the corresponding checks are always done now."
892 "21.1")
895 ;; Variables users don't need to see
897 (defvar vc-disable-async-diff nil
898 "VC sets this to t locally to disable some async diff operations.
899 Backends that offer asynchronous diffs should respect this variable
900 in their implementation of vc-BACKEND-diff.")
902 ;; File property caching
904 (defun vc-clear-context ()
905 "Clear all cached file properties."
906 (interactive)
907 (fillarray vc-file-prop-obarray 0))
909 (defmacro with-vc-properties (files form settings)
910 "Execute FORM, then maybe set per-file properties for FILES.
911 SETTINGS is an association list of property/value pairs. After
912 executing FORM, set those properties from SETTINGS that have not yet
913 been updated to their corresponding values."
914 (declare (debug t))
915 `(let ((vc-touched-properties (list t)))
916 ,form
917 (dolist (file ,files)
918 (dolist (setting ,settings)
919 (let ((property (car setting)))
920 (unless (memq property vc-touched-properties)
921 (put (intern file vc-file-prop-obarray)
922 property (cdr setting))))))))
924 ;; Two macros for elisp programming
926 ;;;###autoload
927 (defmacro with-vc-file (file comment &rest body)
928 "Check out a writable copy of FILE if necessary, then execute BODY.
929 Check in FILE with COMMENT (a string) after BODY has been executed.
930 FILE is passed through `expand-file-name'; BODY executed within
931 `save-excursion'. If FILE is not under version control, or you are
932 using a locking version-control system and the file is locked by
933 somebody else, signal error."
934 (declare (debug t) (indent 2))
935 (let ((filevar (make-symbol "file")))
936 `(let ((,filevar (expand-file-name ,file)))
937 (or (vc-backend ,filevar)
938 (error "File not under version control: `%s'" file))
939 (unless (vc-editable-p ,filevar)
940 (let ((state (vc-state ,filevar)))
941 (if (stringp state)
942 (error "`%s' is locking `%s'" state ,filevar)
943 (vc-checkout ,filevar t))))
944 (save-excursion
945 ,@body)
946 (vc-checkin (list ,filevar) nil ,comment))))
948 ;;;###autoload
949 (defmacro edit-vc-file (file comment &rest body)
950 "Edit FILE under version control, executing body.
951 Checkin with COMMENT after executing BODY.
952 This macro uses `with-vc-file', passing args to it.
953 However, before executing BODY, find FILE, and after BODY, save buffer."
954 (declare (debug t) (indent 2))
955 (let ((filevar (make-symbol "file")))
956 `(let ((,filevar (expand-file-name ,file)))
957 (with-vc-file
958 ,filevar ,comment
959 (set-buffer (find-file-noselect ,filevar))
960 ,@body
961 (save-buffer)))))
963 ;;; Code for deducing what fileset and backend to assume
965 (defun vc-responsible-backend (file &optional register)
966 "Return the name of a backend system that is responsible for FILE.
967 The optional argument REGISTER means that a backend suitable for
968 registration should be found.
970 If REGISTER is nil, then if FILE is already registered, return the
971 backend of FILE. If FILE is not registered, or a directory, then the
972 first backend in `vc-handled-backends' that declares itself
973 responsible for FILE is returned. If no backend declares itself
974 responsible, return the first backend.
976 If REGISTER is non-nil, return the first responsible backend under
977 which FILE is not yet registered. If there is no such backend, return
978 the first backend under which FILE is not yet registered, but could
979 be registered."
980 (when (not vc-handled-backends)
981 (error "No handled backends"))
982 (or (and (not (file-directory-p file)) (not register) (vc-backend file))
983 (catch 'found
984 ;; First try: find a responsible backend. If this is for registration,
985 ;; it must be a backend under which FILE is not yet registered.
986 (dolist (backend vc-handled-backends)
987 (and (or (not register)
988 (not (vc-call-backend backend 'registered file)))
989 (vc-call-backend backend 'responsible-p file)
990 (throw 'found backend)))
991 ;; no responsible backend
992 (if (not register)
993 ;; if this is not for registration, the first backend must do
994 (car vc-handled-backends)
995 ;; for registration, we need to find a new backend that
996 ;; could register FILE
997 (dolist (backend vc-handled-backends)
998 (and (not (vc-call-backend backend 'registered file))
999 (vc-call-backend backend 'could-register file)
1000 (throw 'found backend)))
1001 (error "No backend that could register")))))
1003 (defun vc-expand-dirs (file-or-dir-list)
1004 "Expands directories in a file list specification.
1005 Only files already under version control are noticed."
1006 ;; FIXME: Kill this function.
1007 (let ((flattened '()))
1008 (dolist (node file-or-dir-list)
1009 (vc-file-tree-walk
1010 node (lambda (f) (when (vc-backend f) (push f flattened)))))
1011 (nreverse flattened)))
1013 (defun vc-deduce-fileset (&optional allow-directory-wildcard allow-unregistered
1014 include-files-not-directories)
1015 "Deduce a set of files and a backend to which to apply an operation.
1016 Return (BACKEND . FILESET)."
1017 (let* ((fileset (vc-dispatcher-selection-set
1018 #'vc-registered
1019 allow-directory-wildcard
1020 allow-unregistered
1021 include-files-not-directories))
1022 (backend (vc-backend (car fileset))))
1023 ;; All members of the fileset must have the same backend
1024 (dolist (f (cdr fileset))
1025 (unless (eq (vc-backend f) backend)
1026 (error "All members of a fileset must be under the same version-control system.")))
1027 (cons backend fileset)))
1029 (defun vc-ensure-vc-buffer ()
1030 "Make sure that the current buffer visits a version-controlled file."
1031 (cond
1032 ((vc-dispatcher-browsing)
1033 (set-buffer (find-file-noselect (vc-dir-current-file))))
1035 (while (and vc-parent-buffer
1036 (buffer-live-p vc-parent-buffer)
1037 ;; Avoid infinite looping when vc-parent-buffer and
1038 ;; current buffer are the same buffer.
1039 (not (eq vc-parent-buffer (current-buffer))))
1040 (set-buffer vc-parent-buffer))
1041 (if (not buffer-file-name)
1042 (error "Buffer %s is not associated with a file" (buffer-name))
1043 (unless (vc-backend buffer-file-name)
1044 (error "File %s is not under version control" buffer-file-name))))))
1046 ;;; Support for the C-x v v command.
1047 ;; This is where all the single-file-oriented code from before the fileset
1048 ;; rewrite lives.
1050 (defsubst vc-editable-p (file)
1051 "Return non-nil if FILE can be edited."
1052 (let ((backend (vc-backend file)))
1053 (and backend
1054 (or (eq (vc-checkout-model backend (list file)) 'implicit)
1055 (memq (vc-state file) '(edited needs-merge conflict))))))
1057 (defun vc-compatible-state (p q)
1058 "Controls which states can be in the same commit."
1060 (eq p q)
1061 (and (member p '(edited added removed)) (member q '(edited added removed)))))
1063 ;; Here's the major entry point.
1065 ;;;###autoload
1066 (defun vc-next-action (verbose)
1067 "Do the next logical version control operation on the current fileset.
1068 This requires that all files in the fileset be in the same state.
1070 For locking systems:
1071 If every file is not already registered, this registers each for version
1072 control.
1073 If every file is registered and not locked by anyone, this checks out
1074 a writable and locked file of each ready for editing.
1075 If every file is checked out and locked by the calling user, this
1076 first checks to see if each file has changed since checkout. If not,
1077 it performs a revert on that file.
1078 If every file has been changed, this pops up a buffer for entry
1079 of a log message; when the message has been entered, it checks in the
1080 resulting changes along with the log message as change commentary. If
1081 the variable `vc-keep-workfiles' is non-nil (which is its default), a
1082 read-only copy of each changed file is left in place afterwards.
1083 If the affected file is registered and locked by someone else, you are
1084 given the option to steal the lock(s).
1086 For merging systems:
1087 If every file is not already registered, this registers each one for version
1088 control. This does an add, but not a commit.
1089 If every file is added but not committed, each one is committed.
1090 If every working file is changed, but the corresponding repository file is
1091 unchanged, this pops up a buffer for entry of a log message; when the
1092 message has been entered, it checks in the resulting changes along
1093 with the logmessage as change commentary. A writable file is retained.
1094 If the repository file is changed, you are asked if you want to
1095 merge in the changes into your working copy."
1096 (interactive "P")
1097 (let* ((vc-fileset (vc-deduce-fileset nil t))
1098 (vc-fileset-only-files (vc-deduce-fileset nil t t))
1099 (only-files (cdr vc-fileset-only-files))
1100 (backend (car vc-fileset))
1101 (files (cdr vc-fileset))
1102 (state (vc-state (car only-files)))
1103 (model (vc-checkout-model backend files))
1104 revision)
1106 ;; Verify that the fileset is homogeneous
1107 (dolist (file (cdr only-files))
1108 ;; Ignore directories, they are compatible with anything.
1109 (unless (file-directory-p file)
1110 (unless (vc-compatible-state (vc-state file) state)
1111 (error "%s:%s clashes with %s:%s"
1112 file (vc-state file) (car files) state))
1113 (unless (eq (vc-checkout-model backend (list file)) model)
1114 (error "Fileset has mixed checkout models"))))
1115 ;; Do the right thing
1116 (cond
1117 ((eq state 'missing)
1118 (error "Fileset files are missing, so cannot be operated on."))
1119 ;; Files aren't registered
1120 ((or (eq state 'unregistered)
1121 (eq state 'ignored))
1122 (mapc (lambda (arg) (vc-register nil arg)) files))
1123 ;; Files are up-to-date, or need a merge and user specified a revision
1124 ((or (eq state 'up-to-date) (and verbose (eq state 'needs-update)))
1125 (cond
1126 (verbose
1127 ;; go to a different revision
1128 (setq revision (read-string "Branch, revision, or backend to move to: "))
1129 (let ((vsym (intern-soft (upcase revision))))
1130 (if (member vsym vc-handled-backends)
1131 (dolist (file files) (vc-transfer-file file vsym))
1132 (dolist (file files)
1133 (vc-checkout file (eq model 'implicit) revision)))))
1134 ((not (eq model 'implicit))
1135 ;; check the files out
1136 (dolist (file files) (vc-checkout file t)))
1138 ;; do nothing
1139 (message "Fileset is up-to-date"))))
1140 ;; Files have local changes
1141 ((vc-compatible-state state 'edited)
1142 (let ((ready-for-commit files))
1143 ;; If files are edited but read-only, give user a chance to correct
1144 (dolist (file files)
1145 (unless (file-writable-p file)
1146 ;; Make the file+buffer read-write.
1147 (unless (y-or-n-p (format "%s is edited but read-only; make it writable and continue?" file))
1148 (error "Aborted"))
1149 (set-file-modes file (logior (file-modes file) 128))
1150 (let ((visited (get-file-buffer file)))
1151 (when visited
1152 (with-current-buffer visited
1153 (toggle-read-only -1))))))
1154 ;; Allow user to revert files with no changes
1155 (save-excursion
1156 (dolist (file files)
1157 (let ((visited (get-file-buffer file)))
1158 ;; For files with locking, if the file does not contain
1159 ;; any changes, just let go of the lock, i.e. revert.
1160 (when (and (not (eq model 'implicit))
1161 (vc-workfile-unchanged-p file)
1162 ;; If buffer is modified, that means the user just
1163 ;; said no to saving it; in that case, don't revert,
1164 ;; because the user might intend to save after
1165 ;; finishing the log entry and committing.
1166 (not (and visited (buffer-modified-p))))
1167 (vc-revert-file file)
1168 (delete file ready-for-commit)))))
1169 ;; Remaining files need to be committed
1170 (if (not ready-for-commit)
1171 (message "No files remain to be committed")
1172 (if (not verbose)
1173 (vc-checkin ready-for-commit)
1174 (progn
1175 (setq revision (read-string "New revision or backend: "))
1176 (let ((vsym (intern (upcase revision))))
1177 (if (member vsym vc-handled-backends)
1178 (dolist (file files) (vc-transfer-file file vsym))
1179 (vc-checkin ready-for-commit revision))))))))
1180 ;; locked by somebody else (locking VCSes only)
1181 ((stringp state)
1182 ;; In the old days, we computed the revision once and used it on
1183 ;; the single file. Then, for the 2007-2008 fileset rewrite, we
1184 ;; computed the revision once (incorrectly, using a free var) and
1185 ;; used it on all files. To fix the free var bug, we can either
1186 ;; use `(car files)' or do what we do here: distribute the
1187 ;; revision computation among `files'. Although this may be
1188 ;; tedious for those backends where a "revision" is a trans-file
1189 ;; concept, it is nonetheless correct for both those and (more
1190 ;; importantly) for those where "revision" is a per-file concept.
1191 ;; If the intersection of the former group and "locking VCSes" is
1192 ;; non-empty [I vaguely doubt it --ttn], we can reinstate the
1193 ;; pre-computation approach of yore.
1194 (dolist (file files)
1195 (vc-steal-lock
1196 file (if verbose
1197 (read-string (format "%s revision to steal: " file))
1198 (vc-working-revision file))
1199 state)))
1200 ;; conflict
1201 ((eq state 'conflict)
1202 (vc-mark-resolved files))
1203 ;; needs-update
1204 ((eq state 'needs-update)
1205 (dolist (file files)
1206 (if (yes-or-no-p (format
1207 "%s is not up-to-date. Get latest revision? "
1208 (file-name-nondirectory file)))
1209 (vc-checkout file (eq model 'implicit) t)
1210 (when (and (not (eq model 'implicit))
1211 (yes-or-no-p "Lock this revision? "))
1212 (vc-checkout file t)))))
1213 ;; needs-merge
1214 ((eq state 'needs-merge)
1215 (dolist (file files)
1216 (when (yes-or-no-p (format
1217 "%s is not up-to-date. Merge in changes now? "
1218 (file-name-nondirectory file)))
1219 (vc-maybe-resolve-conflicts file (vc-call merge-news file)))))
1221 ;; unlocked-changes
1222 ((eq state 'unlocked-changes)
1223 (dolist (file files)
1224 (when (not (equal buffer-file-name file))
1225 (find-file-other-window file))
1226 (if (save-window-excursion
1227 (vc-diff-internal nil (cons (car vc-fileset) (list file))
1228 (vc-working-revision file) nil)
1229 (goto-char (point-min))
1230 (let ((inhibit-read-only t))
1231 (insert
1232 (format "Changes to %s since last lock:\n\n" file)))
1233 (not (beep))
1234 (yes-or-no-p (concat "File has unlocked changes. "
1235 "Claim lock retaining changes? ")))
1236 (progn (vc-call steal-lock file)
1237 (clear-visited-file-modtime)
1238 ;; Must clear any headers here because they wouldn't
1239 ;; show that the file is locked now.
1240 (vc-clear-headers file)
1241 (write-file buffer-file-name)
1242 (vc-mode-line file))
1243 (if (not (yes-or-no-p
1244 "Revert to checked-in revision, instead? "))
1245 (error "Checkout aborted")
1246 (vc-revert-buffer-internal t t)
1247 (vc-checkout file t)))))
1248 ;; Unknown fileset state
1250 (error "Fileset is in an unknown state %s" state)))))
1252 (defun vc-create-repo (backend)
1253 "Create an empty repository in the current directory."
1254 (interactive
1255 (list
1256 (intern
1257 (upcase
1258 (completing-read
1259 "Create repository for: "
1260 (mapcar (lambda (b) (list (downcase (symbol-name b)))) vc-handled-backends)
1261 nil t)))))
1262 (vc-call-backend backend 'create-repo))
1264 ;;;###autoload
1265 (defun vc-register (&optional set-revision fname comment)
1266 "Register into a version control system.
1267 If FNAME is given register that file, otherwise register the current file.
1268 With prefix argument SET-REVISION, allow user to specify initial revision
1269 level. If COMMENT is present, use that as an initial comment.
1271 The version control system to use is found by cycling through the list
1272 `vc-handled-backends'. The first backend in that list which declares
1273 itself responsible for the file (usually because other files in that
1274 directory are already registered under that backend) will be used to
1275 register the file. If no backend declares itself responsible, the
1276 first backend that could register the file is used."
1277 (interactive "P")
1278 (when (and (null fname) (null buffer-file-name)) (error "No visited file"))
1280 (let ((bname (if fname (get-file-buffer fname) (current-buffer))))
1281 (unless fname (setq fname buffer-file-name))
1282 (when (vc-backend fname)
1283 (if (vc-registered fname)
1284 (error "This file is already registered")
1285 (unless (y-or-n-p "Previous master file has vanished. Make a new one? ")
1286 (error "Aborted"))))
1287 ;; Watch out for new buffers of size 0: the corresponding file
1288 ;; does not exist yet, even though buffer-modified-p is nil.
1289 (when bname
1290 (with-current-buffer bname
1291 (when (and (not (buffer-modified-p))
1292 (zerop (buffer-size))
1293 (not (file-exists-p buffer-file-name)))
1294 (set-buffer-modified-p t))
1295 (vc-buffer-sync)))
1296 (vc-start-logentry (list fname)
1297 (if set-revision
1298 (read-string (format "Initial revision level for %s: "
1299 fname))
1300 (vc-call-backend (vc-responsible-backend fname)
1301 'init-revision))
1302 (or comment (not vc-initial-comment))
1304 "Enter initial comment."
1305 (lambda (files rev comment)
1306 (dolist (file files)
1307 (message "Registering %s... " file)
1308 (let ((backend (vc-responsible-backend file t)))
1309 (vc-file-clearprops file)
1310 (vc-call-backend backend 'register (list file) rev comment)
1311 (vc-file-setprop file 'vc-backend backend)
1312 (unless vc-make-backup-files
1313 (make-local-variable 'backup-inhibited)
1314 (setq backup-inhibited t)))
1315 (message "Registering %s... done" file))))))
1317 (defun vc-register-with (backend)
1318 "Register the current file with a specified back end."
1319 (interactive "SBackend: ")
1320 (when (not (member backend vc-handled-backends))
1321 (error "Unknown back end."))
1322 (let ((vc-handled-backends (list backend)))
1323 (call-interactively 'vc-register)))
1325 (defun vc-checkout (file &optional writable rev)
1326 "Retrieve a copy of the revision REV of FILE.
1327 If WRITABLE is non-nil, make sure the retrieved file is writable.
1328 REV defaults to the latest revision.
1330 After check-out, runs the normal hook `vc-checkout-hook'."
1331 (and writable
1332 (not rev)
1333 (vc-call make-version-backups-p file)
1334 (vc-up-to-date-p file)
1335 (vc-make-version-backup file))
1336 (let ((backend (vc-backend file)))
1337 (with-vc-properties (list file)
1338 (condition-case err
1339 (vc-call-backend backend 'checkout file writable rev)
1340 (file-error
1341 ;; Maybe the backend is not installed ;-(
1342 (when writable
1343 (let ((buf (get-file-buffer file)))
1344 (when buf (with-current-buffer buf (toggle-read-only -1)))))
1345 (signal (car err) (cdr err))))
1346 `((vc-state . ,(if (or (eq (vc-checkout-model backend (list file)) 'implicit)
1347 (not writable))
1348 (if (vc-call latest-on-branch-p file)
1349 'up-to-date
1350 'needs-update)
1351 'edited))
1352 (vc-checkout-time . ,(nth 5 (file-attributes file))))))
1353 (vc-resynch-buffer file t t)
1354 (run-hooks 'vc-checkout-hook))
1356 (defun vc-mark-resolved (files)
1357 (with-vc-properties
1358 files
1359 (vc-call mark-resolved files)
1360 ;; XXX: Is this TRTD? Might not be.
1361 `((vc-state . edited))))
1363 (defun vc-steal-lock (file rev owner)
1364 "Steal the lock on FILE."
1365 (let (file-description)
1366 (if rev
1367 (setq file-description (format "%s:%s" file rev))
1368 (setq file-description file))
1369 (when (not (yes-or-no-p (format "Steal the lock on %s from %s? "
1370 file-description owner)))
1371 (error "Steal canceled"))
1372 (message "Stealing lock on %s..." file)
1373 (with-vc-properties
1374 (list file)
1375 (vc-call steal-lock file rev)
1376 `((vc-state . edited)))
1377 (vc-resynch-buffer file t t)
1378 (message "Stealing lock on %s...done" file)
1379 ;; Write mail after actually stealing, because if the stealing
1380 ;; goes wrong, we don't want to send any mail.
1381 (compose-mail owner (format "Stolen lock on %s" file-description))
1382 (setq default-directory (expand-file-name "~/"))
1383 (goto-char (point-max))
1384 (insert
1385 (format "I stole the lock on %s, " file-description)
1386 (current-time-string)
1387 ".\n")
1388 (message "Please explain why you stole the lock. Type C-c C-c when done.")))
1390 (defun vc-checkin (files &optional rev comment initial-contents)
1391 "Check in FILES.
1392 The optional argument REV may be a string specifying the new revision
1393 level (if nil increment the current level). COMMENT is a comment
1394 string; if omitted, a buffer is popped up to accept a comment. If
1395 INITIAL-CONTENTS is non-nil, then COMMENT is used as the initial contents
1396 of the log entry buffer.
1398 If `vc-keep-workfiles' is nil, FILE is deleted afterwards, provided
1399 that the version control system supports this mode of operation.
1401 Runs the normal hooks `vc-before-checkin-hook' and `vc-checkin-hook'."
1402 (when vc-before-checkin-hook
1403 (run-hooks 'vc-before-checkin-hook))
1404 (vc-start-logentry
1405 files rev comment initial-contents
1406 "Enter a change comment."
1407 (lambda (files rev comment)
1408 (message "Checking in %s..." (vc-delistify files))
1409 ;; "This log message intentionally left almost blank".
1410 ;; RCS 5.7 gripes about white-space-only comments too.
1411 (or (and comment (string-match "[^\t\n ]" comment))
1412 (setq comment "*** empty log message ***"))
1413 (with-vc-properties
1414 files
1415 ;; We used to change buffers to get local value of vc-checkin-switches,
1416 ;; but 'the' local buffer is not a well-defined concept for filesets.
1417 (progn
1418 (vc-call checkin files rev comment)
1419 (mapc 'vc-delete-automatic-version-backups files))
1420 `((vc-state . up-to-date)
1421 (vc-checkout-time . ,(nth 5 (file-attributes file)))
1422 (vc-working-revision . nil)))
1423 (message "Checking in %s...done" (vc-delistify files)))
1424 'vc-checkin-hook))
1426 ;;; Additional entry points for examining version histories
1428 ;; (defun vc-default-diff-tree (backend dir rev1 rev2)
1429 ;; "List differences for all registered files at and below DIR.
1430 ;; The meaning of REV1 and REV2 is the same as for `vc-revision-diff'."
1431 ;; ;; This implementation does an explicit tree walk, and calls
1432 ;; ;; vc-BACKEND-diff directly for each file. An optimization
1433 ;; ;; would be to use `vc-diff-internal', so that diffs can be local,
1434 ;; ;; and to call it only for files that are actually changed.
1435 ;; ;; However, this is expensive for some backends, and so it is left
1436 ;; ;; to backend-specific implementations.
1437 ;; (setq default-directory dir)
1438 ;; (vc-file-tree-walk
1439 ;; default-directory
1440 ;; (lambda (f)
1441 ;; (vc-exec-after
1442 ;; `(let ((coding-system-for-read (vc-coding-system-for-diff ',f)))
1443 ;; (message "Looking at %s" ',f)
1444 ;; (vc-call-backend ',(vc-backend f)
1445 ;; 'diff (list ',f) ',rev1 ',rev2))))))
1447 (defun vc-coding-system-for-diff (file)
1448 "Return the coding system for reading diff output for FILE."
1449 (or coding-system-for-read
1450 ;; if we already have this file open,
1451 ;; use the buffer's coding system
1452 (let ((buf (find-buffer-visiting file)))
1453 (when buf (with-current-buffer buf
1454 buffer-file-coding-system)))
1455 ;; otherwise, try to find one based on the file name
1456 (car (find-operation-coding-system 'insert-file-contents file))
1457 ;; and a final fallback
1458 'undecided))
1460 (defun vc-switches (backend op)
1461 (let ((switches
1462 (or (when backend
1463 (let ((sym (vc-make-backend-sym
1464 backend (intern (concat (symbol-name op)
1465 "-switches")))))
1466 (when (boundp sym) (symbol-value sym))))
1467 (let ((sym (intern (format "vc-%s-switches" (symbol-name op)))))
1468 (when (boundp sym) (symbol-value sym)))
1469 (cond
1470 ((eq op 'diff) diff-switches)))))
1471 (if (stringp switches) (list switches)
1472 ;; If not a list, return nil.
1473 ;; This is so we can set vc-diff-switches to t to override
1474 ;; any switches in diff-switches.
1475 (when (listp switches) switches))))
1477 ;; Old def for compatibility with Emacs-21.[123].
1478 (defmacro vc-diff-switches-list (backend) `(vc-switches ',backend 'diff))
1479 (make-obsolete 'vc-diff-switches-list 'vc-switches "22.1")
1481 (defun vc-diff-finish (buffer messages)
1482 ;; The empty sync output case has already been handled, so the only
1483 ;; possibility of an empty output is for an async process.
1484 (when (buffer-live-p buffer)
1485 (let ((window (get-buffer-window buffer t))
1486 (emptyp (zerop (buffer-size buffer))))
1487 (with-current-buffer buffer
1488 (and messages emptyp
1489 (let ((inhibit-read-only t))
1490 (insert (cdr messages) ".\n")
1491 (message "%s" (cdr messages))))
1492 (goto-char (point-min))
1493 (when window
1494 (shrink-window-if-larger-than-buffer window)))
1495 (when (and messages (not emptyp))
1496 (message "%sdone" (car messages))))))
1498 (defvar vc-diff-added-files nil
1499 "If non-nil, diff added files by comparing them to /dev/null.")
1501 (defun vc-diff-internal (async vc-fileset rev1 rev2 &optional verbose)
1502 "Report diffs between two revisions of a fileset.
1503 Diff output goes to the *vc-diff* buffer. The function
1504 returns t if the buffer had changes, nil otherwise."
1505 (let* ((files (cdr vc-fileset))
1506 (messages (cons (format "Finding changes in %s..."
1507 (vc-delistify files))
1508 (format "No changes between %s and %s"
1509 (or rev1 "working revision")
1510 (or rev2 "workfile"))))
1511 ;; Set coding system based on the first file. It's a kluge,
1512 ;; but the only way to set it for each file included would
1513 ;; be to call the back end separately for each file.
1514 (coding-system-for-read
1515 (if files (vc-coding-system-for-diff (car files)) 'undecided)))
1516 (vc-setup-buffer "*vc-diff*")
1517 (message "%s" (car messages))
1518 ;; Many backends don't handle well the case of a file that has been
1519 ;; added but not yet committed to the repo (notably CVS and Subversion).
1520 ;; Do that work here so the backends don't have to futz with it. --ESR
1522 ;; Actually most backends (including CVS) have options to control the
1523 ;; behavior since which one is better depends on the user and on the
1524 ;; situation). Worse yet: this code does not handle the case where
1525 ;; `file' is a directory which contains added files.
1526 ;; I made it conditional on vc-diff-added-files but it should probably
1527 ;; just be removed (or copied/moved to specific backends). --Stef.
1528 (when vc-diff-added-files
1529 (let ((filtered '()))
1530 (dolist (file files)
1531 (if (or (file-directory-p file)
1532 (not (string= (vc-working-revision file) "0")))
1533 (push file filtered)
1534 ;; This file is added but not yet committed;
1535 ;; there is no master file to diff against.
1536 (if (or rev1 rev2)
1537 (error "No revisions of %s exist" file)
1538 ;; We regard this as "changed".
1539 ;; Diff it against /dev/null.
1540 (apply 'vc-do-command "*vc-diff*"
1541 1 "diff" file
1542 (append (vc-switches nil 'diff) '("/dev/null"))))))
1543 (setq files (nreverse filtered))))
1544 (let ((vc-disable-async-diff (not async)))
1545 (vc-call-backend (car vc-fileset) 'diff files rev1 rev2 "*vc-diff*"))
1546 (set-buffer "*vc-diff*")
1547 (if (and (zerop (buffer-size))
1548 (not (get-buffer-process (current-buffer))))
1549 ;; Treat this case specially so as not to pop the buffer.
1550 (progn
1551 (message "%s" (cdr messages))
1552 nil)
1553 (diff-mode)
1554 ;; Make the *vc-diff* buffer read only, the diff-mode key
1555 ;; bindings are nicer for read only buffers. pcl-cvs does the
1556 ;; same thing.
1557 (setq buffer-read-only t)
1558 (vc-exec-after `(vc-diff-finish ,(current-buffer) ',(when verbose
1559 messages)))
1560 ;; Display the buffer, but at the end because it can change point.
1561 (pop-to-buffer (current-buffer))
1562 ;; In the async case, we return t even if there are no differences
1563 ;; because we don't know that yet.
1564 t)))
1566 ;;;###autoload
1567 (defun vc-version-diff (files rev1 rev2)
1568 "Report diffs between revisions of the fileset in the repository history."
1569 (interactive
1570 (let* ((vc-fileset (vc-deduce-fileset t))
1571 (files (cdr vc-fileset))
1572 (first (car files))
1573 (completion-table
1574 (vc-call revision-completion-table files))
1575 (rev1-default nil)
1576 (rev2-default nil))
1577 (cond
1578 ;; someday we may be able to do revision completion on non-singleton
1579 ;; filesets, but not yet.
1580 ((/= (length files) 1)
1581 nil)
1582 ;; if it's a directory, don't supply any revision default
1583 ((file-directory-p first)
1584 nil)
1585 ;; if the file is not up-to-date, use working revision as older revision
1586 ((not (vc-up-to-date-p first))
1587 (setq rev1-default (vc-working-revision first)))
1588 ;; if the file is not locked, use last and previous revisions as defaults
1590 (setq rev1-default (vc-call previous-revision first
1591 (vc-working-revision first)))
1592 (when (string= rev1-default "") (setq rev1-default nil))
1593 (setq rev2-default (vc-working-revision first))))
1594 ;; construct argument list
1595 (let* ((rev1-prompt (if rev1-default
1596 (concat "Older revision (default "
1597 rev1-default "): ")
1598 "Older revision: "))
1599 (rev2-prompt (concat "Newer revision (default "
1600 (or rev2-default "current source") "): "))
1601 (rev1 (if completion-table
1602 (completing-read rev1-prompt completion-table
1603 nil nil nil nil rev1-default)
1604 (read-string rev1-prompt nil nil rev1-default)))
1605 (rev2 (if completion-table
1606 (completing-read rev2-prompt completion-table
1607 nil nil nil nil rev2-default)
1608 (read-string rev2-prompt nil nil rev2-default))))
1609 (when (string= rev1 "") (setq rev1 nil))
1610 (when (string= rev2 "") (setq rev2 nil))
1611 (list files rev1 rev2))))
1612 (when (and (not rev1) rev2)
1613 (error "Not a valid revision range."))
1614 (vc-diff-internal
1615 t (cons (car (vc-deduce-fileset t)) files) rev1 rev2 (interactive-p)))
1617 ;; (defun vc-contains-version-controlled-file (dir)
1618 ;; "Return t if DIR contains a version-controlled file, nil otherwise."
1619 ;; (catch 'found
1620 ;; (mapc (lambda (f) (and (not (file-directory-p f)) (vc-backend f) (throw 'found 't))) (directory-files dir))
1621 ;; nil))
1623 ;;;###autoload
1624 (defun vc-diff (historic &optional not-urgent)
1625 "Display diffs between file revisions.
1626 Normally this compares the currently selected fileset with their
1627 working revisions. With a prefix argument HISTORIC, it reads two revision
1628 designators specifying which revisions to compare.
1630 If no current fileset is available and we're in a directory buffer, use
1631 the current directory.
1632 The optional argument NOT-URGENT non-nil means it is ok to say no to
1633 saving the buffer."
1634 (interactive (list current-prefix-arg t))
1635 (if historic
1636 (call-interactively 'vc-version-diff)
1637 (when buffer-file-name (vc-buffer-sync not-urgent))
1638 (vc-diff-internal t (vc-deduce-fileset t) nil nil (interactive-p))))
1641 ;;;###autoload
1642 (defun vc-revision-other-window (rev)
1643 "Visit revision REV of the current file in another window.
1644 If the current file is named `F', the revision is named `F.~REV~'.
1645 If `F.~REV~' already exists, use it instead of checking it out again."
1646 (interactive
1647 (save-current-buffer
1648 (vc-ensure-vc-buffer)
1649 (let ((completion-table
1650 (vc-call revision-completion-table buffer-file-name))
1651 (prompt "Revision to visit (default is working revision): "))
1652 (list
1653 (if completion-table
1654 (completing-read prompt completion-table)
1655 (read-string prompt))))))
1656 (vc-ensure-vc-buffer)
1657 (let* ((file buffer-file-name)
1658 (revision (if (string-equal rev "")
1659 (vc-working-revision file)
1660 rev)))
1661 (switch-to-buffer-other-window (vc-find-revision file revision))))
1663 (defun vc-find-revision (file revision)
1664 "Read REVISION of FILE into a buffer and return the buffer."
1665 (let ((automatic-backup (vc-version-backup-file-name file revision))
1666 (filebuf (or (get-file-buffer file) (current-buffer)))
1667 (filename (vc-version-backup-file-name file revision 'manual)))
1668 (unless (file-exists-p filename)
1669 (if (file-exists-p automatic-backup)
1670 (rename-file automatic-backup filename nil)
1671 (message "Checking out %s..." filename)
1672 (with-current-buffer filebuf
1673 (let ((failed t))
1674 (unwind-protect
1675 (let ((coding-system-for-read 'no-conversion)
1676 (coding-system-for-write 'no-conversion))
1677 (with-temp-file filename
1678 (let ((outbuf (current-buffer)))
1679 ;; Change buffer to get local value of
1680 ;; vc-checkout-switches.
1681 (with-current-buffer filebuf
1682 (vc-call find-revision file revision outbuf))))
1683 (setq failed nil))
1684 (when (and failed (file-exists-p filename))
1685 (delete-file filename))))
1686 (vc-mode-line file))
1687 (message "Checking out %s...done" filename)))
1688 (let ((result-buf (find-file-noselect filename)))
1689 (with-current-buffer result-buf
1690 ;; Set the parent buffer so that things like
1691 ;; C-x v g, C-x v l, ... etc work.
1692 (set (make-local-variable 'vc-parent-buffer) filebuf))
1693 result-buf)))
1695 ;; Header-insertion code
1697 ;;;###autoload
1698 (defun vc-insert-headers ()
1699 "Insert headers into a file for use with a version control system.
1700 Headers desired are inserted at point, and are pulled from
1701 the variable `vc-BACKEND-header'."
1702 (interactive)
1703 (vc-ensure-vc-buffer)
1704 (save-excursion
1705 (save-restriction
1706 (widen)
1707 (when (or (not (vc-check-headers))
1708 (y-or-n-p "Version headers already exist. Insert another set? "))
1709 (let* ((delims (cdr (assq major-mode vc-comment-alist)))
1710 (comment-start-vc (or (car delims) comment-start "#"))
1711 (comment-end-vc (or (car (cdr delims)) comment-end ""))
1712 (hdsym (vc-make-backend-sym (vc-backend buffer-file-name)
1713 'header))
1714 (hdstrings (and (boundp hdsym) (symbol-value hdsym))))
1715 (dolist (s hdstrings)
1716 (insert comment-start-vc "\t" s "\t"
1717 comment-end-vc "\n"))
1718 (when vc-static-header-alist
1719 (dolist (f vc-static-header-alist)
1720 (when (string-match (car f) buffer-file-name)
1721 (insert (format (cdr f) (car hdstrings)))))))))))
1723 (defun vc-clear-headers (&optional file)
1724 "Clear all version headers in the current buffer (or FILE).
1725 The headers are reset to their non-expanded form."
1726 (let* ((filename (or file buffer-file-name))
1727 (visited (find-buffer-visiting filename))
1728 (backend (vc-backend filename)))
1729 (when (vc-find-backend-function backend 'clear-headers)
1730 (if visited
1731 (let ((context (vc-buffer-context)))
1732 ;; save-excursion may be able to relocate point and mark
1733 ;; properly. If it fails, vc-restore-buffer-context
1734 ;; will give it a second try.
1735 (save-excursion
1736 (vc-call-backend backend 'clear-headers))
1737 (vc-restore-buffer-context context))
1738 (set-buffer (find-file-noselect filename))
1739 (vc-call-backend backend 'clear-headers)
1740 (kill-buffer filename)))))
1742 (defun vc-modify-change-comment (files rev oldcomment)
1743 "Edit the comment associated with the given files and revision."
1744 (vc-start-logentry
1745 files rev oldcomment t
1746 "Enter a replacement change comment."
1747 (lambda (files rev comment)
1748 (vc-call-backend
1749 ;; Less of a kluge than it looks like; log-view mode only passes
1750 ;; this function a singleton list. Arguments left in this form in
1751 ;; case the more general operation ever becomes meaningful.
1752 (vc-responsible-backend (car files))
1753 'modify-change-comment files rev comment))))
1755 ;;;###autoload
1756 (defun vc-merge ()
1757 "Merge changes between two revisions into the current buffer's file.
1758 This asks for two revisions to merge from in the minibuffer. If the
1759 first revision is a branch number, then merge all changes from that
1760 branch. If the first revision is empty, merge news, i.e. recent changes
1761 from the current branch.
1763 See Info node `Merging'."
1764 (interactive)
1765 (vc-ensure-vc-buffer)
1766 (vc-buffer-sync)
1767 (let* ((file buffer-file-name)
1768 (backend (vc-backend file))
1769 (state (vc-state file))
1770 first-revision second-revision status)
1771 (cond
1772 ((stringp state) ;; Locking VCses only
1773 (error "File is locked by %s" state))
1774 ((not (vc-editable-p file))
1775 (if (y-or-n-p
1776 "File must be checked out for merging. Check out now? ")
1777 (vc-checkout file t)
1778 (error "Merge aborted"))))
1779 (setq first-revision
1780 (read-string (concat "Branch or revision to merge from "
1781 "(default news on current branch): ")))
1782 (if (string= first-revision "")
1783 (if (not (vc-find-backend-function backend 'merge-news))
1784 (error "Sorry, merging news is not implemented for %s" backend)
1785 (setq status (vc-call merge-news file)))
1786 (if (not (vc-find-backend-function backend 'merge))
1787 (error "Sorry, merging is not implemented for %s" backend)
1788 (if (not (vc-branch-p first-revision))
1789 (setq second-revision
1790 (read-string "Second revision: "
1791 (concat (vc-branch-part first-revision) ".")))
1792 ;; We want to merge an entire branch. Set revisions
1793 ;; accordingly, so that vc-BACKEND-merge understands us.
1794 (setq second-revision first-revision)
1795 ;; first-revision must be the starting point of the branch
1796 (setq first-revision (vc-branch-part first-revision)))
1797 (setq status (vc-call merge file first-revision second-revision))))
1798 (vc-maybe-resolve-conflicts file status "WORKFILE" "MERGE SOURCE")))
1800 (defun vc-maybe-resolve-conflicts (file status &optional name-A name-B)
1801 (vc-resynch-buffer file t (not (buffer-modified-p)))
1802 (if (zerop status) (message "Merge successful")
1803 (smerge-mode 1)
1804 (message "File contains conflicts.")))
1806 ;;;###autoload
1807 (defalias 'vc-resolve-conflicts 'smerge-ediff)
1809 ;; VC status implementation
1811 (defun vc-default-status-extra-headers (backend dir)
1812 ;; Be loud by default to remind people to add coded to display
1813 ;; backend specific headers.
1814 ;; XXX: change this to return nil before the release.
1815 "Extra : Add backend specific headers here")
1817 (defun vc-dir-headers (backend dir)
1818 "Display the headers in the *VC status* buffer.
1819 It calls the `status-extra-headers' backend method to display backend
1820 specific headers."
1821 (concat
1822 (propertize "VC backend : " 'face 'font-lock-type-face)
1823 (propertize (format "%s\n" backend) 'face 'font-lock-variable-name-face)
1824 (propertize "Working dir: " 'face 'font-lock-type-face)
1825 (propertize (format "%s\n" dir) 'face 'font-lock-variable-name-face)
1826 (vc-call-backend backend 'status-extra-headers dir)
1827 "\n"))
1829 (defun vc-default-status-printer (backend fileentry)
1830 "Pretty print FILEENTRY."
1831 ;; If you change the layout here, change vc-dir-move-to-goal-column.
1832 (let ((state
1833 (if (vc-dir-fileinfo->directory fileentry)
1834 'DIRECTORY
1835 (vc-dir-fileinfo->state fileentry))))
1836 (insert
1837 (propertize
1838 (format "%c" (if (vc-dir-fileinfo->marked fileentry) ?* ? ))
1839 'face 'font-lock-type-face)
1841 (propertize
1842 (format "%-20s" state)
1843 'face (cond ((eq state 'up-to-date) 'font-lock-builtin-face)
1844 ((memq state '(missing conflict)) 'font-lock-warning-face)
1845 (t 'font-lock-variable-name-face))
1846 'mouse-face 'highlight)
1848 (propertize
1849 (format "%s" (vc-dir-fileinfo->name fileentry))
1850 'face 'font-lock-function-name-face
1851 'mouse-face 'highlight))))
1853 (defun vc-default-extra-status-menu (backend)
1854 nil)
1856 ;; This is used to that VC backends could add backend specific menu
1857 ;; items to vc-dir-menu-map.
1858 (defun vc-dir-menu-map-filter (orig-binding)
1859 (when (and (symbolp orig-binding) (fboundp orig-binding))
1860 (setq orig-binding (indirect-function orig-binding)))
1861 (let ((ext-binding
1862 (vc-call-backend (vc-responsible-backend default-directory)
1863 'extra-status-menu)))
1864 (if (null ext-binding)
1865 orig-binding
1866 (append orig-binding
1867 '("----")
1868 ext-binding))))
1870 (defun vc-dir-refresh-files (files default-state)
1871 "Refresh some files in the VC status buffer."
1872 (let ((backend (vc-responsible-backend default-directory))
1873 (status-buffer (current-buffer))
1874 (def-dir default-directory))
1875 (vc-set-mode-line-busy-indicator)
1876 ;; Call the `dir-status-file' backend function.
1877 ;; `dir-status-file' is supposed to be asynchronous.
1878 ;; It should compute the results, and then call the function
1879 ;; passed as an argument in order to update the vc-dir buffer
1880 ;; with the results.
1881 (unless (buffer-live-p vc-dir-process-buffer)
1882 (setq vc-dir-process-buffer
1883 (generate-new-buffer (format " *VC-%s* tmp status" backend))))
1884 (lexical-let ((buffer (current-buffer)))
1885 (with-current-buffer vc-dir-process-buffer
1886 (cd def-dir)
1887 (erase-buffer)
1888 (vc-call-backend
1889 backend 'dir-status-files def-dir files default-state
1890 (lambda (entries &optional more-to-come)
1891 ;; ENTRIES is a list of (FILE VC_STATE EXTRA) items.
1892 ;; If MORE-TO-COME is true, then more updates will come from
1893 ;; the asynchronous process.
1894 (with-current-buffer buffer
1895 (vc-dir-update entries buffer)
1896 (unless more-to-come
1897 (setq mode-line-process nil)
1898 ;; Remove the ones that haven't been updated at all.
1899 ;; Those not-updated are those whose state is nil because the
1900 ;; file/dir doesn't exist and isn't versioned.
1901 (ewoc-filter vc-ewoc
1902 (lambda (info)
1903 (not (vc-dir-fileinfo->needs-update info))))))))))))
1905 (defun vc-dir-refresh ()
1906 "Refresh the contents of the VC status buffer.
1907 Throw an error if another update process is in progress."
1908 (interactive)
1909 (if (vc-dir-busy)
1910 (error "Another update process is in progress, cannot run two at a time")
1911 (let ((backend (vc-responsible-backend default-directory))
1912 (status-buffer (current-buffer))
1913 (def-dir default-directory))
1914 (vc-set-mode-line-busy-indicator)
1915 ;; Call the `dir-status' backend function.
1916 ;; `dir-status' is supposed to be asynchronous.
1917 ;; It should compute the results, and then call the function
1918 ;; passed as an argument in order to update the vc-dir buffer
1919 ;; with the results.
1921 ;; Create a buffer that can be used by `dir-status' and call
1922 ;; `dir-status' with this buffer as the current buffer. Use
1923 ;; `vc-dir-process-buffer' to remember this buffer, so that
1924 ;; it can be used later to kill the update process in case it
1925 ;; takes too long.
1926 (unless (buffer-live-p vc-dir-process-buffer)
1927 (setq vc-dir-process-buffer
1928 (generate-new-buffer (format " *VC-%s* tmp status" backend))))
1929 ;; set the needs-update flag on all entries
1930 (ewoc-map (lambda (info) (setf (vc-dir-fileinfo->needs-update info) t) nil)
1931 vc-ewoc)
1932 (lexical-let ((buffer (current-buffer)))
1933 (with-current-buffer vc-dir-process-buffer
1934 (cd def-dir)
1935 (erase-buffer)
1936 (vc-call-backend
1937 backend 'dir-status def-dir
1938 (lambda (entries &optional more-to-come)
1939 ;; ENTRIES is a list of (FILE VC_STATE EXTRA) items.
1940 ;; If MORE-TO-COME is true, then more updates will come from
1941 ;; the asynchronous process.
1942 (with-current-buffer buffer
1943 (vc-dir-update entries buffer)
1944 (unless more-to-come
1945 (let ((remaining
1946 (ewoc-collect
1947 vc-ewoc 'vc-dir-fileinfo->needs-update)))
1948 (if remaining
1949 (vc-dir-refresh-files
1950 (mapcar 'vc-dir-fileinfo->name remaining)
1951 'up-to-date)
1952 (setq mode-line-process nil))))))))))))
1954 (defun vc-dir-show-fileentry (file)
1955 "Insert an entry for a specific file into the current VC status listing.
1956 This is typically used if the file is up-to-date (or has been added
1957 outside of VC) and one wants to do some operation on it."
1958 (interactive "fShow file: ")
1959 (vc-dir-update (list (list (file-relative-name file) (vc-state file))) (current-buffer)))
1961 (defun vc-dir-hide-up-to-date ()
1962 "Hide up-to-date items from display."
1963 (interactive)
1964 (ewoc-filter
1965 vc-ewoc
1966 (lambda (crt) (not (eq (vc-dir-fileinfo->state crt) 'up-to-date)))))
1968 (defun vc-dir-register ()
1969 "Register the marked files, or the current file if no marks."
1970 (interactive)
1971 ;; FIXME: Just pass the fileset to vc-register.
1972 (mapc (lambda (arg) (vc-register nil arg))
1973 (or (vc-dir-marked-files) (list (vc-dir-current-file)))))
1975 (defun vc-default-status-fileinfo-extra (backend file)
1976 "Default absence of extra information returned for a file."
1977 nil)
1979 ;; FIXME: Replace these with a more efficient dispatch
1981 (defun vc-generic-status-printer (fileentry)
1982 (let* ((file (vc-dir-fileinfo->name fileentry))
1983 (backend (vc-responsible-backend (expand-file-name file))))
1984 (vc-call-backend backend 'status-printer fileentry)))
1986 (defun vc-generic-state (file)
1987 (let ((backend (vc-responsible-backend (expand-file-name file))))
1988 (vc-call-backend backend 'state file)))
1990 (defun vc-generic-status-fileinfo-extra (file)
1991 (let ((backend (vc-responsible-backend (expand-file-name file))))
1992 (vc-call-backend backend 'status-fileinfo-extra file)))
1994 (defun vc-generic-dir-headers (dir)
1995 (let ((backend (vc-responsible-backend dir)))
1996 (vc-dir-headers backend dir)))
1998 (defun vc-make-backend-object (file-or-dir)
1999 "Create the backend capability object needed by vc-dispatcher."
2000 (vc-create-client-object
2001 "VC status"
2002 (let ((backend (vc-responsible-backend file-or-dir)))
2003 (vc-dir-headers backend file-or-dir))
2004 #'vc-generic-status-printer
2005 #'vc-generic-state
2006 #'vc-generic-status-fileinfo-extra
2007 #'vc-dir-refresh))
2009 ;;;###autoload
2010 (defun vc-dir (dir)
2011 "Show the VC status for DIR."
2012 (interactive "DVC status for directory: ")
2013 (pop-to-buffer (vc-dir-prepare-status-buffer dir))
2014 (if (and (eq major-mode 'vc-dir-mode) (boundp 'client-object))
2015 (vc-dir-refresh)
2016 ;; Otherwise, initialize a new view using the dispatcher layer
2017 (progn
2018 ;; Build a capability object and hand it to the dispatcher initializer
2019 (vc-dir-mode (vc-make-backend-object dir))
2020 ;; Add VC-specific keybindings
2021 (let ((map (current-local-map)))
2022 (define-key map "=" 'vc-diff) ;; C-x v =
2023 (define-key map "a" 'vc-dir-register)
2024 (define-key map "+" 'vc-update) ;; C-x v +
2025 (define-key map "R" 'vc-revert) ;; u is taken by dispatcher unmark.
2026 (define-key map "A" 'vc-annotate) ;; g is taken by dispatcher referesh
2027 (define-key map "l" 'vc-print-log) ;; C-x v l
2028 (define-key map "x" 'vc-dir-hide-up-to-date))
2030 ;; FIXME: Needs to alter a buffer-local map, otherwise clients may clash
2031 (let ((map vc-dir-menu-map))
2032 ;; VC info details
2033 (define-key map [sepvcdet] '("--"))
2034 (define-key map [remup]
2035 '(menu-item "Hide up-to-date" vc-dir-hide-up-to-date
2036 :help "Hide up-to-date items from display"))
2037 ;; FIXME: This needs a key binding. And maybe a better name
2038 ;; ("Insert" like PCL-CVS uses does not sound that great either)...
2039 (define-key map [ins]
2040 '(menu-item "Show File" vc-dir-show-fileentry
2041 :help "Show a file in the VC status listing even though it might be up to date"))
2042 (define-key map [annotate]
2043 '(menu-item "Annotate" vc-annotate
2044 :help "Display the edit history of the current file using colors"))
2045 (define-key map [diff]
2046 '(menu-item "Compare with Base Version" vc-diff
2047 :help "Compare file set with the base version"))
2048 (define-key map [log]
2049 '(menu-item "Show history" vc-print-log
2050 :help "List the change log of the current file set in a window"))
2051 ;; VC commands.
2052 (define-key map [sepvccmd] '("--"))
2053 (define-key map [update]
2054 '(menu-item "Update to latest version" vc-update
2055 :help "Update the current fileset's files to their tip revisions"))
2056 (define-key map [revert]
2057 '(menu-item "Revert to base version" vc-revert
2058 :help "Revert working copies of the selected fileset to their repository contents."))
2059 (define-key map [next-action]
2060 ;; FIXME: This really really really needs a better name!
2061 ;; And a key binding too.
2062 '(menu-item "Check In/Out" vc-next-action
2063 :help "Do the next logical version control operation on the current fileset"))
2064 (define-key map [register]
2065 '(menu-item "Register" vc-dir-register
2066 :help "Register file set into the version control system"))
2069 ;; Named-configuration entry points
2071 (defun vc-snapshot-precondition (dir)
2072 "Scan the tree below DIR, looking for files not up-to-date.
2073 If any file is not up-to-date, return the name of the first such file.
2074 \(This means, neither snapshot creation nor retrieval is allowed.\)
2075 If one or more of the files are currently visited, return `visited'.
2076 Otherwise, return nil."
2077 (let ((status nil))
2078 (catch 'vc-locked-example
2079 (vc-file-tree-walk
2081 (lambda (f)
2082 (if (not (vc-up-to-date-p f)) (throw 'vc-locked-example f)
2083 (when (get-file-buffer f) (setq status 'visited)))))
2084 status)))
2086 ;;;###autoload
2087 (defun vc-create-snapshot (dir name branchp)
2088 "Descending recursively from DIR, make a snapshot called NAME.
2089 For each registered file, the working revision becomes part of
2090 the named configuration. If the prefix argument BRANCHP is
2091 given, the snapshot is made as a new branch and the files are
2092 checked out in that new branch."
2093 (interactive
2094 (list (read-file-name "Directory: " default-directory default-directory t)
2095 (read-string "New snapshot name: ")
2096 current-prefix-arg))
2097 (message "Making %s... " (if branchp "branch" "snapshot"))
2098 (when (file-directory-p dir) (setq dir (file-name-as-directory dir)))
2099 (vc-call-backend (vc-responsible-backend dir)
2100 'create-snapshot dir name branchp)
2101 (message "Making %s... done" (if branchp "branch" "snapshot")))
2103 ;;;###autoload
2104 (defun vc-retrieve-snapshot (dir name)
2105 "Descending recursively from DIR, retrieve the snapshot called NAME.
2106 If NAME is empty, it refers to the latest revisions.
2107 If locking is used for the files in DIR, then there must not be any
2108 locked files at or below DIR (but if NAME is empty, locked files are
2109 allowed and simply skipped)."
2110 (interactive
2111 (list (read-file-name "Directory: " default-directory default-directory t)
2112 (read-string "Snapshot name to retrieve (default latest revisions): ")))
2113 (let ((update (yes-or-no-p "Update any affected buffers? "))
2114 (msg (if (or (not name) (string= name ""))
2115 (format "Updating %s... " (abbreviate-file-name dir))
2116 (format "Retrieving snapshot into %s... "
2117 (abbreviate-file-name dir)))))
2118 (message "%s" msg)
2119 (vc-call-backend (vc-responsible-backend dir)
2120 'retrieve-snapshot dir name update)
2121 (message "%s" (concat msg "done"))))
2123 ;; Miscellaneous other entry points
2125 ;;;###autoload
2126 (defun vc-print-log (&optional working-revision)
2127 "List the change log of the current fileset in a window.
2128 If WORKING-REVISION is non-nil, leave the point at that revision."
2129 (interactive)
2130 (let* ((vc-fileset (vc-deduce-fileset))
2131 (files (cdr vc-fileset))
2132 (backend (car vc-fileset))
2133 (working-revision (or working-revision (vc-working-revision (car files)))))
2134 ;; Don't switch to the output buffer before running the command,
2135 ;; so that any buffer-local settings in the vc-controlled
2136 ;; buffer can be accessed by the command.
2137 (vc-call-backend backend 'print-log files "*vc-change-log*")
2138 (pop-to-buffer "*vc-change-log*")
2139 (vc-exec-after
2140 `(let ((inhibit-read-only t))
2141 (vc-call-backend ',backend 'log-view-mode)
2142 (goto-char (point-max)) (forward-line -1)
2143 (while (looking-at "=*\n")
2144 (delete-char (- (match-end 0) (match-beginning 0)))
2145 (forward-line -1))
2146 (goto-char (point-min))
2147 (when (looking-at "[\b\t\n\v\f\r ]+")
2148 (delete-char (- (match-end 0) (match-beginning 0))))
2149 (shrink-window-if-larger-than-buffer)
2150 ;; move point to the log entry for the working revision
2151 (vc-call-backend ',backend 'show-log-entry ',working-revision)
2152 (setq vc-sentinel-movepoint (point))
2153 (set-buffer-modified-p nil)))))
2155 ;;;###autoload
2156 (defun vc-revert ()
2157 "Revert working copies of the selected fileset to their repository contents.
2158 This asks for confirmation if the buffer contents are not identical
2159 to the working revision (except for keyword expansion)."
2160 (interactive)
2161 (let* ((vc-fileset (vc-deduce-fileset))
2162 (files (cdr vc-fileset)))
2163 ;; If any of the files is visited by the current buffer, make
2164 ;; sure buffer is saved. If the user says `no', abort since
2165 ;; we cannot show the changes and ask for confirmation to
2166 ;; discard them.
2167 (when (or (not files) (memq (buffer-file-name) files))
2168 (vc-buffer-sync nil))
2169 (dolist (file files)
2170 (let ((buf (get-file-buffer file)))
2171 (when (and buf (buffer-modified-p buf))
2172 (error "Please kill or save all modified buffers before reverting.")))
2173 (when (vc-up-to-date-p file)
2174 (unless (yes-or-no-p (format "%s seems up-to-date. Revert anyway? " file))
2175 (error "Revert canceled"))))
2176 (when (vc-diff-internal vc-allow-async-revert vc-fileset nil nil)
2177 (unless (yes-or-no-p (format "Discard changes in %s? " (vc-delistify files)))
2178 (error "Revert canceled"))
2179 (delete-windows-on "*vc-diff*")
2180 (kill-buffer "*vc-diff*"))
2181 (dolist (file files)
2182 (message "Reverting %s..." (vc-delistify files))
2183 (vc-revert-file file)
2184 (message "Reverting %s...done" (vc-delistify files)))))
2186 ;;;###autoload
2187 (defun vc-rollback ()
2188 "Roll back (remove) the most recent changeset committed to the repository.
2189 This may be either a file-level or a repository-level operation,
2190 depending on the underlying version-control system."
2191 (interactive)
2192 (let* ((vc-fileset (vc-deduce-fileset))
2193 (files (cdr vc-fileset))
2194 (backend (car vc-fileset))
2195 (granularity (vc-call-backend backend 'revision-granularity)))
2196 (unless (vc-find-backend-function backend 'rollback)
2197 (error "Rollback is not supported in %s" backend))
2198 (when (and (not (eq granularity 'repository)) (/= (length files) 1))
2199 (error "Rollback requires a singleton fileset or repository versioning"))
2200 (when (not (vc-call latest-on-branch-p (car files)))
2201 (error "Rollback is only possible at the tip revision."))
2202 ;; If any of the files is visited by the current buffer, make
2203 ;; sure buffer is saved. If the user says `no', abort since
2204 ;; we cannot show the changes and ask for confirmation to
2205 ;; discard them.
2206 (when (or (not files) (memq (buffer-file-name) files))
2207 (vc-buffer-sync nil))
2208 (dolist (file files)
2209 (when (buffer-modified-p (get-file-buffer file))
2210 (error "Please kill or save all modified buffers before rollback."))
2211 (when (not (vc-up-to-date-p file))
2212 (error "Please revert all modified workfiles before rollback.")))
2213 ;; Accumulate changes associated with the fileset
2214 (vc-setup-buffer "*vc-diff*")
2215 (not-modified)
2216 (message "Finding changes...")
2217 (let* ((tip (vc-working-revision (car files)))
2218 (previous (vc-call previous-revision (car files) tip)))
2219 (vc-diff-internal nil vc-fileset previous tip))
2220 ;; Display changes
2221 (unless (yes-or-no-p "Discard these revisions? ")
2222 (error "Rollback canceled"))
2223 (delete-windows-on "*vc-diff*")
2224 (kill-buffer"*vc-diff*")
2225 ;; Do the actual reversions
2226 (message "Rolling back %s..." (vc-delistify files))
2227 (with-vc-properties
2228 files
2229 (vc-call-backend backend 'rollback files)
2230 `((vc-state . ,'up-to-date)
2231 (vc-checkout-time . , (nth 5 (file-attributes file)))
2232 (vc-working-revision . nil)))
2233 (dolist (f files) (vc-resynch-buffer f t t))
2234 (message "Rolling back %s...done" (vc-delistify files))))
2236 ;;;###autoload
2237 (define-obsolete-function-alias 'vc-revert-buffer 'vc-revert "23.1")
2239 ;;;###autoload
2240 (defun vc-update ()
2241 "Update the current fileset's files to their tip revisions.
2242 For each one that contains no changes, and is not locked, then this simply
2243 replaces the work file with the latest revision on its branch. If the file
2244 contains changes, and the backend supports merging news, then any recent
2245 changes from the current branch are merged into the working file."
2246 (interactive)
2247 (let* ((vc-fileset (vc-deduce-fileset))
2248 (files (cdr vc-fileset))
2249 (backend (car vc-fileset)))
2250 (dolist (file files)
2251 (when (let ((buf (get-file-buffer file)))
2252 (and buf (buffer-modified-p buf)))
2253 (error "Please kill or save all modified buffers before updating."))
2254 (if (vc-up-to-date-p file)
2255 (vc-checkout file nil t)
2256 (if (eq (vc-checkout-model backend (list file)) 'locking)
2257 (if (eq (vc-state file) 'edited)
2258 (error "%s"
2259 (substitute-command-keys
2260 "File is locked--type \\[vc-revert] to discard changes"))
2261 (error "Unexpected file state (%s) -- type %s"
2262 (vc-state file)
2263 (substitute-command-keys
2264 "\\[vc-next-action] to correct")))
2265 (if (not (vc-find-backend-function backend 'merge-news))
2266 (error "Sorry, merging news is not implemented for %s"
2267 backend)
2268 (vc-maybe-resolve-conflicts file (vc-call merge-news file))))))))
2270 (defun vc-version-backup-file (file &optional rev)
2271 "Return name of backup file for revision REV of FILE.
2272 If version backups should be used for FILE, and there exists
2273 such a backup for REV or the working revision of file, return
2274 its name; otherwise return nil."
2275 (when (vc-call make-version-backups-p file)
2276 (let ((backup-file (vc-version-backup-file-name file rev)))
2277 (if (file-exists-p backup-file)
2278 backup-file
2279 ;; there is no automatic backup, but maybe the user made one manually
2280 (setq backup-file (vc-version-backup-file-name file rev 'manual))
2281 (when (file-exists-p backup-file)
2282 backup-file)))))
2284 (defun vc-revert-file (file)
2285 "Revert FILE back to the repository working revision it was based on."
2286 (with-vc-properties
2287 (list file)
2288 (let ((backup-file (vc-version-backup-file file)))
2289 (when backup-file
2290 (copy-file backup-file file 'ok-if-already-exists 'keep-date)
2291 (vc-delete-automatic-version-backups file))
2292 (vc-call revert file backup-file))
2293 `((vc-state . up-to-date)
2294 (vc-checkout-time . ,(nth 5 (file-attributes file)))))
2295 (vc-resynch-buffer file t t))
2297 ;;;###autoload
2298 (defun vc-switch-backend (file backend)
2299 "Make BACKEND the current version control system for FILE.
2300 FILE must already be registered in BACKEND. The change is not
2301 permanent, only for the current session. This function only changes
2302 VC's perspective on FILE, it does not register or unregister it.
2303 By default, this command cycles through the registered backends.
2304 To get a prompt, use a prefix argument."
2305 (interactive
2306 (list
2307 (or buffer-file-name
2308 (error "There is no version-controlled file in this buffer"))
2309 (let ((backend (vc-backend buffer-file-name))
2310 (backends nil))
2311 (unless backend
2312 (error "File %s is not under version control" buffer-file-name))
2313 ;; Find the registered backends.
2314 (dolist (backend vc-handled-backends)
2315 (when (vc-call-backend backend 'registered buffer-file-name)
2316 (push backend backends)))
2317 ;; Find the next backend.
2318 (let ((def (car (delq backend (append (memq backend backends) backends))))
2319 (others (delete backend backends)))
2320 (cond
2321 ((null others) (error "No other backend to switch to"))
2322 (current-prefix-arg
2323 (intern
2324 (upcase
2325 (completing-read
2326 (format "Switch to backend [%s]: " def)
2327 (mapcar (lambda (b) (list (downcase (symbol-name b)))) backends)
2328 nil t nil nil (downcase (symbol-name def))))))
2329 (t def))))))
2330 (unless (eq backend (vc-backend file))
2331 (vc-file-clearprops file)
2332 (vc-file-setprop file 'vc-backend backend)
2333 ;; Force recomputation of the state
2334 (unless (vc-call-backend backend 'registered file)
2335 (vc-file-clearprops file)
2336 (error "%s is not registered in %s" file backend))
2337 (vc-mode-line file)))
2339 ;;;###autoload
2340 (defun vc-transfer-file (file new-backend)
2341 "Transfer FILE to another version control system NEW-BACKEND.
2342 If NEW-BACKEND has a higher precedence than FILE's current backend
2343 \(i.e. it comes earlier in `vc-handled-backends'), then register FILE in
2344 NEW-BACKEND, using the revision number from the current backend as the
2345 base level. If NEW-BACKEND has a lower precedence than the current
2346 backend, then commit all changes that were made under the current
2347 backend to NEW-BACKEND, and unregister FILE from the current backend.
2348 \(If FILE is not yet registered under NEW-BACKEND, register it.)"
2349 (let* ((old-backend (vc-backend file))
2350 (edited (memq (vc-state file) '(edited needs-merge)))
2351 (registered (vc-call-backend new-backend 'registered file))
2352 (move
2353 (and registered ; Never move if not registered in new-backend yet.
2354 ;; move if new-backend comes later in vc-handled-backends
2355 (or (memq new-backend (memq old-backend vc-handled-backends))
2356 (y-or-n-p "Final transfer? "))))
2357 (comment nil))
2358 (when (eq old-backend new-backend)
2359 (error "%s is the current backend of %s" new-backend file))
2360 (if registered
2361 (set-file-modes file (logior (file-modes file) 128))
2362 ;; `registered' might have switched under us.
2363 (vc-switch-backend file old-backend)
2364 (let* ((rev (vc-working-revision file))
2365 (modified-file (and edited (make-temp-file file)))
2366 (unmodified-file (and modified-file (vc-version-backup-file file))))
2367 ;; Go back to the base unmodified file.
2368 (unwind-protect
2369 (progn
2370 (when modified-file
2371 (copy-file file modified-file 'ok-if-already-exists)
2372 ;; If we have a local copy of the unmodified file, handle that
2373 ;; here and not in vc-revert-file because we don't want to
2374 ;; delete that copy -- it is still useful for OLD-BACKEND.
2375 (if unmodified-file
2376 (copy-file unmodified-file file
2377 'ok-if-already-exists 'keep-date)
2378 (when (y-or-n-p "Get base revision from master? ")
2379 (vc-revert-file file))))
2380 (vc-call-backend new-backend 'receive-file file rev))
2381 (when modified-file
2382 (vc-switch-backend file new-backend)
2383 (unless (eq (vc-checkout-model new-backend (list file)) 'implicit)
2384 (vc-checkout file t nil))
2385 (rename-file modified-file file 'ok-if-already-exists)
2386 (vc-file-setprop file 'vc-checkout-time nil)))))
2387 (when move
2388 (vc-switch-backend file old-backend)
2389 (setq comment (vc-call comment-history file))
2390 (vc-call unregister file))
2391 (vc-switch-backend file new-backend)
2392 (when (or move edited)
2393 (vc-file-setprop file 'vc-state 'edited)
2394 (vc-mode-line file)
2395 (vc-checkin file nil comment (stringp comment)))))
2397 (defun vc-rename-master (oldmaster newfile templates)
2398 "Rename OLDMASTER to be the master file for NEWFILE based on TEMPLATES."
2399 (let* ((dir (file-name-directory (expand-file-name oldmaster)))
2400 (newdir (or (file-name-directory newfile) ""))
2401 (newbase (file-name-nondirectory newfile))
2402 (masters
2403 ;; List of potential master files for `newfile'
2404 (mapcar
2405 (lambda (s) (vc-possible-master s newdir newbase))
2406 templates)))
2407 (when (or (file-symlink-p oldmaster)
2408 (file-symlink-p (file-name-directory oldmaster)))
2409 (error "This is unsafe in the presence of symbolic links"))
2410 (rename-file
2411 oldmaster
2412 (catch 'found
2413 ;; If possible, keep the master file in the same directory.
2414 (dolist (f masters)
2415 (when (and f (string= (file-name-directory (expand-file-name f)) dir))
2416 (throw 'found f)))
2417 ;; If not, just use the first possible place.
2418 (dolist (f masters)
2419 (and f (or (not (setq dir (file-name-directory f)))
2420 (file-directory-p dir))
2421 (throw 'found f)))
2422 (error "New file lacks a version control directory")))))
2424 (defun vc-delete-file (file)
2425 "Delete file and mark it as such in the version control system."
2426 (interactive "fVC delete file: ")
2427 (setq file (expand-file-name file))
2428 (let ((buf (get-file-buffer file))
2429 (backend (vc-backend file)))
2430 (unless backend
2431 (error "File %s is not under version control"
2432 (file-name-nondirectory file)))
2433 (unless (vc-find-backend-function backend 'delete-file)
2434 (error "Deleting files under %s is not supported in VC" backend))
2435 (when (and buf (buffer-modified-p buf))
2436 (error "Please save or undo your changes before deleting %s" file))
2437 (let ((state (vc-state file)))
2438 (when (eq state 'edited)
2439 (error "Please commit or undo your changes before deleting %s" file))
2440 (when (eq state 'conflict)
2441 (error "Please resolve the conflicts before deleting %s" file)))
2442 (unless (y-or-n-p (format "Really want to delete %s? "
2443 (file-name-nondirectory file)))
2444 (error "Abort!"))
2445 (unless (or (file-directory-p file) (null make-backup-files)
2446 (not (file-exists-p file)))
2447 (with-current-buffer (or buf (find-file-noselect file))
2448 (let ((backup-inhibited nil))
2449 (backup-buffer))
2450 ;; If we didn't have a buffer visiting the file before this
2451 ;; command, kill the buffer created by the above
2452 ;; `find-file-noselect' call.
2453 (unless buf (kill-buffer (current-buffer)))))
2454 (vc-call delete-file file)
2455 ;; If the backend hasn't deleted the file itself, let's do it for him.
2456 (when (file-exists-p file) (delete-file file))
2457 ;; Forget what VC knew about the file.
2458 (vc-file-clearprops file)
2459 (vc-resynch-buffer file buf t)))
2461 ;;;###autoload
2462 (defun vc-rename-file (old new)
2463 "Rename file OLD to NEW, and rename its master file likewise."
2464 (interactive "fVC rename file: \nFRename to: ")
2465 (let ((oldbuf (get-file-buffer old)))
2466 (when (and oldbuf (buffer-modified-p oldbuf))
2467 (error "Please save files before moving them"))
2468 (when (get-file-buffer new)
2469 (error "Already editing new file name"))
2470 (when (file-exists-p new)
2471 (error "New file already exists"))
2472 (let ((state (vc-state old)))
2473 (unless (memq state '(up-to-date edited))
2474 (error "Please %s files before moving them"
2475 (if (stringp state) "check in" "update"))))
2476 (vc-call rename-file old new)
2477 (vc-file-clearprops old)
2478 ;; Move the actual file (unless the backend did it already)
2479 (when (file-exists-p old) (rename-file old new))
2480 ;; ?? Renaming a file might change its contents due to keyword expansion.
2481 ;; We should really check out a new copy if the old copy was precisely equal
2482 ;; to some checked-in revision. However, testing for this is tricky....
2483 (when oldbuf
2484 (with-current-buffer oldbuf
2485 (let ((buffer-read-only buffer-read-only))
2486 (set-visited-file-name new))
2487 (vc-backend new)
2488 (vc-mode-line new)
2489 (set-buffer-modified-p nil)))))
2491 ;;;###autoload
2492 (defun vc-update-change-log (&rest args)
2493 "Find change log file and add entries from recent version control logs.
2494 Normally, find log entries for all registered files in the default
2495 directory.
2497 With prefix arg of \\[universal-argument], only find log entries for the current buffer's file.
2499 With any numeric prefix arg, find log entries for all currently visited
2500 files that are under version control. This puts all the entries in the
2501 log for the default directory, which may not be appropriate.
2503 From a program, any ARGS are assumed to be filenames for which
2504 log entries should be gathered."
2505 (interactive
2506 (cond ((consp current-prefix-arg) ;C-u
2507 (list buffer-file-name))
2508 (current-prefix-arg ;Numeric argument.
2509 (let ((files nil)
2510 (buffers (buffer-list))
2511 file)
2512 (while buffers
2513 (setq file (buffer-file-name (car buffers)))
2514 (and file (vc-backend file)
2515 (setq files (cons file files)))
2516 (setq buffers (cdr buffers)))
2517 files))
2519 ;; Don't supply any filenames to backend; this means
2520 ;; it should find all relevant files relative to
2521 ;; the default-directory.
2522 nil)))
2523 (vc-call-backend (vc-responsible-backend default-directory)
2524 'update-changelog args))
2526 ;;; The default back end. Assumes RCS-like revision numbering.
2528 (defun vc-default-revision-granularity ()
2529 (error "Your backend will not work with this version of VC mode."))
2531 ;; functions that operate on RCS revision numbers. This code should
2532 ;; also be moved into the backends. It stays for now, however, since
2533 ;; it is used in code below.
2534 ;;;###autoload
2535 (defun vc-trunk-p (rev)
2536 "Return t if REV is a revision on the trunk."
2537 (not (eq nil (string-match "\\`[0-9]+\\.[0-9]+\\'" rev))))
2539 (defun vc-branch-p (rev)
2540 "Return t if REV is a branch revision."
2541 (not (eq nil (string-match "\\`[0-9]+\\(\\.[0-9]+\\.[0-9]+\\)*\\'" rev))))
2543 ;;;###autoload
2544 (defun vc-branch-part (rev)
2545 "Return the branch part of a revision number REV."
2546 (let ((index (string-match "\\.[0-9]+\\'" rev)))
2547 (when index
2548 (substring rev 0 index))))
2550 (defun vc-minor-part (rev)
2551 "Return the minor revision number of a revision number REV."
2552 (string-match "[0-9]+\\'" rev)
2553 (substring rev (match-beginning 0) (match-end 0)))
2555 (defun vc-default-previous-revision (backend file rev)
2556 "Return the revision number immediately preceding REV for FILE,
2557 or nil if there is no previous revision. This default
2558 implementation works for MAJOR.MINOR-style revision numbers as
2559 used by RCS and CVS."
2560 (let ((branch (vc-branch-part rev))
2561 (minor-num (string-to-number (vc-minor-part rev))))
2562 (when branch
2563 (if (> minor-num 1)
2564 ;; revision does probably not start a branch or release
2565 (concat branch "." (number-to-string (1- minor-num)))
2566 (if (vc-trunk-p rev)
2567 ;; we are at the beginning of the trunk --
2568 ;; don't know anything to return here
2570 ;; we are at the beginning of a branch --
2571 ;; return revision of starting point
2572 (vc-branch-part branch))))))
2574 (defun vc-default-next-revision (backend file rev)
2575 "Return the revision number immediately following REV for FILE,
2576 or nil if there is no next revision. This default implementation
2577 works for MAJOR.MINOR-style revision numbers as used by RCS
2578 and CVS."
2579 (when (not (string= rev (vc-working-revision file)))
2580 (let ((branch (vc-branch-part rev))
2581 (minor-num (string-to-number (vc-minor-part rev))))
2582 (concat branch "." (number-to-string (1+ minor-num))))))
2584 (defun vc-default-responsible-p (backend file)
2585 "Indicate whether BACKEND is reponsible for FILE.
2586 The default is to return nil always."
2587 nil)
2589 (defun vc-default-could-register (backend file)
2590 "Return non-nil if BACKEND could be used to register FILE.
2591 The default implementation returns t for all files."
2594 (defun vc-default-latest-on-branch-p (backend file)
2595 "Return non-nil if FILE is the latest on its branch.
2596 This default implementation always returns non-nil, which means that
2597 editing non-current revisions is not supported by default."
2600 (defun vc-default-init-revision (backend) vc-default-init-revision)
2602 (defalias 'vc-cvs-update-changelog 'vc-update-changelog-rcs2log)
2603 (defalias 'vc-rcs-update-changelog 'vc-update-changelog-rcs2log)
2604 ;; FIXME: This should probably be moved to vc-rcs.el and replaced in
2605 ;; vc-cvs.el by code using cvs2cl.
2606 (defun vc-update-changelog-rcs2log (files)
2607 "Default implementation of update-changelog.
2608 Uses `rcs2log' which only works for RCS and CVS."
2609 ;; FIXME: We (c|sh)ould add support for cvs2cl
2610 (let ((odefault default-directory)
2611 (changelog (find-change-log))
2612 ;; Presumably not portable to non-Unixy systems, along with rcs2log:
2613 (tempfile (make-temp-file
2614 (expand-file-name "vc"
2615 (or small-temporary-file-directory
2616 temporary-file-directory))))
2617 (login-name (or user-login-name
2618 (format "uid%d" (number-to-string (user-uid)))))
2619 (full-name (or add-log-full-name
2620 (user-full-name)
2621 (user-login-name)
2622 (format "uid%d" (number-to-string (user-uid)))))
2623 (mailing-address (or add-log-mailing-address
2624 user-mail-address)))
2625 (find-file-other-window changelog)
2626 (barf-if-buffer-read-only)
2627 (vc-buffer-sync)
2628 (undo-boundary)
2629 (goto-char (point-min))
2630 (push-mark)
2631 (message "Computing change log entries...")
2632 (message "Computing change log entries... %s"
2633 (unwind-protect
2634 (progn
2635 (setq default-directory odefault)
2636 (if (eq 0 (apply 'call-process
2637 (expand-file-name "rcs2log"
2638 exec-directory)
2639 nil (list t tempfile) nil
2640 "-c" changelog
2641 "-u" (concat login-name
2642 "\t" full-name
2643 "\t" mailing-address)
2644 (mapcar
2645 (lambda (f)
2646 (file-relative-name
2647 (expand-file-name f odefault)))
2648 files)))
2649 "done"
2650 (pop-to-buffer (get-buffer-create "*vc*"))
2651 (erase-buffer)
2652 (insert-file-contents tempfile)
2653 "failed"))
2654 (setq default-directory (file-name-directory changelog))
2655 (delete-file tempfile)))))
2657 (defun vc-default-find-revision (backend file rev buffer)
2658 "Provide the new `find-revision' op based on the old `checkout' op.
2659 This is only for compatibility with old backends. They should be updated
2660 to provide the `find-revision' operation instead."
2661 (let ((tmpfile (make-temp-file (expand-file-name file))))
2662 (unwind-protect
2663 (progn
2664 (vc-call-backend backend 'checkout file nil rev tmpfile)
2665 (with-current-buffer buffer
2666 (insert-file-contents-literally tmpfile)))
2667 (delete-file tmpfile))))
2669 (defun vc-default-prettify-state-info (backend file)
2670 (let* ((state (vc-state file))
2671 (statestring
2672 (cond
2673 ((stringp state) (concat "(" state ")"))
2674 ((eq state 'edited) "(modified)")
2675 ((eq state 'needs-merge) "(merge)")
2676 ((eq state 'needs-update) "(update)")
2677 ((eq state 'added) "(added)")
2678 ((eq state 'removed) "(removed)")
2679 ((eq state 'ignored) "(ignored)")
2680 ((eq state 'unregistered) "?")
2681 ((eq state 'unlocked-changes) "(stale)")
2682 ((not state) "(unknown)")))
2683 (buffer
2684 (get-file-buffer file))
2685 (modflag
2686 (if (and buffer (buffer-modified-p buffer)) "+" "")))
2687 (concat statestring modflag)))
2689 (defun vc-default-rename-file (backend old new)
2690 (condition-case nil
2691 (add-name-to-file old new)
2692 (error (rename-file old new)))
2693 (vc-delete-file old)
2694 (with-current-buffer (find-file-noselect new)
2695 (vc-register)))
2697 (defalias 'vc-default-check-headers 'ignore)
2699 (defun vc-default-log-view-mode (backend) (log-view-mode))
2701 (defun vc-default-show-log-entry (backend rev)
2702 (with-no-warnings
2703 (log-view-goto-rev rev)))
2705 (defun vc-default-comment-history (backend file)
2706 "Return a string with all log entries stored in BACKEND for FILE."
2707 (when (vc-find-backend-function backend 'print-log)
2708 (with-current-buffer "*vc*"
2709 (vc-call print-log (list file))
2710 (vc-call-backend backend 'wash-log)
2711 (buffer-string))))
2713 (defun vc-default-receive-file (backend file rev)
2714 "Let BACKEND receive FILE from another version control system."
2715 (vc-call-backend backend 'register file rev ""))
2717 (defun vc-default-create-snapshot (backend dir name branchp)
2718 (when branchp
2719 (error "VC backend %s does not support module branches" backend))
2720 (let ((result (vc-snapshot-precondition dir)))
2721 (if (stringp result)
2722 (error "File %s is not up-to-date" result)
2723 (vc-file-tree-walk
2725 (lambda (f)
2726 (vc-call assign-name f name))))))
2728 (defun vc-default-retrieve-snapshot (backend dir name update)
2729 (if (string= name "")
2730 (progn
2731 (vc-file-tree-walk
2733 (lambda (f) (and
2734 (vc-up-to-date-p f)
2735 (vc-error-occurred
2736 (vc-call checkout f nil "")
2737 (when update (vc-resynch-buffer f t t)))))))
2738 (let ((result (vc-snapshot-precondition dir)))
2739 (if (stringp result)
2740 (error "File %s is locked" result)
2741 (setq update (and (eq result 'visited) update))
2742 (vc-file-tree-walk
2744 (lambda (f) (vc-error-occurred
2745 (vc-call checkout f nil name)
2746 (when update (vc-resynch-buffer f t t)))))))))
2748 (defun vc-default-revert (backend file contents-done)
2749 (unless contents-done
2750 (let ((rev (vc-working-revision file))
2751 (file-buffer (or (get-file-buffer file) (current-buffer))))
2752 (message "Checking out %s..." file)
2753 (let ((failed t)
2754 (backup-name (car (find-backup-file-name file))))
2755 (when backup-name
2756 (copy-file file backup-name 'ok-if-already-exists 'keep-date)
2757 (unless (file-writable-p file)
2758 (set-file-modes file (logior (file-modes file) 128))))
2759 (unwind-protect
2760 (let ((coding-system-for-read 'no-conversion)
2761 (coding-system-for-write 'no-conversion))
2762 (with-temp-file file
2763 (let ((outbuf (current-buffer)))
2764 ;; Change buffer to get local value of vc-checkout-switches.
2765 (with-current-buffer file-buffer
2766 (let ((default-directory (file-name-directory file)))
2767 (vc-call find-revision file rev outbuf)))))
2768 (setq failed nil))
2769 (when backup-name
2770 (if failed
2771 (rename-file backup-name file 'ok-if-already-exists)
2772 (and (not vc-make-backup-files) (delete-file backup-name))))))
2773 (message "Checking out %s...done" file))))
2775 (defalias 'vc-default-revision-completion-table 'ignore)
2777 (defun vc-default-dir-status-files (backend dir files default-state update-function)
2778 (funcall update-function
2779 (mapcar (lambda (file) (list file default-state)) files)))
2781 (defun vc-check-headers ()
2782 "Check if the current file has any headers in it."
2783 (interactive)
2784 (vc-call-backend (vc-backend buffer-file-name) 'check-headers))
2786 ;;; Annotate functionality
2788 ;; Declare globally instead of additional parameter to
2789 ;; temp-buffer-show-function (not possible to pass more than one
2790 ;; parameter). The use of annotate-ratio is deprecated in favor of
2791 ;; annotate-mode, which replaces it with the more sensible "span-to
2792 ;; days", along with autoscaling support.
2793 (defvar vc-annotate-ratio nil "Global variable.")
2795 ;; internal buffer-local variables
2796 (defvar vc-annotate-backend nil)
2797 (defvar vc-annotate-parent-file nil)
2798 (defvar vc-annotate-parent-rev nil)
2799 (defvar vc-annotate-parent-display-mode nil)
2801 (defconst vc-annotate-font-lock-keywords
2802 ;; The fontification is done by vc-annotate-lines instead of font-lock.
2803 '((vc-annotate-lines)))
2805 (define-derived-mode vc-annotate-mode fundamental-mode "Annotate"
2806 "Major mode for output buffers of the `vc-annotate' command.
2808 You can use the mode-specific menu to alter the time-span of the used
2809 colors. See variable `vc-annotate-menu-elements' for customizing the
2810 menu items."
2811 ;; Frob buffer-invisibility-spec so that if it is originally a naked t,
2812 ;; it will become a list, to avoid initial annotations being invisible.
2813 (add-to-invisibility-spec 'foo)
2814 (remove-from-invisibility-spec 'foo)
2815 (set (make-local-variable 'truncate-lines) t)
2816 (set (make-local-variable 'font-lock-defaults)
2817 '(vc-annotate-font-lock-keywords t))
2818 (view-mode 1))
2820 (defun vc-annotate-toggle-annotation-visibility ()
2821 "Toggle whether or not the annotation is visible."
2822 (interactive)
2823 (funcall (if (memq 'vc-annotate-annotation buffer-invisibility-spec)
2824 'remove-from-invisibility-spec
2825 'add-to-invisibility-spec)
2826 'vc-annotate-annotation)
2827 (force-window-update (current-buffer)))
2829 (defun vc-annotate-display-default (ratio)
2830 "Display the output of \\[vc-annotate] using the default color range.
2831 The color range is given by `vc-annotate-color-map', scaled by RATIO.
2832 The current time is used as the offset."
2833 (interactive (progn (kill-local-variable 'vc-annotate-color-map) '(1.0)))
2834 (message "Redisplaying annotation...")
2835 (vc-annotate-display ratio)
2836 (message "Redisplaying annotation...done"))
2838 (defun vc-annotate-oldest-in-map (color-map)
2839 "Return the oldest time in the COLOR-MAP."
2840 ;; Since entries should be sorted, we can just use the last one.
2841 (caar (last color-map)))
2843 (defun vc-annotate-get-time-set-line-props ()
2844 (let ((bol (point))
2845 (date (vc-call-backend vc-annotate-backend 'annotate-time))
2846 (inhibit-read-only t))
2847 (assert (>= (point) bol))
2848 (put-text-property bol (point) 'invisible 'vc-annotate-annotation)
2849 date))
2851 (defun vc-annotate-display-autoscale (&optional full)
2852 "Highlight the output of \\[vc-annotate] using an autoscaled color map.
2853 Autoscaling means that the map is scaled from the current time to the
2854 oldest annotation in the buffer, or, with prefix argument FULL, to
2855 cover the range from the oldest annotation to the newest."
2856 (interactive "P")
2857 (let ((newest 0.0)
2858 (oldest 999999.) ;Any CVS users at the founding of Rome?
2859 (current (vc-annotate-convert-time (current-time)))
2860 date)
2861 (message "Redisplaying annotation...")
2862 ;; Run through this file and find the oldest and newest dates annotated.
2863 (save-excursion
2864 (goto-char (point-min))
2865 (while (not (eobp))
2866 (when (setq date (vc-annotate-get-time-set-line-props))
2867 (when (> date newest)
2868 (setq newest date))
2869 (when (< date oldest)
2870 (setq oldest date)))
2871 (forward-line 1)))
2872 (vc-annotate-display
2873 (/ (- (if full newest current) oldest)
2874 (vc-annotate-oldest-in-map vc-annotate-color-map))
2875 (if full newest))
2876 (message "Redisplaying annotation...done \(%s\)"
2877 (if full
2878 (format "Spanned from %.1f to %.1f days old"
2879 (- current oldest)
2880 (- current newest))
2881 (format "Spanned to %.1f days old" (- current oldest))))))
2883 ;; Menu -- Using easymenu.el
2884 (easy-menu-define vc-annotate-mode-menu vc-annotate-mode-map
2885 "VC Annotate Display Menu"
2886 `("VC-Annotate"
2887 ["By Color Map Range" (unless (null vc-annotate-display-mode)
2888 (setq vc-annotate-display-mode nil)
2889 (vc-annotate-display-select))
2890 :style toggle :selected (null vc-annotate-display-mode)]
2891 ,@(let ((oldest-in-map (vc-annotate-oldest-in-map vc-annotate-color-map)))
2892 (mapcar (lambda (element)
2893 (let ((days (* element oldest-in-map)))
2894 `[,(format "Span %.1f days" days)
2895 (vc-annotate-display-select nil ,days)
2896 :style toggle :selected
2897 (eql vc-annotate-display-mode ,days) ]))
2898 vc-annotate-menu-elements))
2899 ["Span ..."
2900 (vc-annotate-display-select
2901 nil (float (string-to-number (read-string "Span how many days? "))))]
2902 "--"
2903 ["Span to Oldest"
2904 (unless (eq vc-annotate-display-mode 'scale)
2905 (vc-annotate-display-select nil 'scale))
2906 :help
2907 "Use an autoscaled color map from the oldest annotation to the current time"
2908 :style toggle :selected
2909 (eq vc-annotate-display-mode 'scale)]
2910 ["Span Oldest->Newest"
2911 (unless (eq vc-annotate-display-mode 'fullscale)
2912 (vc-annotate-display-select nil 'fullscale))
2913 :help
2914 "Use an autoscaled color map from the oldest to the newest annotation"
2915 :style toggle :selected
2916 (eq vc-annotate-display-mode 'fullscale)]
2917 "--"
2918 ["Toggle annotation visibility" vc-annotate-toggle-annotation-visibility
2919 :help
2920 "Toggle whether the annotation is visible or not"]
2921 ["Annotate previous revision" vc-annotate-prev-revision
2922 :help "Visit the annotation of the revision previous to this one"]
2923 ["Annotate next revision" vc-annotate-next-revision
2924 :help "Visit the annotation of the revision after this one"]
2925 ["Annotate revision at line" vc-annotate-revision-at-line
2926 :help
2927 "Visit the annotation of the revision identified in the current line"]
2928 ["Annotate revision previous to line" vc-annotate-revision-previous-to-line
2929 :help "Visit the annotation of the revision before the revision at line"]
2930 ["Annotate latest revision" vc-annotate-working-revision
2931 :help "Visit the annotation of the working revision of this file"]
2932 ["Show log of revision at line" vc-annotate-show-log-revision-at-line
2933 :help "Visit the log of the revision at line"]
2934 ["Show diff of revision at line" vc-annotate-show-diff-revision-at-line
2935 :help
2936 "Visit the diff of the revision at line from its previous revision"]
2937 ["Visit revision at line" vc-annotate-find-revision-at-line
2938 :help "Visit the revision identified in the current line"]))
2940 (defun vc-annotate-display-select (&optional buffer mode)
2941 "Highlight the output of \\[vc-annotate].
2942 By default, the current buffer is highlighted, unless overridden by
2943 BUFFER. `vc-annotate-display-mode' specifies the highlighting mode to
2944 use; you may override this using the second optional arg MODE."
2945 (interactive)
2946 (when mode (setq vc-annotate-display-mode mode))
2947 (pop-to-buffer (or buffer (current-buffer)))
2948 (cond ((null vc-annotate-display-mode)
2949 ;; The ratio is global, thus relative to the global color-map.
2950 (kill-local-variable 'vc-annotate-color-map)
2951 (vc-annotate-display-default (or vc-annotate-ratio 1.0)))
2952 ;; One of the auto-scaling modes
2953 ((eq vc-annotate-display-mode 'scale)
2954 (vc-exec-after `(vc-annotate-display-autoscale)))
2955 ((eq vc-annotate-display-mode 'fullscale)
2956 (vc-exec-after `(vc-annotate-display-autoscale t)))
2957 ((numberp vc-annotate-display-mode) ; A fixed number of days lookback
2958 (vc-annotate-display-default
2959 (/ vc-annotate-display-mode
2960 (vc-annotate-oldest-in-map vc-annotate-color-map))))
2961 (t (error "No such display mode: %s"
2962 vc-annotate-display-mode))))
2964 ;;;###autoload
2965 (defun vc-annotate (file rev &optional display-mode buf move-point-to)
2966 "Display the edit history of the current file using colors.
2968 This command creates a buffer that shows, for each line of the current
2969 file, when it was last edited and by whom. Additionally, colors are
2970 used to show the age of each line--blue means oldest, red means
2971 youngest, and intermediate colors indicate intermediate ages. By
2972 default, the time scale stretches back one year into the past;
2973 everything that is older than that is shown in blue.
2975 With a prefix argument, this command asks two questions in the
2976 minibuffer. First, you may enter a revision number; then the buffer
2977 displays and annotates that revision instead of the working revision
2978 \(type RET in the minibuffer to leave that default unchanged). Then,
2979 you are prompted for the time span in days which the color range
2980 should cover. For example, a time span of 20 days means that changes
2981 over the past 20 days are shown in red to blue, according to their
2982 age, and everything that is older than that is shown in blue.
2984 If MOVE-POINT-TO is given, move the point to that line.
2986 Customization variables:
2988 `vc-annotate-menu-elements' customizes the menu elements of the
2989 mode-specific menu. `vc-annotate-color-map' and
2990 `vc-annotate-very-old-color' define the mapping of time to colors.
2991 `vc-annotate-background' specifies the background color."
2992 (interactive
2993 (save-current-buffer
2994 (vc-ensure-vc-buffer)
2995 (list buffer-file-name
2996 (let ((def (vc-working-revision buffer-file-name)))
2997 (if (null current-prefix-arg) def
2998 (read-string
2999 (format "Annotate from revision (default %s): " def)
3000 nil nil def)))
3001 (if (null current-prefix-arg)
3002 vc-annotate-display-mode
3003 (float (string-to-number
3004 (read-string "Annotate span days (default 20): "
3005 nil nil "20")))))))
3006 (vc-ensure-vc-buffer)
3007 (setq vc-annotate-display-mode display-mode) ;Not sure why. --Stef
3008 (let* ((temp-buffer-name (format "*Annotate %s (rev %s)*" (buffer-name) rev))
3009 (temp-buffer-show-function 'vc-annotate-display-select)
3010 ;; If BUF is specified, we presume the caller maintains current line,
3011 ;; so we don't need to do it here. This implementation may give
3012 ;; strange results occasionally in the case of REV != WORKFILE-REV.
3013 (current-line (or move-point-to (unless buf (line-number-at-pos)))))
3014 (message "Annotating...")
3015 ;; If BUF is specified it tells in which buffer we should put the
3016 ;; annotations. This is used when switching annotations to another
3017 ;; revision, so we should update the buffer's name.
3018 (when buf (with-current-buffer buf
3019 (rename-buffer temp-buffer-name t)
3020 ;; In case it had to be uniquified.
3021 (setq temp-buffer-name (buffer-name))))
3022 (with-output-to-temp-buffer temp-buffer-name
3023 (vc-call annotate-command file (get-buffer temp-buffer-name) rev)
3024 ;; we must setup the mode first, and then set our local
3025 ;; variables before the show-function is called at the exit of
3026 ;; with-output-to-temp-buffer
3027 (with-current-buffer temp-buffer-name
3028 (unless (equal major-mode 'vc-annotate-mode)
3029 (vc-annotate-mode))
3030 (set (make-local-variable 'vc-annotate-backend) (vc-backend file))
3031 (set (make-local-variable 'vc-annotate-parent-file) file)
3032 (set (make-local-variable 'vc-annotate-parent-rev) rev)
3033 (set (make-local-variable 'vc-annotate-parent-display-mode)
3034 display-mode)))
3036 (with-current-buffer temp-buffer-name
3037 (vc-exec-after
3038 `(progn
3039 ;; Ideally, we'd rather not move point if the user has already
3040 ;; moved it elsewhere, but really point here is not the position
3041 ;; of the user's cursor :-(
3042 (when ,current-line ;(and (bobp))
3043 (goto-line ,current-line)
3044 (setq vc-sentinel-movepoint (point)))
3045 (unless (active-minibuffer-window)
3046 (message "Annotating... done")))))))
3048 (defun vc-annotate-prev-revision (prefix)
3049 "Visit the annotation of the revision previous to this one.
3051 With a numeric prefix argument, annotate the revision that many
3052 revisions previous."
3053 (interactive "p")
3054 (vc-annotate-warp-revision (- 0 prefix)))
3056 (defun vc-annotate-next-revision (prefix)
3057 "Visit the annotation of the revision after this one.
3059 With a numeric prefix argument, annotate the revision that many
3060 revisions after."
3061 (interactive "p")
3062 (vc-annotate-warp-revision prefix))
3064 (defun vc-annotate-working-revision ()
3065 "Visit the annotation of the working revision of this file."
3066 (interactive)
3067 (if (not (equal major-mode 'vc-annotate-mode))
3068 (message "Cannot be invoked outside of a vc annotate buffer")
3069 (let ((warp-rev (vc-working-revision vc-annotate-parent-file)))
3070 (if (equal warp-rev vc-annotate-parent-rev)
3071 (message "Already at revision %s" warp-rev)
3072 (vc-annotate-warp-revision warp-rev)))))
3074 (defun vc-annotate-extract-revision-at-line ()
3075 "Extract the revision number of the current line."
3076 ;; This function must be invoked from a buffer in vc-annotate-mode
3077 (vc-call-backend vc-annotate-backend 'annotate-extract-revision-at-line))
3079 (defun vc-annotate-revision-at-line ()
3080 "Visit the annotation of the revision identified in the current line."
3081 (interactive)
3082 (if (not (equal major-mode 'vc-annotate-mode))
3083 (message "Cannot be invoked outside of a vc annotate buffer")
3084 (let ((rev-at-line (vc-annotate-extract-revision-at-line)))
3085 (if (not rev-at-line)
3086 (message "Cannot extract revision number from the current line")
3087 (if (equal rev-at-line vc-annotate-parent-rev)
3088 (message "Already at revision %s" rev-at-line)
3089 (vc-annotate-warp-revision rev-at-line))))))
3091 (defun vc-annotate-find-revision-at-line ()
3092 "Visit the revision identified in the current line."
3093 (interactive)
3094 (if (not (equal major-mode 'vc-annotate-mode))
3095 (message "Cannot be invoked outside of a vc annotate buffer")
3096 (let ((rev-at-line (vc-annotate-extract-revision-at-line)))
3097 (if (not rev-at-line)
3098 (message "Cannot extract revision number from the current line")
3099 (vc-revision-other-window rev-at-line)))))
3101 (defun vc-annotate-revision-previous-to-line ()
3102 "Visit the annotation of the revision before the revision at line."
3103 (interactive)
3104 (if (not (equal major-mode 'vc-annotate-mode))
3105 (message "Cannot be invoked outside of a vc annotate buffer")
3106 (let ((rev-at-line (vc-annotate-extract-revision-at-line))
3107 (prev-rev nil))
3108 (if (not rev-at-line)
3109 (message "Cannot extract revision number from the current line")
3110 (setq prev-rev
3111 (vc-call previous-revision vc-annotate-parent-file rev-at-line))
3112 (vc-annotate-warp-revision prev-rev)))))
3114 (defun vc-annotate-show-log-revision-at-line ()
3115 "Visit the log of the revision at line."
3116 (interactive)
3117 (if (not (equal major-mode 'vc-annotate-mode))
3118 (message "Cannot be invoked outside of a vc annotate buffer")
3119 (let ((rev-at-line (vc-annotate-extract-revision-at-line)))
3120 (if (not rev-at-line)
3121 (message "Cannot extract revision number from the current line")
3122 (vc-print-log rev-at-line)))))
3124 (defun vc-annotate-show-diff-revision-at-line ()
3125 "Visit the diff of the revision at line from its previous revision."
3126 (interactive)
3127 (if (not (equal major-mode 'vc-annotate-mode))
3128 (message "Cannot be invoked outside of a vc annotate buffer")
3129 (let ((rev-at-line (vc-annotate-extract-revision-at-line))
3130 (prev-rev nil))
3131 (if (not rev-at-line)
3132 (message "Cannot extract revision number from the current line")
3133 (setq prev-rev
3134 (vc-call previous-revision vc-annotate-parent-file rev-at-line))
3135 (if (not prev-rev)
3136 (message "Cannot diff from any revision prior to %s" rev-at-line)
3137 (save-window-excursion
3138 (vc-diff-internal
3140 (cons (vc-backend vc-annotate-parent-file)
3141 (list vc-annotate-parent-file))
3142 prev-rev rev-at-line))
3143 (switch-to-buffer "*vc-diff*"))))))
3145 (defun vc-annotate-warp-revision (revspec)
3146 "Annotate the revision described by REVSPEC.
3148 If REVSPEC is a positive integer, warp that many revisions
3149 forward, if possible, otherwise echo a warning message. If
3150 REVSPEC is a negative integer, warp that many revisions backward,
3151 if possible, otherwise echo a warning message. If REVSPEC is a
3152 string, then it describes a revision number, so warp to that
3153 revision."
3154 (if (not (equal major-mode 'vc-annotate-mode))
3155 (message "Cannot be invoked outside of a vc annotate buffer")
3156 (let* ((buf (current-buffer))
3157 (oldline (line-number-at-pos))
3158 (revspeccopy revspec)
3159 (newrev nil))
3160 (cond
3161 ((and (integerp revspec) (> revspec 0))
3162 (setq newrev vc-annotate-parent-rev)
3163 (while (and (> revspec 0) newrev)
3164 (setq newrev (vc-call next-revision
3165 vc-annotate-parent-file newrev))
3166 (setq revspec (1- revspec)))
3167 (unless newrev
3168 (message "Cannot increment %d revisions from revision %s"
3169 revspeccopy vc-annotate-parent-rev)))
3170 ((and (integerp revspec) (< revspec 0))
3171 (setq newrev vc-annotate-parent-rev)
3172 (while (and (< revspec 0) newrev)
3173 (setq newrev (vc-call previous-revision
3174 vc-annotate-parent-file newrev))
3175 (setq revspec (1+ revspec)))
3176 (unless newrev
3177 (message "Cannot decrement %d revisions from revision %s"
3178 (- 0 revspeccopy) vc-annotate-parent-rev)))
3179 ((stringp revspec) (setq newrev revspec))
3180 (t (error "Invalid argument to vc-annotate-warp-revision")))
3181 (when newrev
3182 (vc-annotate vc-annotate-parent-file newrev
3183 vc-annotate-parent-display-mode
3185 ;; Pass the current line so that vc-annotate will
3186 ;; place the point in the line.
3187 (min oldline (progn (goto-char (point-max))
3188 (forward-line -1)
3189 (line-number-at-pos))))))))
3191 (defun vc-annotate-compcar (threshold a-list)
3192 "Test successive cons cells of A-LIST against THRESHOLD.
3193 Return the first cons cell with a car that is not less than THRESHOLD,
3194 nil if no such cell exists."
3195 (let ((i 1)
3196 (tmp-cons (car a-list)))
3197 (while (and tmp-cons (< (car tmp-cons) threshold))
3198 (setq tmp-cons (car (nthcdr i a-list)))
3199 (setq i (+ i 1)))
3200 tmp-cons)) ; Return the appropriate value
3202 (defun vc-annotate-convert-time (time)
3203 "Convert a time value to a floating-point number of days.
3204 The argument TIME is a list as returned by `current-time' or
3205 `encode-time', only the first two elements of that list are considered."
3206 (/ (+ (* (float (car time)) (lsh 1 16)) (cadr time)) 24 3600))
3208 (defun vc-annotate-difference (&optional offset)
3209 "Return the time span in days to the next annotation.
3210 This calls the backend function annotate-time, and returns the
3211 difference in days between the time returned and the current time,
3212 or OFFSET if present."
3213 (let ((next-time (vc-annotate-get-time-set-line-props)))
3214 (when next-time
3215 (- (or offset
3216 (vc-call-backend vc-annotate-backend 'annotate-current-time))
3217 next-time))))
3219 (defun vc-default-annotate-current-time (backend)
3220 "Return the current time, encoded as fractional days."
3221 (vc-annotate-convert-time (current-time)))
3223 (defvar vc-annotate-offset nil)
3225 (defun vc-annotate-display (ratio &optional offset)
3226 "Highlight `vc-annotate' output in the current buffer.
3227 RATIO, is the expansion that should be applied to `vc-annotate-color-map'.
3228 The annotations are relative to the current time, unless overridden by OFFSET."
3229 (when (/= ratio 1.0)
3230 (set (make-local-variable 'vc-annotate-color-map)
3231 (mapcar (lambda (elem) (cons (* (car elem) ratio) (cdr elem)))
3232 vc-annotate-color-map)))
3233 (set (make-local-variable 'vc-annotate-offset) offset)
3234 (font-lock-mode 1))
3236 (defun vc-annotate-lines (limit)
3237 (while (< (point) limit)
3238 (let ((difference (vc-annotate-difference vc-annotate-offset))
3239 (start (point))
3240 (end (progn (forward-line 1) (point))))
3241 (when difference
3242 (let* ((color (or (vc-annotate-compcar difference vc-annotate-color-map)
3243 (cons nil vc-annotate-very-old-color)))
3244 ;; substring from index 1 to remove any leading `#' in the name
3245 (face-name (concat "vc-annotate-face-"
3246 (if (string-equal
3247 (substring (cdr color) 0 1) "#")
3248 (substring (cdr color) 1)
3249 (cdr color))))
3250 ;; Make the face if not done.
3251 (face (or (intern-soft face-name)
3252 (let ((tmp-face (make-face (intern face-name))))
3253 (set-face-foreground tmp-face (cdr color))
3254 (when vc-annotate-background
3255 (set-face-background tmp-face
3256 vc-annotate-background))
3257 tmp-face)))) ; Return the face
3258 (put-text-property start end 'face face)))))
3259 ;; Pretend to font-lock there were no matches.
3260 nil)
3263 ;; Set up key bindings for use while editing log messages
3265 (defun vc-log-edit (fileset)
3266 "Set up `log-edit' for use with VC on FILE."
3267 (setq default-directory
3268 (with-current-buffer vc-parent-buffer default-directory))
3269 (log-edit 'vc-finish-logentry
3271 `((log-edit-listfun . (lambda () ',fileset))
3272 (log-edit-diff-function . (lambda () (vc-diff nil)))))
3273 (set (make-local-variable 'vc-log-fileset) fileset)
3274 (make-local-variable 'vc-log-revision)
3275 (set-buffer-modified-p nil)
3276 (setq buffer-file-name nil))
3278 ;; These things should probably be generally available
3280 (defun vc-file-tree-walk (dirname func &rest args)
3281 "Walk recursively through DIRNAME.
3282 Invoke FUNC f ARGS on each VC-managed file f underneath it."
3283 (vc-file-tree-walk-internal (expand-file-name dirname) func args)
3284 (message "Traversing directory %s...done" dirname))
3286 (defun vc-file-tree-walk-internal (file func args)
3287 (if (not (file-directory-p file))
3288 (when (vc-backend file) (apply func file args))
3289 (message "Traversing directory %s..." (abbreviate-file-name file))
3290 (let ((dir (file-name-as-directory file)))
3291 (mapcar
3292 (lambda (f) (or
3293 (string-equal f ".")
3294 (string-equal f "..")
3295 (member f vc-directory-exclusion-list)
3296 (let ((dirf (expand-file-name f dir)))
3298 (file-symlink-p dirf) ;; Avoid possible loops.
3299 (vc-file-tree-walk-internal dirf func args)))))
3300 (directory-files dir)))))
3302 (provide 'vc)
3304 ;; DEVELOPER'S NOTES ON CONCURRENCY PROBLEMS IN THIS CODE
3306 ;; These may be useful to anyone who has to debug or extend the package.
3307 ;; (Note that this information corresponds to versions 5.x. Some of it
3308 ;; might have been invalidated by the additions to support branching
3309 ;; and RCS keyword lookup. AS, 1995/03/24)
3311 ;; A fundamental problem in VC is that there are time windows between
3312 ;; vc-next-action's computations of the file's version-control state and
3313 ;; the actions that change it. This is a window open to lossage in a
3314 ;; multi-user environment; someone else could nip in and change the state
3315 ;; of the master during it.
3317 ;; The performance problem is that rlog/prs calls are very expensive; we want
3318 ;; to avoid them as much as possible.
3320 ;; ANALYSIS:
3322 ;; The performance problem, it turns out, simplifies in practice to the
3323 ;; problem of making vc-state fast. The two other functions that call
3324 ;; prs/rlog will not be so commonly used that the slowdown is a problem; one
3325 ;; makes snapshots, the other deletes the calling user's last change in the
3326 ;; master.
3328 ;; The race condition implies that we have to either (a) lock the master
3329 ;; during the entire execution of vc-next-action, or (b) detect and
3330 ;; recover from errors resulting from dispatch on an out-of-date state.
3332 ;; Alternative (a) appears to be infeasible. The problem is that we can't
3333 ;; guarantee that the lock will ever be removed. Suppose a user starts a
3334 ;; checkin, the change message buffer pops up, and the user, having wandered
3335 ;; off to do something else, simply forgets about it?
3337 ;; Alternative (b), on the other hand, works well with a cheap way to speed up
3338 ;; vc-state. Usually, if a file is registered, we can read its locked/
3339 ;; unlocked state and its current owner from its permissions.
3341 ;; This shortcut will fail if someone has manually changed the workfile's
3342 ;; permissions; also if developers are munging the workfile in several
3343 ;; directories, with symlinks to a master (in this latter case, the
3344 ;; permissions shortcut will fail to detect a lock asserted from another
3345 ;; directory).
3347 ;; Note that these cases correspond exactly to the errors which could happen
3348 ;; because of a competing checkin/checkout race in between two instances of
3349 ;; vc-next-action.
3351 ;; For VC's purposes, a workfile/master pair may have the following states:
3353 ;; A. Unregistered. There is a workfile, there is no master.
3355 ;; B. Registered and not locked by anyone.
3357 ;; C. Locked by calling user and unchanged.
3359 ;; D. Locked by the calling user and changed.
3361 ;; E. Locked by someone other than the calling user.
3363 ;; This makes for 25 states and 20 error conditions. Here's the matrix:
3365 ;; VC's idea of state
3366 ;; |
3367 ;; V Actual state RCS action SCCS action Effect
3368 ;; A B C D E
3369 ;; A . 1 2 3 4 ci -u -t- admin -fb -i<file> initial admin
3370 ;; B 5 . 6 7 8 co -l get -e checkout
3371 ;; C 9 10 . 11 12 co -u unget; get revert
3372 ;; D 13 14 15 . 16 ci -u -m<comment> delta -y<comment>; get checkin
3373 ;; E 17 18 19 20 . rcs -u -M -l unget -n ; get -g steal lock
3375 ;; All commands take the master file name as a last argument (not shown).
3377 ;; In the discussion below, a "self-race" is a pathological situation in
3378 ;; which VC operations are being attempted simultaneously by two or more
3379 ;; Emacsen running under the same username.
3381 ;; The vc-next-action code has the following windows:
3383 ;; Window P:
3384 ;; Between the check for existence of a master file and the call to
3385 ;; admin/checkin in vc-buffer-admin (apparent state A). This window may
3386 ;; never close if the initial-comment feature is on.
3388 ;; Window Q:
3389 ;; Between the call to vc-workfile-unchanged-p in and the immediately
3390 ;; following revert (apparent state C).
3392 ;; Window R:
3393 ;; Between the call to vc-workfile-unchanged-p in and the following
3394 ;; checkin (apparent state D). This window may never close.
3396 ;; Window S:
3397 ;; Between the unlock and the immediately following checkout during a
3398 ;; revert operation (apparent state C). Included in window Q.
3400 ;; Window T:
3401 ;; Between vc-state and the following checkout (apparent state B).
3403 ;; Window U:
3404 ;; Between vc-state and the following revert (apparent state C).
3405 ;; Includes windows Q and S.
3407 ;; Window V:
3408 ;; Between vc-state and the following checkin (apparent state
3409 ;; D). This window may never be closed if the user fails to complete the
3410 ;; checkin message. Includes window R.
3412 ;; Window W:
3413 ;; Between vc-state and the following steal-lock (apparent
3414 ;; state E). This window may never close if the user fails to complete
3415 ;; the steal-lock message. Includes window X.
3417 ;; Window X:
3418 ;; Between the unlock and the immediately following re-lock during a
3419 ;; steal-lock operation (apparent state E). This window may never close
3420 ;; if the user fails to complete the steal-lock message.
3422 ;; Errors:
3424 ;; Apparent state A ---
3426 ;; 1. File looked unregistered but is actually registered and not locked.
3428 ;; Potential cause: someone else's admin during window P, with
3429 ;; caller's admin happening before their checkout.
3431 ;; RCS: Prior to version 5.6.4, ci fails with message
3432 ;; "no lock set by <user>". From 5.6.4 onwards, VC uses the new
3433 ;; ci -i option and the message is "<file>,v: already exists".
3434 ;; SCCS: admin will fail with error (ad19).
3436 ;; We can let these errors be passed up to the user.
3438 ;; 2. File looked unregistered but is actually locked by caller, unchanged.
3440 ;; Potential cause: self-race during window P.
3442 ;; RCS: Prior to version 5.6.4, reverts the file to the last saved
3443 ;; version and unlocks it. From 5.6.4 onwards, VC uses the new
3444 ;; ci -i option, failing with message "<file>,v: already exists".
3445 ;; SCCS: will fail with error (ad19).
3447 ;; Either of these consequences is acceptable.
3449 ;; 3. File looked unregistered but is actually locked by caller, changed.
3451 ;; Potential cause: self-race during window P.
3453 ;; RCS: Prior to version 5.6.4, VC registers the caller's workfile as
3454 ;; a delta with a null change comment (the -t- switch will be
3455 ;; ignored). From 5.6.4 onwards, VC uses the new ci -i option,
3456 ;; failing with message "<file>,v: already exists".
3457 ;; SCCS: will fail with error (ad19).
3459 ;; 4. File looked unregistered but is locked by someone else.
3461 ;; Potential cause: someone else's admin during window P, with
3462 ;; caller's admin happening *after* their checkout.
3464 ;; RCS: Prior to version 5.6.4, ci fails with a
3465 ;; "no lock set by <user>" message. From 5.6.4 onwards,
3466 ;; VC uses the new ci -i option, failing with message
3467 ;; "<file>,v: already exists".
3468 ;; SCCS: will fail with error (ad19).
3470 ;; We can let these errors be passed up to the user.
3472 ;; Apparent state B ---
3474 ;; 5. File looked registered and not locked, but is actually unregistered.
3476 ;; Potential cause: master file got nuked during window P.
3478 ;; RCS: will fail with "RCS/<file>: No such file or directory"
3479 ;; SCCS: will fail with error ut4.
3481 ;; We can let these errors be passed up to the user.
3483 ;; 6. File looked registered and not locked, but is actually locked by the
3484 ;; calling user and unchanged.
3486 ;; Potential cause: self-race during window T.
3488 ;; RCS: in the same directory as the previous workfile, co -l will fail
3489 ;; with "co error: writable foo exists; checkout aborted". In any other
3490 ;; directory, checkout will succeed.
3491 ;; SCCS: will fail with ge17.
3493 ;; Either of these consequences is acceptable.
3495 ;; 7. File looked registered and not locked, but is actually locked by the
3496 ;; calling user and changed.
3498 ;; As case 6.
3500 ;; 8. File looked registered and not locked, but is actually locked by another
3501 ;; user.
3503 ;; Potential cause: someone else checks it out during window T.
3505 ;; RCS: co error: revision 1.3 already locked by <user>
3506 ;; SCCS: fails with ge4 (in directory) or ut7 (outside it).
3508 ;; We can let these errors be passed up to the user.
3510 ;; Apparent state C ---
3512 ;; 9. File looks locked by calling user and unchanged, but is unregistered.
3514 ;; As case 5.
3516 ;; 10. File looks locked by calling user and unchanged, but is actually not
3517 ;; locked.
3519 ;; Potential cause: a self-race in window U, or by the revert's
3520 ;; landing during window X of some other user's steal-lock or window S
3521 ;; of another user's revert.
3523 ;; RCS: succeeds, refreshing the file from the identical version in
3524 ;; the master.
3525 ;; SCCS: fails with error ut4 (p file nonexistent).
3527 ;; Either of these consequences is acceptable.
3529 ;; 11. File is locked by calling user. It looks unchanged, but is actually
3530 ;; changed.
3532 ;; Potential cause: the file would have to be touched by a self-race
3533 ;; during window Q.
3535 ;; The revert will succeed, removing whatever changes came with
3536 ;; the touch. It is theoretically possible that work could be lost.
3538 ;; 12. File looks like it's locked by the calling user and unchanged, but
3539 ;; it's actually locked by someone else.
3541 ;; Potential cause: a steal-lock in window V.
3543 ;; RCS: co error: revision <rev> locked by <user>; use co -r or rcs -u
3544 ;; SCCS: fails with error un2
3546 ;; We can pass these errors up to the user.
3548 ;; Apparent state D ---
3550 ;; 13. File looks like it's locked by the calling user and changed, but it's
3551 ;; actually unregistered.
3553 ;; Potential cause: master file got nuked during window P.
3555 ;; RCS: Prior to version 5.6.4, checks in the user's version as an
3556 ;; initial delta. From 5.6.4 onwards, VC uses the new ci -j
3557 ;; option, failing with message "no such file or directory".
3558 ;; SCCS: will fail with error ut4.
3560 ;; This case is kind of nasty. Under RCS prior to version 5.6.4,
3561 ;; VC may fail to detect the loss of previous version information.
3563 ;; 14. File looks like it's locked by the calling user and changed, but it's
3564 ;; actually unlocked.
3566 ;; Potential cause: self-race in window V, or the checkin happening
3567 ;; during the window X of someone else's steal-lock or window S of
3568 ;; someone else's revert.
3570 ;; RCS: ci will fail with "no lock set by <user>".
3571 ;; SCCS: delta will fail with error ut4.
3573 ;; 15. File looks like it's locked by the calling user and changed, but it's
3574 ;; actually locked by the calling user and unchanged.
3576 ;; Potential cause: another self-race --- a whole checkin/checkout
3577 ;; sequence by the calling user would have to land in window R.
3579 ;; SCCS: checks in a redundant delta and leaves the file unlocked as usual.
3580 ;; RCS: reverts to the file state as of the second user's checkin, leaving
3581 ;; the file unlocked.
3583 ;; It is theoretically possible that work could be lost under RCS.
3585 ;; 16. File looks like it's locked by the calling user and changed, but it's
3586 ;; actually locked by a different user.
3588 ;; RCS: ci error: no lock set by <user>
3589 ;; SCCS: unget will fail with error un2
3591 ;; We can pass these errors up to the user.
3593 ;; Apparent state E ---
3595 ;; 17. File looks like it's locked by some other user, but it's actually
3596 ;; unregistered.
3598 ;; As case 13.
3600 ;; 18. File looks like it's locked by some other user, but it's actually
3601 ;; unlocked.
3603 ;; Potential cause: someone released a lock during window W.
3605 ;; RCS: The calling user will get the lock on the file.
3606 ;; SCCS: unget -n will fail with cm4.
3608 ;; Either of these consequences will be OK.
3610 ;; 19. File looks like it's locked by some other user, but it's actually
3611 ;; locked by the calling user and unchanged.
3613 ;; Potential cause: the other user relinquishing a lock followed by
3614 ;; a self-race, both in window W.
3616 ;; Under both RCS and SCCS, both unlock and lock will succeed, making
3617 ;; the sequence a no-op.
3619 ;; 20. File looks like it's locked by some other user, but it's actually
3620 ;; locked by the calling user and changed.
3622 ;; As case 19.
3624 ;; PROBLEM CASES:
3626 ;; In order of decreasing severity:
3628 ;; Cases 11 and 15 are the only ones that potentially lose work.
3629 ;; They would require a self-race for this to happen.
3631 ;; Case 13 in RCS loses information about previous deltas, retaining
3632 ;; only the information in the current workfile. This can only happen
3633 ;; if the master file gets nuked in window P.
3635 ;; Case 3 in RCS and case 15 under SCCS insert a redundant delta with
3636 ;; no change comment in the master. This would require a self-race in
3637 ;; window P or R respectively.
3639 ;; Cases 2, 10, 19 and 20 do extra work, but make no changes.
3641 ;; Unfortunately, it appears to me that no recovery is possible in these
3642 ;; cases. They don't yield error messages, so there's no way to tell that
3643 ;; a race condition has occurred.
3645 ;; All other cases don't change either the workfile or the master, and
3646 ;; trigger command errors which the user will see.
3648 ;; Thus, there is no explicit recovery code.
3650 ;; arch-tag: ca82c1de-3091-4e26-af92-460abc6213a6
3651 ;;; vc.el ends here