Bug fixes by Juanma Barranquero. Temporarily disable the check for
[emacs.git] / lisp / vc.el
blobcf3175c05a58d772cd3a3b39b3de7dfe9c7875b9
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 Free Software Foundation, Inc.
6 ;; Author: FSF (see below for full credits)
7 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
8 ;; Keywords: tools
10 ;; $Id$
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software; you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation; either version 3, or (at your option)
17 ;; any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs; see the file COPYING. If not, write to the
26 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
27 ;; Boston, MA 02110-1301, USA.
29 ;;; Credits:
31 ;; VC was initially designed and implemented by Eric S. Raymond
32 ;; <esr@thyrsus.com> in 1992. Over the years, many other people have
33 ;; contributed substantial amounts of work to VC. These include:
35 ;; Per Cederqvist <ceder@lysator.liu.se>
36 ;; Paul Eggert <eggert@twinsun.com>
37 ;; Sebastian Kremer <sk@thp.uni-koeln.de>
38 ;; Martin Lorentzson <martinl@gnu.org>
39 ;; Dave Love <fx@gnu.org>
40 ;; Stefan Monnier <monnier@cs.yale.edu>
41 ;; J.D. Smith <jdsmith@alum.mit.edu>
42 ;; Andre Spiegel <spiegel@gnu.org>
43 ;; Richard Stallman <rms@gnu.org>
44 ;; Thien-Thi Nguyen <ttn@gnu.org>
46 ;; In July 2007 ESR returned and redesigned the mode to cope better
47 ;; with modern version-control systems that do commits by fileset
48 ;; rather than per individual file.
50 ;; Features in the new version:
51 ;; * Key commands (vc-next-action = C-x v v, vc-print-log = C-x v l, vc-revert
52 ;; = C-x v u, vc-rollback = C-x v c, vc-diff = C-x v =, vc-update = C-x v +)
53 ;; now operate on filesets rather than individual files.
54 ;; * The fileset for a command is either (a) all marked files in VC-dired
55 ;; mode, (b) the currently visited file if it's under version control,
56 ;; or (c) the current directory if the visited buffer is not under
57 ;; version control and a wildcarding-enable flag has been set.
59 ;; If you maintain a client of the mode or customize it in your .emacs,
60 ;; note that some backend functions which formerly took single file arguments
61 ;; now take a list of files. These include: register, checkin, print-log,
62 ;; rollback, and diff.
64 ;;; Commentary:
66 ;; This mode is fully documented in the Emacs user's manual.
68 ;; Supported version-control systems presently include CVS, RCS, GNU
69 ;; Arch, Subversion, Bzr, Git, Mercurial, Meta-CVS, Monotone and SCCS
70 ;; (or its free replacement, CSSC).
72 ;; Some features will not work with old RCS versions. Where
73 ;; appropriate, VC finds out which version you have, and allows or
74 ;; disallows those features (stealing locks, for example, works only
75 ;; from 5.6.2 onwards).
76 ;; Even initial checkins will fail if your RCS version is so old that ci
77 ;; doesn't understand -t-; this has been known to happen to people running
78 ;; NExTSTEP 3.0.
80 ;; You can support the RCS -x option by customizing vc-rcs-master-templates.
82 ;; Proper function of the SCCS diff commands requires the shellscript vcdiff
83 ;; to be installed somewhere on Emacs's path for executables.
85 ;; If your site uses the ChangeLog convention supported by Emacs, the
86 ;; function log-edit-comment-to-change-log could prove a useful checkin hook,
87 ;; although you might prefer to use C-c C-a (i.e. log-edit-insert-changelog)
88 ;; from the commit buffer instead or to set `log-edit-setup-invert'.
90 ;; The vc code maintains some internal state in order to reduce expensive
91 ;; version-control operations to a minimum. Some names are only computed
92 ;; once. If you perform version control operations with the backend while
93 ;; vc's back is turned, or move/rename master files while vc is running,
94 ;; vc may get seriously confused. Don't do these things!
96 ;; Developer's notes on some concurrency issues are included at the end of
97 ;; the file.
99 ;; ADDING SUPPORT FOR OTHER BACKENDS
101 ;; VC can use arbitrary version control systems as a backend. To add
102 ;; support for a new backend named SYS, write a library vc-sys.el that
103 ;; contains functions of the form `vc-sys-...' (note that SYS is in lower
104 ;; case for the function and library names). VC will use that library if
105 ;; you put the symbol SYS somewhere into the list of
106 ;; `vc-handled-backends'. Then, for example, if `vc-sys-registered'
107 ;; returns non-nil for a file, all SYS-specific versions of VC commands
108 ;; will be available for that file.
110 ;; VC keeps some per-file information in the form of properties (see
111 ;; vc-file-set/getprop in vc-hooks.el). The backend-specific functions
112 ;; do not generally need to be aware of these properties. For example,
113 ;; `vc-sys-working-revision' should compute the working revision and
114 ;; return it; it should not look it up in the property, and it needn't
115 ;; store it there either. However, if a backend-specific function does
116 ;; store a value in a property, that value takes precedence over any
117 ;; value that the generic code might want to set (check for uses of
118 ;; the macro `with-vc-properties' in vc.el).
120 ;; In the list of functions below, each identifier needs to be prepended
121 ;; with `vc-sys-'. Some of the functions are mandatory (marked with a
122 ;; `*'), others are optional (`-').
124 ;; BACKEND PROPERTIES
126 ;; * revision-granularity
128 ;; Takes no arguments. Returns either 'file or 'repository. Backends
129 ;; that return 'file have per-file revision numbering; backends
130 ;; that return 'repository have per-repository revision numbering,
131 ;; so a revision level implicitly identifies a changeset
133 ;; STATE-QUERYING FUNCTIONS
135 ;; * registered (file)
137 ;; Return non-nil if FILE is registered in this backend. Both this
138 ;; function as well as `state' should be careful to fail gracefully
139 ;; in the event that the backend executable is absent. It is
140 ;; preferable that this function's body is autoloaded, that way only
141 ;; calling vc-registered does not cause the backend to be loaded
142 ;; (all the vc-FOO-registered functions are called to try to find
143 ;; the controlling backend for FILE.
145 ;; * state (file)
147 ;; Return the current version control state of FILE. For a list of
148 ;; possible values, see `vc-state'. This function should do a full and
149 ;; reliable state computation; it is usually called immediately after
150 ;; C-x v v. If you want to use a faster heuristic when visiting a
151 ;; file, put that into `state-heuristic' below.
153 ;; - state-heuristic (file)
155 ;; If provided, this function is used to estimate the version control
156 ;; state of FILE at visiting time. It should be considerably faster
157 ;; than the implementation of `state'. For a list of possible values,
158 ;; see the doc string of `vc-state'.
160 ;; - dir-state (dir)
162 ;; If provided, this function is used to find the version control state
163 ;; of all files in DIR in a fast way. The function should not return
164 ;; anything, but rather store the files' states into the corresponding
165 ;; `vc-state' properties.
167 ;; * working-revision (file)
169 ;; Return the working revision of FILE. This is the revision fetched
170 ;; by the last checkout or upate, not necessarily the same thing as the
171 ;; head or tip revision. Should return "0" for a file added but not yet
172 ;; committed.
174 ;; - latest-on-branch-p (file)
176 ;; Return non-nil if the working revision of FILE is the latest revision
177 ;; on its branch (many VCSes call this the 'tip' or 'head' revision).
178 ;; The default implementation always returns t, which means that
179 ;; working with non-current revisions is not supported by default.
181 ;; * checkout-model (file)
183 ;; Indicate whether FILE needs to be "checked out" before it can be
184 ;; edited. See `vc-checkout-model' for a list of possible values.
186 ;; - workfile-unchanged-p (file)
188 ;; Return non-nil if FILE is unchanged from the working revision.
189 ;; This function should do a brief comparison of FILE's contents
190 ;; with those of the repository master of the working revision. If
191 ;; the backend does not have such a brief-comparison feature, the
192 ;; default implementation of this function can be used, which
193 ;; delegates to a full vc-BACKEND-diff. (Note that vc-BACKEND-diff
194 ;; must not run asynchronously in this case, see variable
195 ;; `vc-disable-async-diff'.)
197 ;; - mode-line-string (file)
199 ;; If provided, this function should return the VC-specific mode
200 ;; line string for FILE. The returned string should have a
201 ;; `help-echo' property which is the text to be displayed as a
202 ;; tooltip when the mouse hovers over the VC entry on the mode-line.
203 ;; The default implementation deals well with all states that
204 ;; `vc-state' can return.
206 ;; - dired-state-info (file)
208 ;; Translate the `vc-state' property of FILE into a string that can be
209 ;; used in a vc-dired buffer. The default implementation deals well
210 ;; with all states that `vc-state' can return.
212 ;; STATE-CHANGING FUNCTIONS
214 ;; * create-repo (backend)
216 ;; Create an empty repository in the current directory and initialize
217 ;; it so VC mode can add files to it. For file-oriented systems, this
218 ;; need do no more than create a subdirectory with the right name.
220 ;; * register (files &optional rev comment)
222 ;; Register FILES in this backend. Optionally, an initial revision REV
223 ;; and an initial description of the file, COMMENT, may be specified,
224 ;; but it is not guaranteed that the backend will do anything with this.
225 ;; The implementation should pass the value of vc-register-switches
226 ;; to the backend command. (Note: in older versions of VC, this
227 ;; command took a single file argument and not a list.)
229 ;; - init-revision (file)
231 ;; The initial revision to use when registering FILE if one is not
232 ;; specified by the user. If not provided, the variable
233 ;; vc-default-init-revision is used instead.
235 ;; - responsible-p (file)
237 ;; Return non-nil if this backend considers itself "responsible" for
238 ;; FILE, which can also be a directory. This function is used to find
239 ;; out what backend to use for registration of new files and for things
240 ;; like change log generation. The default implementation always
241 ;; returns nil.
243 ;; - could-register (file)
245 ;; Return non-nil if FILE could be registered under this backend. The
246 ;; default implementation always returns t.
248 ;; - receive-file (file rev)
250 ;; Let this backend "receive" a file that is already registered under
251 ;; another backend. The default implementation simply calls `register'
252 ;; for FILE, but it can be overridden to do something more specific,
253 ;; e.g. keep revision numbers consistent or choose editing modes for
254 ;; FILE that resemble those of the other backend.
256 ;; - unregister (file)
258 ;; Unregister FILE from this backend. This is only needed if this
259 ;; backend may be used as a "more local" backend for temporary editing.
261 ;; * checkin (files rev comment)
263 ;; Commit changes in FILES to this backend. If REV is non-nil, that
264 ;; should become the new revision number (not all backends do
265 ;; anything with it). COMMENT is used as a check-in comment. The
266 ;; implementation should pass the value of vc-checkin-switches to
267 ;; the backend command. (Note: in older versions of VC, this
268 ;; command took a single file argument and not a list.)
270 ;; * find-revision (file rev buffer)
272 ;; Fetch revision REV of file FILE and put it into BUFFER.
273 ;; If REV is the empty string, fetch the head of the trunk.
274 ;; The implementation should pass the value of vc-checkout-switches
275 ;; to the backend command.
277 ;; * checkout (file &optional editable rev)
279 ;; Check out revision REV of FILE into the working area. If EDITABLE
280 ;; is non-nil, FILE should be writable by the user and if locking is
281 ;; used for FILE, a lock should also be set. If REV is non-nil, that
282 ;; is the revision to check out (default is the working revision).
283 ;; If REV is t, that means to check out the head of the current branch;
284 ;; if it is the empty string, check out the head of the trunk.
285 ;; The implementation should pass the value of vc-checkout-switches
286 ;; to the backend command.
288 ;; * revert (file &optional contents-done)
290 ;; Revert FILE back to the working revision. If optional
291 ;; arg CONTENTS-DONE is non-nil, then the contents of FILE have
292 ;; already been reverted from a version backup, and this function
293 ;; only needs to update the status of FILE within the backend.
295 ;; - rollback (files)
297 ;; Remove the tip revision of each of FILES from the repository. If
298 ;; this function is not provided, trying to cancel a revision is
299 ;; caught as an error. (Most backends don't provide it.) (Also
300 ;; note that older versions of this backend command were called
301 ;; 'cancel-version' and took a single file arg, not a list of
302 ;; files.)
304 ;; - merge (file rev1 rev2)
306 ;; Merge the changes between REV1 and REV2 into the current working file.
308 ;; - merge-news (file)
310 ;; Merge recent changes from the current branch into FILE.
312 ;; - steal-lock (file &optional revision)
314 ;; Steal any lock on the working revision of FILE, or on REVISION if
315 ;; that is provided. This function is only needed if locking is
316 ;; used for files under this backend, and if files can indeed be
317 ;; locked by other users.
319 ;; HISTORY FUNCTIONS
321 ;; * print-log (files &optional buffer)
323 ;; Insert the revision log for FILES into BUFFER, or the *vc* buffer
324 ;; if BUFFER is nil. (Note: older versions of this function expected
325 ;; only a single file argument.)
327 ;; - log-view-mode ()
329 ;; Mode to use for the output of print-log. This defaults to
330 ;; `log-view-mode' and is expected to be changed (if at all) to a derived
331 ;; mode of `log-view-mode'.
333 ;; - show-log-entry (revision)
335 ;; If provided, search the log entry for REVISION in the current buffer,
336 ;; and make sure it is displayed in the buffer's window. The default
337 ;; implementation of this function works for RCS-style logs.
339 ;; - wash-log (file)
341 ;; Remove all non-comment information from the output of print-log.
343 ;; - logentry-check ()
345 ;; If defined, this function is run to find out whether the user
346 ;; entered a valid log entry for check-in. The log entry is in the
347 ;; current buffer, and if it is not a valid one, the function should
348 ;; throw an error.
350 ;; - comment-history (file)
352 ;; Return a string containing all log entries that were made for FILE.
353 ;; This is used for transferring a file from one backend to another,
354 ;; retaining comment information. The default implementation of this
355 ;; function does this by calling print-log and then wash-log, and
356 ;; returning the resulting buffer contents as a string.
358 ;; - update-changelog (files)
360 ;; Using recent log entries, create ChangeLog entries for FILES, or for
361 ;; all files at or below the default-directory if FILES is nil. The
362 ;; default implementation runs rcs2log, which handles RCS- and
363 ;; CVS-style logs.
365 ;; * diff (files &optional rev1 rev2 buffer)
367 ;; Insert the diff for FILE into BUFFER, or the *vc-diff* buffer if
368 ;; BUFFER is nil. If REV1 and REV2 are non-nil, report differences
369 ;; from REV1 to REV2. If REV1 is nil, use the working revision (as
370 ;; found in the repository) as the older revision; if REV2 is nil,
371 ;; use the current working-copy contents as the newer revision. This
372 ;; function should pass the value of (vc-switches BACKEND 'diff) to
373 ;; the backend command. It should return a status of either 0 (no
374 ;; differences found), or 1 (either non-empty diff or the diff is
375 ;; run asynchronously).
377 ;; - revision-completion-table (file)
379 ;; Return a completion table for existing revisions of FILE.
380 ;; The default is to not use any completion table.
382 ;; - diff-tree (dir &optional rev1 rev2)
384 ;; Insert the diff for all files at and below DIR into the *vc-diff*
385 ;; buffer. The meaning of REV1 and REV2 is the same as for
386 ;; vc-BACKEND-diff. The default implementation does an explicit tree
387 ;; walk, calling vc-BACKEND-diff for each individual file.
389 ;; - annotate-command (file buf &optional rev)
391 ;; If this function is provided, it should produce an annotated display
392 ;; of FILE in BUF, relative to revision REV. Annotation means each line
393 ;; of FILE displayed is prefixed with version information associated with
394 ;; its addition (deleted lines leave no history) and that the text of the
395 ;; file is fontified according to age.
397 ;; - annotate-time ()
399 ;; Only required if `annotate-command' is defined for the backend.
400 ;; Return the time of the next line of annotation at or after point,
401 ;; as a floating point fractional number of days. The helper
402 ;; function `vc-annotate-convert-time' may be useful for converting
403 ;; multi-part times as returned by `current-time' and `encode-time'
404 ;; to this format. Return nil if no more lines of annotation appear
405 ;; in the buffer. You can safely assume that point is placed at the
406 ;; beginning of each line, starting at `point-min'. The buffer that
407 ;; point is placed in is the Annotate output, as defined by the
408 ;; relevant backend. This function also affects how much of the line
409 ;; is fontified; where it leaves point is where fontification begins.
411 ;; - annotate-current-time ()
413 ;; Only required if `annotate-command' is defined for the backend,
414 ;; AND you'd like the current time considered to be anything besides
415 ;; (vc-annotate-convert-time (current-time)) -- i.e. the current
416 ;; time with hours, minutes, and seconds included. Probably safe to
417 ;; ignore. Return the current-time, in units of fractional days.
419 ;; - annotate-extract-revision-at-line ()
421 ;; Only required if `annotate-command' is defined for the backend.
422 ;; Invoked from a buffer in vc-annotate-mode, return the revision
423 ;; corresponding to the current line, or nil if there is no revision
424 ;; corresponding to the current line.
426 ;; SNAPSHOT SYSTEM
428 ;; - create-snapshot (dir name branchp)
430 ;; Take a snapshot of the current state of files under DIR and name it
431 ;; NAME. This should make sure that files are up-to-date before
432 ;; proceeding with the action. DIR can also be a file and if BRANCHP
433 ;; is specified, NAME should be created as a branch and DIR should be
434 ;; checked out under this new branch. The default implementation does
435 ;; not support branches but does a sanity check, a tree traversal and
436 ;; for each file calls `assign-name'.
438 ;; - assign-name (file name)
440 ;; Give name NAME to the working revision of FILE, assuming it is
441 ;; up-to-date. Only used by the default version of `create-snapshot'.
443 ;; - retrieve-snapshot (dir name update)
445 ;; Retrieve a named snapshot of all registered files at or below DIR.
446 ;; If UPDATE is non-nil, then update buffers of any files in the
447 ;; snapshot that are currently visited. The default implementation
448 ;; does a sanity check whether there aren't any uncommitted changes at
449 ;; or below DIR, and then performs a tree walk, using the `checkout'
450 ;; function to retrieve the corresponding revisions.
452 ;; MISCELLANEOUS
454 ;; - make-version-backups-p (file)
456 ;; Return non-nil if unmodified repository revisions of FILE should be
457 ;; backed up locally. If this is done, VC can perform `diff' and
458 ;; `revert' operations itself, without calling the backend system. The
459 ;; default implementation always returns nil.
461 ;; - repository-hostname (dirname)
463 ;; Return the hostname that the backend will have to contact
464 ;; in order to operate on a file in DIRNAME. If the return value
465 ;; is nil, it means that the repository is local.
466 ;; This function is used in `vc-stay-local-p' which backends can use
467 ;; for their convenience.
469 ;; - previous-revision (file rev)
471 ;; Return the revision number that precedes REV for FILE, or nil if no such
472 ;; revision exists.
474 ;; - next-revision (file rev)
476 ;; Return the revision number that follows REV for FILE, or nil if no such
477 ;; revision exists.
479 ;; - check-headers ()
481 ;; Return non-nil if the current buffer contains any version headers.
483 ;; - clear-headers ()
485 ;; In the current buffer, reset all version headers to their unexpanded
486 ;; form. This function should be provided if the state-querying code
487 ;; for this backend uses the version headers to determine the state of
488 ;; a file. This function will then be called whenever VC changes the
489 ;; version control state in such a way that the headers would give
490 ;; wrong information.
492 ;; - delete-file (file)
494 ;; Delete FILE and mark it as deleted in the repository. If this
495 ;; function is not provided, the command `vc-delete-file' will
496 ;; signal an error.
498 ;; - rename-file (old new)
500 ;; Rename file OLD to NEW, both in the working area and in the
501 ;; repository. If this function is not provided, the renaming
502 ;; will be done by (vc-delete-file old) and (vc-register new).
504 ;; - find-file-hook ()
506 ;; Operation called in current buffer when opening a file. This can
507 ;; be used by the backend to setup some local variables it might need.
509 ;; - find-file-not-found-hook ()
511 ;; Operation called in current buffer when opening a non-existing file.
512 ;; By default, this asks the user if she wants to check out the file.
514 ;; - extra-menu ()
516 ;; Return a menu keymap, the items in the keymap will appear at the
517 ;; end of the Version Control menu. The goal is to allow backends
518 ;; to specify extra menu items that appear in the VC menu. This way
519 ;; you can provide menu entries for functionality that is specific
520 ;; to your backend and which does not map to any of the VC generic
521 ;; concepts.
523 ;;; Code:
525 (require 'vc-hooks)
526 (require 'ring)
527 (eval-when-compile
528 (require 'cl)
529 (require 'compile)
530 (require 'dired) ; for dired-map-over-marks macro
531 (require 'dired-aux)) ; for dired-kill-{line,tree}
533 (if (not (assoc 'vc-parent-buffer minor-mode-alist))
534 (setq minor-mode-alist
535 (cons '(vc-parent-buffer vc-parent-buffer-name)
536 minor-mode-alist)))
538 ;; General customization
540 (defgroup vc nil
541 "Version-control system in Emacs."
542 :group 'tools)
544 (defcustom vc-suppress-confirm nil
545 "If non-nil, treat user as expert; suppress yes-no prompts on some things."
546 :type 'boolean
547 :group 'vc)
549 (defcustom vc-delete-logbuf-window t
550 "If non-nil, delete the *VC-log* buffer and window after each logical action.
551 If nil, bury that buffer instead.
552 This is most useful if you have multiple windows on a frame and would like to
553 preserve the setting."
554 :type 'boolean
555 :group 'vc)
557 (defcustom vc-initial-comment nil
558 "If non-nil, prompt for initial comment when a file is registered."
559 :type 'boolean
560 :group 'vc)
562 (defcustom vc-default-init-revision "1.1"
563 "A string used as the default revision number when a new file is registered.
564 This can be overridden by giving a prefix argument to \\[vc-register]. This
565 can also be overridden by a particular VC backend."
566 :type 'string
567 :group 'vc
568 :version "20.3")
570 (defcustom vc-command-messages nil
571 "If non-nil, display run messages from back-end commands."
572 :type 'boolean
573 :group 'vc)
575 (defcustom vc-checkin-switches nil
576 "A string or list of strings specifying extra switches for checkin.
577 These are passed to the checkin program by \\[vc-checkin]."
578 :type '(choice (const :tag "None" nil)
579 (string :tag "Argument String")
580 (repeat :tag "Argument List"
581 :value ("")
582 string))
583 :group 'vc)
585 (defcustom vc-checkout-switches nil
586 "A string or list of strings specifying extra switches for checkout.
587 These are passed to the checkout program by \\[vc-checkout]."
588 :type '(choice (const :tag "None" nil)
589 (string :tag "Argument String")
590 (repeat :tag "Argument List"
591 :value ("")
592 string))
593 :group 'vc)
595 (defcustom vc-register-switches nil
596 "A string or list of strings; extra switches for registering a file.
597 These are passed to the checkin program by \\[vc-register]."
598 :type '(choice (const :tag "None" nil)
599 (string :tag "Argument String")
600 (repeat :tag "Argument List"
601 :value ("")
602 string))
603 :group 'vc)
605 (defcustom vc-dired-listing-switches "-al"
606 "Switches passed to `ls' for vc-dired. MUST contain the `l' option."
607 :type 'string
608 :group 'vc
609 :version "21.1")
611 (defcustom vc-dired-recurse t
612 "If non-nil, show directory trees recursively in VC Dired."
613 :type 'boolean
614 :group 'vc
615 :version "20.3")
617 (defcustom vc-dired-terse-display t
618 "If non-nil, show only locked or locally modified files in VC Dired."
619 :type 'boolean
620 :group 'vc
621 :version "20.3")
623 (defcustom vc-directory-exclusion-list '("SCCS" "RCS" "CVS" "MCVS" ".svn"
624 ".git" ".hg" ".bzr" "{arch}")
625 "List of directory names to be ignored when walking directory trees."
626 :type '(repeat string)
627 :group 'vc)
629 (defcustom vc-diff-switches nil
630 "A string or list of strings specifying switches for diff under VC.
631 When running diff under a given BACKEND, VC concatenates the values of
632 `diff-switches', `vc-diff-switches', and `vc-BACKEND-diff-switches' to
633 get the switches for that command. Thus, `vc-diff-switches' should
634 contain switches that are specific to version control, but not
635 specific to any particular backend."
636 :type '(choice (const :tag "None" nil)
637 (string :tag "Argument String")
638 (repeat :tag "Argument List"
639 :value ("")
640 string))
641 :group 'vc
642 :version "21.1")
644 (defcustom vc-diff-knows-L nil
645 "*Indicates whether diff understands the -L option.
646 The value is either `yes', `no', or nil. If it is nil, VC tries
647 to use -L and sets this variable to remember whether it worked."
648 :type '(choice (const :tag "Work out" nil) (const yes) (const no))
649 :group 'vc)
651 (defcustom vc-allow-async-revert nil
652 "Specifies whether the diff during \\[vc-revert] may be asynchronous.
653 Enabling this option means that you can confirm a revert operation even
654 if the local changes in the file have not been found and displayed yet."
655 :type '(choice (const :tag "No" nil)
656 (const :tag "Yes" t))
657 :group 'vc
658 :version "22.1")
660 ;;;###autoload
661 (defcustom vc-checkout-hook nil
662 "Normal hook (list of functions) run after checking out a file.
663 See `run-hooks'."
664 :type 'hook
665 :group 'vc
666 :version "21.1")
668 (defcustom vc-annotate-display-mode 'fullscale
669 "Which mode to color the output of \\[vc-annotate] with by default."
670 :type '(choice (const :tag "By Color Map Range" nil)
671 (const :tag "Scale to Oldest" scale)
672 (const :tag "Scale Oldest->Newest" fullscale)
673 (number :tag "Specify Fractional Number of Days"
674 :value "20.5"))
675 :group 'vc)
677 ;;;###autoload
678 (defcustom vc-checkin-hook nil
679 "Normal hook (list of functions) run after commit or file checkin.
680 See also `log-edit-done-hook'."
681 :type 'hook
682 :options '(log-edit-comment-to-change-log)
683 :group 'vc)
685 ;;;###autoload
686 (defcustom vc-before-checkin-hook nil
687 "Normal hook (list of functions) run before a commit or a file checkin.
688 See `run-hooks'."
689 :type 'hook
690 :group 'vc)
692 (defcustom vc-logentry-check-hook nil
693 "Normal hook run by `vc-backend-logentry-check'.
694 Use this to impose your own rules on the entry in addition to any the
695 version control backend imposes itself."
696 :type 'hook
697 :group 'vc)
699 ;; Annotate customization
700 (defcustom vc-annotate-color-map
701 (if (and (tty-display-color-p) (<= (display-color-cells) 8))
702 ;; A custom sorted TTY colormap
703 (let* ((colors
704 (sort
705 (delq nil
706 (mapcar (lambda (x)
707 (if (not (or
708 (string-equal (car x) "white")
709 (string-equal (car x) "black") ))
710 (car x)))
711 (tty-color-alist)))
712 (lambda (a b)
713 (cond
714 ((or (string-equal a "red") (string-equal b "blue")) t)
715 ((or (string-equal b "red") (string-equal a "blue")) nil)
716 ((string-equal a "yellow") t)
717 ((string-equal b "yellow") nil)
718 ((string-equal a "cyan") t)
719 ((string-equal b "cyan") nil)
720 ((string-equal a "green") t)
721 ((string-equal b "green") nil)
722 ((string-equal a "magenta") t)
723 ((string-equal b "magenta") nil)
724 (t (string< a b))))))
725 (date 20.)
726 (delta (/ (- 360. date) (1- (length colors)))))
727 (mapcar (lambda (x)
728 (prog1
729 (cons date x)
730 (setq date (+ date delta)))) colors))
731 ;; Normal colormap: hue stepped from 0-240deg, value=1., saturation=0.75
732 '(( 20. . "#FF3F3F")
733 ( 40. . "#FF6C3F")
734 ( 60. . "#FF993F")
735 ( 80. . "#FFC63F")
736 (100. . "#FFF33F")
737 (120. . "#DDFF3F")
738 (140. . "#B0FF3F")
739 (160. . "#83FF3F")
740 (180. . "#56FF3F")
741 (200. . "#3FFF56")
742 (220. . "#3FFF83")
743 (240. . "#3FFFB0")
744 (260. . "#3FFFDD")
745 (280. . "#3FF3FF")
746 (300. . "#3FC6FF")
747 (320. . "#3F99FF")
748 (340. . "#3F6CFF")
749 (360. . "#3F3FFF")))
750 "Association list of age versus color, for \\[vc-annotate].
751 Ages are given in units of fractional days. Default is eighteen
752 steps using a twenty day increment, from red to blue. For TTY
753 displays with 8 or fewer colors, the default is red to blue with
754 all other colors between (excluding black and white)."
755 :type 'alist
756 :group 'vc)
758 (defcustom vc-annotate-very-old-color "#3F3FFF"
759 "Color for lines older than the current color range in \\[vc-annotate]]."
760 :type 'string
761 :group 'vc)
763 (defcustom vc-annotate-background "black"
764 "Background color for \\[vc-annotate].
765 Default color is used if nil."
766 :type 'string
767 :group 'vc)
769 (defcustom vc-annotate-menu-elements '(2 0.5 0.1 0.01)
770 "Menu elements for the mode-specific menu of VC-Annotate mode.
771 List of factors, used to expand/compress the time scale. See `vc-annotate'."
772 :type '(repeat number)
773 :group 'vc)
775 (defvar vc-annotate-mode-map
776 (let ((m (make-sparse-keymap)))
777 (define-key m "A" 'vc-annotate-revision-previous-to-line)
778 (define-key m "D" 'vc-annotate-show-diff-revision-at-line)
779 (define-key m "J" 'vc-annotate-revision-at-line)
780 (define-key m "L" 'vc-annotate-show-log-revision-at-line)
781 (define-key m "N" 'vc-annotate-next-revision)
782 (define-key m "P" 'vc-annotate-prev-revision)
783 (define-key m "W" 'vc-annotate-working-revision)
785 "Local keymap used for VC-Annotate mode.")
787 ;; Header-insertion hair
789 (defcustom vc-static-header-alist
790 '(("\\.c\\'" .
791 "\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n#endif /* lint */\n"))
792 "*Associate static header string templates with file types.
793 A \%s in the template is replaced with the first string associated with
794 the file's version control type in `vc-header-alist'."
795 :type '(repeat (cons :format "%v"
796 (regexp :tag "File Type")
797 (string :tag "Header String")))
798 :group 'vc)
800 (defcustom vc-comment-alist
801 '((nroff-mode ".\\\"" ""))
802 "*Special comment delimiters for generating VC headers.
803 Add an entry in this list if you need to override the normal `comment-start'
804 and `comment-end' variables. This will only be necessary if the mode language
805 is sensitive to blank lines."
806 :type '(repeat (list :format "%v"
807 (symbol :tag "Mode")
808 (string :tag "Comment Start")
809 (string :tag "Comment End")))
810 :group 'vc)
812 (defcustom vc-checkout-carefully (= (user-uid) 0)
813 "*Non-nil means be extra-careful in checkout.
814 Verify that the file really is not locked
815 and that its contents match what the master file says."
816 :type 'boolean
817 :group 'vc)
818 (make-obsolete-variable 'vc-checkout-carefully
819 "the corresponding checks are always done now."
820 "21.1")
823 ;; Variables the user doesn't need to know about.
824 (defvar vc-log-operation nil)
825 (defvar vc-log-after-operation-hook nil)
827 ;; In a log entry buffer, this is a local variable
828 ;; that points to the buffer for which it was made
829 ;; (either a file, or a VC dired buffer).
830 (defvar vc-parent-buffer nil)
831 (put 'vc-parent-buffer 'permanent-local t)
832 (defvar vc-parent-buffer-name nil)
833 (put 'vc-parent-buffer-name 'permanent-local t)
835 (defvar vc-disable-async-diff nil
836 "VC sets this to t locally to disable some async diff operations.
837 Backends that offer asynchronous diffs should respect this variable
838 in their implementation of vc-BACKEND-diff.")
840 (defvar vc-log-fileset)
841 (defvar vc-log-revision)
843 (defvar vc-dired-mode nil)
844 (make-variable-buffer-local 'vc-dired-mode)
846 ;; File property caching
848 (defun vc-clear-context ()
849 "Clear all cached file properties."
850 (interactive)
851 (fillarray vc-file-prop-obarray 0))
853 (defmacro with-vc-properties (files form settings)
854 "Execute FORM, then maybe set per-file properties for FILES.
855 SETTINGS is an association list of property/value pairs. After
856 executing FORM, set those properties from SETTINGS that have not yet
857 been updated to their corresponding values."
858 (declare (debug t))
859 `(let ((vc-touched-properties (list t)))
860 ,form
861 (dolist (file ,files)
862 (mapc (lambda (setting)
863 (let ((property (car setting)))
864 (unless (memq property vc-touched-properties)
865 (put (intern ,file vc-file-prop-obarray)
866 property (cdr setting)))))
867 ,settings))))
869 ;; Two macros for elisp programming
871 ;;;###autoload
872 (defmacro with-vc-file (file comment &rest body)
873 "Check out a writable copy of FILE if necessary, then execute BODY.
874 Check in FILE with COMMENT (a string) after BODY has been executed.
875 FILE is passed through `expand-file-name'; BODY executed within
876 `save-excursion'. If FILE is not under version control, or you are
877 using a locking version-control system and the file is locked by
878 somebody else, signal error."
879 (declare (debug t) (indent 2))
880 (let ((filevar (make-symbol "file")))
881 `(let ((,filevar (expand-file-name ,file)))
882 (or (vc-backend ,filevar)
883 (error "File not under version control: `%s'" file))
884 (unless (vc-editable-p ,filevar)
885 (let ((state (vc-state ,filevar)))
886 (if (stringp state)
887 (error "`%s' is locking `%s'" state ,filevar)
888 (vc-checkout ,filevar t))))
889 (save-excursion
890 ,@body)
891 (vc-checkin (list ,filevar) nil ,comment))))
893 ;;;###autoload
894 (defmacro edit-vc-file (file comment &rest body)
895 "Edit FILE under version control, executing body.
896 Checkin with COMMENT after executing BODY.
897 This macro uses `with-vc-file', passing args to it.
898 However, before executing BODY, find FILE, and after BODY, save buffer."
899 (declare (debug t) (indent 2))
900 (let ((filevar (make-symbol "file")))
901 `(let ((,filevar (expand-file-name ,file)))
902 (with-vc-file
903 ,filevar ,comment
904 (set-buffer (find-file-noselect ,filevar))
905 ,@body
906 (save-buffer)))))
908 ;; Common command execution logic to be used by backends
910 (defun vc-process-filter (p s)
911 "An alternative output filter for async process P.
912 One difference with the default filter is that this inserts S after markers.
913 Another is that undo information is not kept."
914 (with-current-buffer (process-buffer p)
915 (save-excursion
916 (let ((buffer-undo-list t)
917 (inhibit-read-only t))
918 (goto-char (process-mark p))
919 (insert s)
920 (set-marker (process-mark p) (point))))))
922 (defun vc-setup-buffer (&optional buf)
923 "Prepare BUF for executing a VC command and make it current.
924 BUF defaults to \"*vc*\", can be a string and will be created if necessary."
925 (unless buf (setq buf "*vc*"))
926 (let ((camefrom (current-buffer))
927 (olddir default-directory))
928 (set-buffer (get-buffer-create buf))
929 (kill-all-local-variables)
930 (set (make-local-variable 'vc-parent-buffer) camefrom)
931 (set (make-local-variable 'vc-parent-buffer-name)
932 (concat " from " (buffer-name camefrom)))
933 (setq default-directory olddir)
934 (let ((buffer-undo-list t)
935 (inhibit-read-only t))
936 (erase-buffer))))
938 (defvar vc-sentinel-movepoint) ;Dynamically scoped.
940 (defun vc-process-sentinel (p s)
941 (let ((previous (process-get p 'vc-previous-sentinel)))
942 (if previous (funcall previous p s))
943 (with-current-buffer (process-buffer p)
944 (let (vc-sentinel-movepoint)
945 ;; Normally, we want async code such as sentinels to not move point.
946 (save-excursion
947 (goto-char (process-mark p))
948 (let ((cmds (process-get p 'vc-sentinel-commands)))
949 (process-put p 'vc-postprocess nil)
950 (dolist (cmd cmds)
951 ;; Each sentinel may move point and the next one should be run
952 ;; at that new point. We could get the same result by having
953 ;; each sentinel read&set process-mark, but since `cmd' needs
954 ;; to work both for async and sync processes, this would be
955 ;; difficult to achieve.
956 (vc-exec-after cmd))))
957 ;; But sometimes the sentinels really want to move point.
958 (if vc-sentinel-movepoint
959 (let ((win (get-buffer-window (current-buffer) 0)))
960 (if (not win)
961 (goto-char vc-sentinel-movepoint)
962 (with-selected-window win
963 (goto-char vc-sentinel-movepoint)))))))))
965 (defun vc-exec-after (code)
966 "Eval CODE when the current buffer's process is done.
967 If the current buffer has no process, just evaluate CODE.
968 Else, add CODE to the process' sentinel."
969 (let ((proc (get-buffer-process (current-buffer))))
970 (cond
971 ;; If there's no background process, just execute the code.
972 ;; We used to explicitly call delete-process on exited processes,
973 ;; but this led to timing problems causing process output to be
974 ;; lost. Terminated processes get deleted automatically
975 ;; anyway. -- cyd
976 ((or (null proc) (eq (process-status proc) 'exit))
977 ;; Make sure we've read the process's output before going further.
978 (if proc (accept-process-output proc))
979 (eval code))
980 ;; If a process is running, add CODE to the sentinel
981 ((eq (process-status proc) 'run)
982 (let ((previous (process-sentinel proc)))
983 (unless (eq previous 'vc-process-sentinel)
984 (process-put proc 'vc-previous-sentinel previous))
985 (set-process-sentinel proc 'vc-process-sentinel))
986 (process-put proc 'vc-sentinel-commands
987 (cons code (process-get proc 'vc-sentinel-commands))))
988 (t (error "Unexpected process state"))))
989 nil)
991 (defvar vc-post-command-functions nil
992 "Hook run at the end of `vc-do-command'.
993 Each function is called inside the buffer in which the command was run
994 and is passed 3 arguments: the COMMAND, the FILES and the FLAGS.")
996 (defvar w32-quote-process-args)
998 (defun vc-delistify (filelist)
999 "Smash a FILELIST into a file list string suitable for info messages."
1000 ;; FIXME what about file names with spaces?
1001 (if (not filelist) "." (mapconcat 'identity filelist " ")))
1003 ;;;###autoload
1004 (defun vc-do-command (buffer okstatus command file-or-list &rest flags)
1005 "Execute a VC command, notifying user and checking for errors.
1006 Output from COMMAND goes to BUFFER, or *vc* if BUFFER is nil or the
1007 current buffer if BUFFER is t. If the destination buffer is not
1008 already current, set it up properly and erase it. The command is
1009 considered successful if its exit status does not exceed OKSTATUS (if
1010 OKSTATUS is nil, that means to ignore error status, if it is `async', that
1011 means not to wait for termination of the subprocess; if it is t it means to
1012 ignore all execution errors). FILE-OR-LIST is the name of a working file;
1013 it may be a list of files or be nil (to execute commands that don't expect
1014 a file name or set of files). If an optional list of FLAGS is present,
1015 that is inserted into the command line before the filename."
1016 ;; FIXME: file-relative-name can return a bogus result because
1017 ;; it doesn't look at the actual file-system to see if symlinks
1018 ;; come into play.
1019 (let* ((files
1020 (mapcar (lambda (f) (file-relative-name (expand-file-name f)))
1021 (if (listp file-or-list) file-or-list (list file-or-list))))
1022 (full-command
1023 ;; What we're doing here is preparing a version of the command
1024 ;; for display in a debug-progess message. If it's fewer than
1025 ;; 20 characters display the entire command (without trailing
1026 ;; newline). Otherwise display the first 20 followed by an ellipsis.
1027 (concat (if (string= (substring command -1) "\n")
1028 (substring command 0 -1)
1029 command)
1030 " "
1031 (vc-delistify (mapcar (lambda (s) (if (> (length s) 20) (concat (substring s 0 2) "...") s)) flags))
1032 " " (vc-delistify files))))
1033 (save-current-buffer
1034 (unless (or (eq buffer t)
1035 (and (stringp buffer)
1036 (string= (buffer-name) buffer))
1037 (eq buffer (current-buffer)))
1038 (vc-setup-buffer buffer))
1039 (let ((squeezed (remq nil flags))
1040 (inhibit-read-only t)
1041 (status 0))
1042 (when files
1043 (setq squeezed (nconc squeezed files)))
1044 (let ((exec-path (append vc-path exec-path))
1045 ;; Add vc-path to PATH for the execution of this command.
1046 (process-environment
1047 (cons (concat "PATH=" (getenv "PATH")
1048 path-separator
1049 (mapconcat 'identity vc-path path-separator))
1050 process-environment))
1051 (w32-quote-process-args t))
1052 (if (and (eq okstatus 'async) (file-remote-p default-directory))
1053 ;; start-process does not support remote execution
1054 (setq okstatus nil))
1055 (if (eq okstatus 'async)
1056 ;; Run asynchronously
1057 (let ((proc
1058 (let ((process-connection-type nil))
1059 (apply 'start-process command (current-buffer) command
1060 squeezed))))
1061 (if vc-command-messages
1062 (message "Running %s in background..." full-command))
1063 ;;(set-process-sentinel proc (lambda (p msg) (delete-process p)))
1064 (set-process-filter proc 'vc-process-filter)
1065 (vc-exec-after
1066 `(if vc-command-messages
1067 (message "Running %s in background... done" ',full-command))))
1068 ;; Run synchrously
1069 (if vc-command-messages
1070 (message "Running %s in foreground..." full-command))
1071 (let ((buffer-undo-list t))
1072 (setq status (apply 'process-file command nil t nil squeezed)))
1073 (when (and (not (eq t okstatus))
1074 (or (not (integerp status))
1075 (and okstatus (< okstatus status))))
1076 (pop-to-buffer (current-buffer))
1077 (goto-char (point-min))
1078 (shrink-window-if-larger-than-buffer)
1079 (error "Running %s...FAILED (%s)" full-command
1080 (if (integerp status) (format "status %d" status) status))))
1081 ;; We're done
1082 (if vc-command-messages
1083 (message "Running %s...OK = %d" full-command status)))
1084 (vc-exec-after
1085 `(run-hook-with-args 'vc-post-command-functions
1086 ',command ',file-or-list ',flags))
1087 status))))
1089 (defun vc-position-context (posn)
1090 "Save a bit of the text around POSN in the current buffer.
1091 Used to help us find the corresponding position again later
1092 if markers are destroyed or corrupted."
1093 ;; A lot of this was shamelessly lifted from Sebastian Kremer's
1094 ;; rcs.el mode.
1095 (list posn
1096 (buffer-size)
1097 (buffer-substring posn
1098 (min (point-max) (+ posn 100)))))
1100 (defun vc-find-position-by-context (context)
1101 "Return the position of CONTEXT in the current buffer.
1102 If CONTEXT cannot be found, return nil."
1103 (let ((context-string (nth 2 context)))
1104 (if (equal "" context-string)
1105 (point-max)
1106 (save-excursion
1107 (let ((diff (- (nth 1 context) (buffer-size))))
1108 (if (< diff 0) (setq diff (- diff)))
1109 (goto-char (nth 0 context))
1110 (if (or (search-forward context-string nil t)
1111 ;; Can't use search-backward since the match may continue
1112 ;; after point.
1113 (progn (goto-char (- (point) diff (length context-string)))
1114 ;; goto-char doesn't signal an error at
1115 ;; beginning of buffer like backward-char would
1116 (search-forward context-string nil t)))
1117 ;; to beginning of OSTRING
1118 (- (point) (length context-string))))))))
1120 (defun vc-context-matches-p (posn context)
1121 "Return t if POSN matches CONTEXT, nil otherwise."
1122 (let* ((context-string (nth 2 context))
1123 (len (length context-string))
1124 (end (+ posn len)))
1125 (if (> end (1+ (buffer-size)))
1127 (string= context-string (buffer-substring posn end)))))
1129 (defun vc-buffer-context ()
1130 "Return a list (POINT-CONTEXT MARK-CONTEXT REPARSE).
1131 Used by `vc-restore-buffer-context' to later restore the context."
1132 (let ((point-context (vc-position-context (point)))
1133 ;; Use mark-marker to avoid confusion in transient-mark-mode.
1134 (mark-context (if (eq (marker-buffer (mark-marker)) (current-buffer))
1135 (vc-position-context (mark-marker))))
1136 ;; Make the right thing happen in transient-mark-mode.
1137 (mark-active nil)
1138 ;; The new compilation code does not use compilation-error-list any
1139 ;; more, so the code below is now ineffective and might as well
1140 ;; be disabled. -- Stef
1141 ;; ;; We may want to reparse the compilation buffer after revert
1142 ;; (reparse (and (boundp 'compilation-error-list) ;compile loaded
1143 ;; ;; Construct a list; each elt is nil or a buffer
1144 ;; ;; if that buffer is a compilation output buffer
1145 ;; ;; that contains markers into the current buffer.
1146 ;; (save-current-buffer
1147 ;; (mapcar (lambda (buffer)
1148 ;; (set-buffer buffer)
1149 ;; (let ((errors (or
1150 ;; compilation-old-error-list
1151 ;; compilation-error-list))
1152 ;; (buffer-error-marked-p nil))
1153 ;; (while (and (consp errors)
1154 ;; (not buffer-error-marked-p))
1155 ;; (and (markerp (cdr (car errors)))
1156 ;; (eq buffer
1157 ;; (marker-buffer
1158 ;; (cdr (car errors))))
1159 ;; (setq buffer-error-marked-p t))
1160 ;; (setq errors (cdr errors)))
1161 ;; (if buffer-error-marked-p buffer)))
1162 ;; (buffer-list)))))
1163 (reparse nil))
1164 (list point-context mark-context reparse)))
1166 (defun vc-restore-buffer-context (context)
1167 "Restore point/mark, and reparse any affected compilation buffers.
1168 CONTEXT is that which `vc-buffer-context' returns."
1169 (let ((point-context (nth 0 context))
1170 (mark-context (nth 1 context))
1171 (reparse (nth 2 context)))
1172 ;; The new compilation code does not use compilation-error-list any
1173 ;; more, so the code below is now ineffective and might as well
1174 ;; be disabled. -- Stef
1175 ;; ;; Reparse affected compilation buffers.
1176 ;; (while reparse
1177 ;; (if (car reparse)
1178 ;; (with-current-buffer (car reparse)
1179 ;; (let ((compilation-last-buffer (current-buffer)) ;select buffer
1180 ;; ;; Record the position in the compilation buffer of
1181 ;; ;; the last error next-error went to.
1182 ;; (error-pos (marker-position
1183 ;; (car (car-safe compilation-error-list)))))
1184 ;; ;; Reparse the error messages as far as they were parsed before.
1185 ;; (compile-reinitialize-errors '(4) compilation-parsing-end)
1186 ;; ;; Move the pointer up to find the error we were at before
1187 ;; ;; reparsing. Now next-error should properly go to the next one.
1188 ;; (while (and compilation-error-list
1189 ;; (/= error-pos (car (car compilation-error-list))))
1190 ;; (setq compilation-error-list (cdr compilation-error-list))))))
1191 ;; (setq reparse (cdr reparse)))
1193 ;; if necessary, restore point and mark
1194 (if (not (vc-context-matches-p (point) point-context))
1195 (let ((new-point (vc-find-position-by-context point-context)))
1196 (if new-point (goto-char new-point))))
1197 (and mark-active
1198 mark-context
1199 (not (vc-context-matches-p (mark) mark-context))
1200 (let ((new-mark (vc-find-position-by-context mark-context)))
1201 (if new-mark (set-mark new-mark))))))
1203 ;;; Code for deducing what fileset and backend to assume
1205 (defun vc-responsible-backend (file &optional register)
1206 "Return the name of a backend system that is responsible for FILE.
1207 The optional argument REGISTER means that a backend suitable for
1208 registration should be found.
1210 If REGISTER is nil, then if FILE is already registered, return the
1211 backend of FILE. If FILE is not registered, or a directory, then the
1212 first backend in `vc-handled-backends' that declares itself
1213 responsible for FILE is returned. If no backend declares itself
1214 responsible, return the first backend.
1216 If REGISTER is non-nil, return the first responsible backend under
1217 which FILE is not yet registered. If there is no such backend, return
1218 the first backend under which FILE is not yet registered, but could
1219 be registered."
1220 (if (not vc-handled-backends)
1221 (error "No handled backends"))
1222 (or (and (not (file-directory-p file)) (not register) (vc-backend file))
1223 (catch 'found
1224 ;; First try: find a responsible backend. If this is for registration,
1225 ;; it must be a backend under which FILE is not yet registered.
1226 (dolist (backend vc-handled-backends)
1227 (and (or (not register)
1228 (not (vc-call-backend backend 'registered file)))
1229 (vc-call-backend backend 'responsible-p file)
1230 (throw 'found backend)))
1231 ;; no responsible backend
1232 (if (not register)
1233 ;; if this is not for registration, the first backend must do
1234 (car vc-handled-backends)
1235 ;; for registration, we need to find a new backend that
1236 ;; could register FILE
1237 (dolist (backend vc-handled-backends)
1238 (and (not (vc-call-backend backend 'registered file))
1239 (vc-call-backend backend 'could-register file)
1240 (throw 'found backend)))
1241 (error "No backend that could register")))))
1243 (defun vc-expand-dirs (file-or-dir-list)
1244 "Expands directories in a file list specification.
1245 Only files already under version control are noticed."
1246 ;; FIXME: Kill this function.
1247 (let ((flattened '()))
1248 (dolist (node file-or-dir-list)
1249 (vc-file-tree-walk
1250 node (lambda (f) (if (vc-backend f) (push f flattened)))))
1251 (nreverse flattened)))
1253 (defun vc-deduce-fileset (&optional allow-directory-wildcard)
1254 "Deduce a set of files and a backend to apply an operation to.
1256 If we're in VC-dired-mode, the fileset is the list of marked
1257 files. Otherwise, if we're looking at a buffer visiting a
1258 version-controlled file. the fileset is a singleton containing
1259 the relative filename, throw an error.
1261 If neither of these things is true, but allow-directory-wildcard is on,
1262 select all files under version control at and below the current
1263 directory.
1265 Otherwise, throw an error.
1267 (cond (vc-dired-mode
1268 (let ((regexp (dired-marker-regexp))
1269 (marked (dired-map-over-marks (dired-get-filename) nil)))
1270 (unless marked
1271 (error "No files have been selected."))
1272 ;; All members of the fileset must have the same backend
1273 (let ((firstbackend (vc-backend (car marked))))
1274 (mapc (lambda (f) (unless (eq (vc-backend f) firstbackend)
1275 (error "All members of a fileset must be under the same version-control system.")))
1276 (cdr marked)))
1277 marked))
1278 ((vc-backend buffer-file-name)
1279 (list buffer-file-name))
1280 ((and vc-parent-buffer (buffer-file-name vc-parent-buffer))
1281 (progn
1282 (set-buffer vc-parent-buffer)
1283 (vc-deduce-fileset)))
1284 ;; This is guarded by an enabling arg so users won't potentially
1285 ;; shoot themselves in the foot by modifying a fileset they can't
1286 ;; verify by eyeball. Allow it for nondestructive commands like
1287 ;; making diffs, or possibly for destructive ones that have
1288 ;; confirmation prompts.
1289 (allow-directory-wildcard
1290 (progn
1291 (setq marked (list default-directory))
1292 (message "All version-controlled files below %s selected."
1293 default-directory)
1294 (list default-directory)))
1295 (t (error "No fileset is available here."))))
1297 (defun vc-ensure-vc-buffer ()
1298 "Make sure that the current buffer visits a version-controlled file."
1299 (if vc-dired-mode
1300 (set-buffer (find-file-noselect (dired-get-filename)))
1301 (while vc-parent-buffer
1302 (set-buffer vc-parent-buffer))
1303 (if (not buffer-file-name)
1304 (error "Buffer %s is not associated with a file" (buffer-name))
1305 (if (not (vc-backend buffer-file-name))
1306 (error "File %s is not under version control" buffer-file-name)))))
1308 ;;; Support for the C-x v v command. This is where all the single-file-oriented
1309 ;;; code from before the fileset rewrite lives.
1311 (defsubst vc-editable-p (file)
1312 "Return non-nil if FILE can be edited."
1313 (or (eq (vc-checkout-model file) 'implicit)
1314 (memq (vc-state file) '(edited needs-merge))))
1316 (defun vc-revert-buffer-internal (&optional arg no-confirm)
1317 "Revert buffer, keeping point and mark where user expects them.
1318 Try to be clever in the face of changes due to expanded version-control
1319 key words. This is important for typeahead to work as expected.
1320 ARG and NO-CONFIRM are passed on to `revert-buffer'."
1321 (interactive "P")
1322 (widen)
1323 (let ((context (vc-buffer-context)))
1324 ;; Use save-excursion here, because it may be able to restore point
1325 ;; and mark properly even in cases where vc-restore-buffer-context
1326 ;; would fail. However, save-excursion might also get it wrong --
1327 ;; in this case, vc-restore-buffer-context gives it a second try.
1328 (save-excursion
1329 ;; t means don't call normal-mode;
1330 ;; that's to preserve various minor modes.
1331 (revert-buffer arg no-confirm t))
1332 (vc-restore-buffer-context context)))
1334 (defun vc-buffer-sync (&optional not-urgent)
1335 "Make sure the current buffer and its working file are in sync.
1336 NOT-URGENT means it is ok to continue if the user says not to save."
1337 (if (buffer-modified-p)
1338 (if (or vc-suppress-confirm
1339 (y-or-n-p (format "Buffer %s modified; save it? " (buffer-name))))
1340 (save-buffer)
1341 (unless not-urgent
1342 (error "Aborted")))))
1344 (defvar vc-dired-window-configuration)
1346 ;; Here's the major entry point.
1348 ;;;###autoload
1349 (defun vc-next-action (verbose)
1350 "Do the next logical version control operation on the current fileset.
1351 This requires that all files in the fileset be in the same state.
1353 For locking systems:
1354 If every file is not already registered, this registers each for version
1355 control.
1356 If every file is registered and not locked by anyone, this checks out
1357 a writable and locked file of each ready for editing.
1358 If every file is checked out and locked by the calling user, this
1359 first checks to see if each file has changed since checkout. If not,
1360 it performs a revert on that file.
1361 If every file has been changed, this pops up a buffer for entry
1362 of a log message; when the message has been entered, it checks in the
1363 resulting changes along with the log message as change commentary. If
1364 the variable `vc-keep-workfiles' is non-nil (which is its default), a
1365 read-only copy of each changed file is left in place afterwards.
1366 If the affected file is registered and locked by someone else, you are
1367 given the option to steal the lock(s).
1369 For merging systems:
1370 If every file is not already registered, this registers each one for version
1371 control. This does an add, but not a commit.
1372 If every file is added but not committed, each one is committed.
1373 If every working file is changed, but the corresponding repository file is
1374 unchanged, this pops up a buffer for entry of a log message; when the
1375 message has been entered, it checks in the resulting changes along
1376 with the logmessage as change commentary. A writable file is retained.
1377 If the repository file is changed, you are asked if you want to
1378 merge in the changes into your working copy."
1379 (interactive "P")
1380 (let* ((files (vc-deduce-fileset))
1381 (backend (vc-backend (car files)))
1382 (state (vc-state (car files)))
1383 (model (vc-checkout-model (car files)))
1384 revision)
1385 ;; Verify that the fileset is homogenous
1386 (dolist (file (cdr files))
1387 (if (not (eq (vc-state file) state))
1388 (error "Fileset is in a mixed-up state"))
1389 (if (not (eq (vc-checkout-model file) model))
1390 (error "Fileset has mixed checkout models")))
1391 ;; Check for buffers in the fileset not matching the on-disk contents.
1392 (dolist (file files)
1393 (let ((visited (get-file-buffer file)))
1394 (when visited
1395 (if vc-dired-mode
1396 (switch-to-buffer-other-window visited)
1397 (set-buffer visited))
1398 ;; Check relation of buffer and file, and make sure
1399 ;; user knows what he's doing. First, finding the file
1400 ;; will check whether the file on disk is newer.
1401 ;; Ignore buffer-read-only during this test, and
1402 ;; preserve find-file-literally.
1403 (let ((buffer-read-only (not (file-writable-p file))))
1404 (find-file-noselect file nil find-file-literally))
1405 (if (not (verify-visited-file-modtime (current-buffer)))
1406 (if (yes-or-no-p (format "Replace %s on disk with buffer contents? " file))
1407 (write-file buffer-file-name)
1408 (error "Aborted"))
1409 ;; Now, check if we have unsaved changes.
1410 (vc-buffer-sync t)
1411 (if (buffer-modified-p)
1412 (or (y-or-n-p (message "Use %s on disk, keeping modified buffer? " file))
1413 (error "Aborted")))))))
1414 ;; Do the right thing
1415 (cond
1416 ;; Files aren't registered
1417 ((not state)
1418 (mapc 'vc-register files))
1419 ;; Files are up-to-date, or need a merge and user specified a revision
1420 ((or (eq state 'up-to-date) (and verbose (eq state 'needs-patch)))
1421 (cond
1422 (verbose
1423 ;; go to a different revision
1424 (setq revision (read-string "Branch, revision, or backend to move to: "))
1425 (let ((vsym (intern-soft (upcase revision))))
1426 (if (member vsym vc-handled-backends)
1427 (mapc (lambda (file) (vc-transfer-file file vsym)) files)
1428 (mapc (lambda (file)
1429 (vc-checkout file (eq model 'implicit) revision))))))
1430 ((not (eq model 'implicit))
1431 ;; check the files out
1432 (mapc (lambda (file) (vc-checkout file t)) files))
1434 ;; do nothing
1435 (message "Fileset is up-to-date"))))
1436 ;; Files have local changes
1437 ((eq state 'edited)
1438 (let ((ready-for-commit files))
1439 ;; If files are edited but read-only, give user a chance to correct
1440 (dolist (file files)
1441 (if (not (file-writable-p file))
1442 (progn
1443 ;; Make the file+buffer read-write.
1444 (unless (y-or-no-p (format "%s is edited but read-only; make it writable and continue?" file))
1445 (error "Aborted"))
1446 (set-file-modes file (logior (file-modes file) 128))
1447 (let ((visited (get-file-buffer file)))
1448 (if visited
1449 (save-excursion
1450 (set-buffer visited)
1451 (toggle-read-only -1)))))))
1452 ;; Allow user to revert files with no changes
1453 (save-excursion
1454 (let ((revertlist '()))
1455 (dolist (file files)
1456 (let ((visited (get-file-buffer file)))
1457 ;; For files with locking, if the file does not contain
1458 ;; any changes, just let go of the lock, i.e. revert.
1459 (if (and (not (eq model 'implicit))
1460 (vc-workfile-unchanged-p file)
1461 ;; If buffer is modified, that means the user just
1462 ;; said no to saving it; in that case, don't revert,
1463 ;; because the user might intend to save after
1464 ;; finishing the log entry and committing.
1465 (not (and visited (buffer-modified-p))))
1466 (progn
1467 (vc-revert-file file)
1468 (delete file ready-for-commit)))))))
1469 ;; Remaining files need to be committed
1470 (if (not ready-for-commit)
1471 (message "No files remain to be committed")
1472 (if (not verbose)
1473 (vc-checkin ready-for-commit)
1474 (progn
1475 (setq revision (read-string "New revision or backend: "))
1476 (let ((vsym (intern (upcase revision))))
1477 (if (member vsym vc-handled-backends)
1478 (vc-transfer-file file vsym)
1479 (vc-checkin ready-for-commit revision))))))))
1480 ;; locked by somebody else (locking VCSes only)
1481 ((stringp state)
1482 (let ((revision
1483 (if verbose
1484 (read-string "Revision to steal: ")
1485 (vc-working-revision file))))
1486 (mapc (lambda (file) (vc-steal-lock file revision) state) files)))
1487 ;; needs-patch
1488 ((eq state 'needs-patch)
1489 (dolist (file files)
1490 (if (yes-or-no-p (format
1491 "%s is not up-to-date. Get latest revision? "
1492 (file-name-nondirectory file)))
1493 (vc-checkout file (eq model 'implicit) t)
1494 (if (and (not (eq model 'implicit))
1495 (yes-or-no-p "Lock this revision? "))
1496 (vc-checkout file t)))))
1497 ;; needs-merge
1498 ((eq state 'needs-merge)
1499 (dolist (file files)
1500 (if (yes-or-no-p (format
1501 "%s is not up-to-date. Merge in changes now? "
1502 (file-name-nondirectory file)))
1503 (vc-maybe-resolve-conflicts file (vc-call merge-news file)))))
1505 ;; unlocked-changes
1506 ((eq state 'unlocked-changes)
1507 (dolist (file files)
1508 (if (not (equal buffer-file-name file))
1509 (find-file-other-window file))
1510 (if (save-window-excursion
1511 (vc-diff-internal
1512 (vc-backend file) nil (list file)
1513 (vc-working-revision file) nil)
1514 (goto-char (point-min))
1515 (let ((inhibit-read-only t))
1516 (insert
1517 (format "Changes to %s since last lock:\n\n" file)))
1518 (not (beep))
1519 (yes-or-no-p (concat "File has unlocked changes. "
1520 "Claim lock retaining changes? ")))
1521 (progn (vc-call steal-lock file)
1522 (clear-visited-file-modtime)
1523 ;; Must clear any headers here because they wouldn't
1524 ;; show that the file is locked now.
1525 (vc-clear-headers file)
1526 (write-file buffer-file-name)
1527 (vc-mode-line file))
1528 (if (not (yes-or-no-p
1529 "Revert to checked-in revision, instead? "))
1530 (error "Checkout aborted")
1531 (vc-revert-buffer-internal t t)
1532 (vc-checkout file t))))))))
1534 (defun vc-create-repo (backend)
1535 "Create an empty repository in the current directory."
1536 (interactive
1537 (list
1538 (intern
1539 (upcase
1540 (completing-read
1541 "Create repository for: "
1542 (mapcar (lambda (b) (list (downcase (symbol-name b)))) vc-handled-backends)
1543 nil t)))))
1544 (vc-call-backend backend 'create-repo))
1546 ;;;###autoload
1547 (defun vc-register (&optional set-revision comment)
1548 "Register the current file into a version control system.
1549 With prefix argument SET-REVISION, allow user to specify initial revision
1550 level. If COMMENT is present, use that as an initial comment.
1552 The version control system to use is found by cycling through the list
1553 `vc-handled-backends'. The first backend in that list which declares
1554 itself responsible for the file (usually because other files in that
1555 directory are already registered under that backend) will be used to
1556 register the file. If no backend declares itself responsible, the
1557 first backend that could register the file is used."
1558 (interactive "P")
1559 (unless buffer-file-name (error "No visited file"))
1560 (when (vc-backend buffer-file-name)
1561 (if (vc-registered buffer-file-name)
1562 (error "This file is already registered")
1563 (unless (y-or-n-p "Previous master file has vanished. Make a new one? ")
1564 (error "Aborted"))))
1565 ;; Watch out for new buffers of size 0: the corresponding file
1566 ;; does not exist yet, even though buffer-modified-p is nil.
1567 (if (and (not (buffer-modified-p))
1568 (zerop (buffer-size))
1569 (not (file-exists-p buffer-file-name)))
1570 (set-buffer-modified-p t))
1571 (vc-buffer-sync)
1573 (vc-start-entry (list buffer-file-name)
1574 (if set-revision
1575 (read-string (format "Initial revision level for %s: "
1576 (buffer-name)))
1577 (vc-call-backend (vc-responsible-backend buffer-file-name)
1578 'init-revision))
1579 (or comment (not vc-initial-comment))
1581 "Enter initial comment."
1582 (lambda (files rev comment)
1583 (dolist (file files)
1584 (message "Registering %s... " file)
1585 (let ((backend (vc-responsible-backend file t)))
1586 (vc-file-clearprops file)
1587 (vc-call-backend backend 'register (list file) rev comment)
1588 (vc-file-setprop file 'vc-backend backend)
1589 (unless vc-make-backup-files
1590 (make-local-variable 'backup-inhibited)
1591 (setq backup-inhibited t)))
1592 (message "Registering %s... done" file)))))
1594 (defun vc-register-with (backend)
1595 "Register the current file with a specified back end."
1596 (interactive "SBackend: ")
1597 (if (not (member backend vc-handled-backends))
1598 (error "Unknown back end."))
1599 (let ((vc-handled-backends (list backend)))
1600 (call-interactively 'vc-register)))
1602 (defun vc-resynch-window (file &optional keep noquery)
1603 "If FILE is in the current buffer, either revert or unvisit it.
1604 The choice between revert (to see expanded keywords) and unvisit depends on
1605 `vc-keep-workfiles'. NOQUERY if non-nil inhibits confirmation for
1606 reverting. NOQUERY should be t *only* if it is known the only
1607 difference between the buffer and the file is due to version control
1608 rather than user editing!"
1609 (and (string= buffer-file-name file)
1610 (if keep
1611 (progn
1612 (vc-revert-buffer-internal t noquery)
1613 ;; TODO: Adjusting view mode might no longer be necessary
1614 ;; after RMS change to files.el of 1999-08-08. Investigate
1615 ;; this when we install the new VC.
1616 (and view-read-only
1617 (if (file-writable-p file)
1618 (and view-mode
1619 (let ((view-old-buffer-read-only nil))
1620 (view-mode-exit)))
1621 (and (not view-mode)
1622 (not (eq (get major-mode 'mode-class) 'special))
1623 (view-mode-enter))))
1624 (vc-mode-line buffer-file-name))
1625 (kill-buffer (current-buffer)))))
1627 (defun vc-resynch-buffer (file &optional keep noquery)
1628 "If FILE is currently visited, resynch its buffer."
1629 (if (string= buffer-file-name file)
1630 (vc-resynch-window file keep noquery)
1631 (let ((buffer (get-file-buffer file)))
1632 (if buffer
1633 (with-current-buffer buffer
1634 (vc-resynch-window file keep noquery)))))
1635 (vc-dired-resynch-file file))
1637 (defun vc-start-entry (files rev comment initial-contents msg action &optional after-hook)
1638 "Accept a comment for an operation on FILES revision REV.
1639 If COMMENT is nil, pop up a VC-log buffer, emit MSG, and set the
1640 action on close to ACTION. If COMMENT is a string and
1641 INITIAL-CONTENTS is non-nil, then COMMENT is used as the initial
1642 contents of the log entry buffer. If COMMENT is a string and
1643 INITIAL-CONTENTS is nil, do action immediately as if the user had
1644 entered COMMENT. If COMMENT is t, also do action immediately with an
1645 empty comment. Remember the file's buffer in `vc-parent-buffer'
1646 \(current one if no file). AFTER-HOOK specifies the local value
1647 for vc-log-operation-hook."
1648 (let ((parent
1649 (if (and files (equal (length files) 1))
1650 (get-file-buffer (car files))
1651 (current-buffer))))
1652 (if vc-before-checkin-hook
1653 (if files
1654 (with-current-buffer parent
1655 (run-hooks 'vc-before-checkin-hook))
1656 (run-hooks 'vc-before-checkin-hook)))
1657 (if (and comment (not initial-contents))
1658 (set-buffer (get-buffer-create "*VC-log*"))
1659 (pop-to-buffer (get-buffer-create "*VC-log*")))
1660 (set (make-local-variable 'vc-parent-buffer) parent)
1661 (set (make-local-variable 'vc-parent-buffer-name)
1662 (concat " from " (buffer-name vc-parent-buffer)))
1663 ;;(if file (vc-mode-line file))
1664 (vc-log-edit files)
1665 (make-local-variable 'vc-log-after-operation-hook)
1666 (if after-hook
1667 (setq vc-log-after-operation-hook after-hook))
1668 (setq vc-log-operation action)
1669 (setq vc-log-revision rev)
1670 (when comment
1671 (erase-buffer)
1672 (when (stringp comment) (insert comment)))
1673 (if (or (not comment) initial-contents)
1674 (message "%s Type C-c C-c when done" msg)
1675 (vc-finish-logentry (eq comment t)))))
1677 (defun vc-checkout (file &optional writable rev)
1678 "Retrieve a copy of the revision REV of FILE.
1679 If WRITABLE is non-nil, make sure the retrieved file is writable.
1680 REV defaults to the latest revision.
1682 After check-out, runs the normal hook `vc-checkout-hook'."
1683 (and writable
1684 (not rev)
1685 (vc-call make-version-backups-p file)
1686 (vc-up-to-date-p file)
1687 (vc-make-version-backup file))
1688 (with-vc-properties
1689 (list file)
1690 (condition-case err
1691 (vc-call checkout file writable rev)
1692 (file-error
1693 ;; Maybe the backend is not installed ;-(
1694 (when writable
1695 (let ((buf (get-file-buffer file)))
1696 (when buf (with-current-buffer buf (toggle-read-only -1)))))
1697 (signal (car err) (cdr err))))
1698 `((vc-state . ,(if (or (eq (vc-checkout-model file) 'implicit)
1699 (not writable))
1700 (if (vc-call latest-on-branch-p file)
1701 'up-to-date
1702 'needs-patch)
1703 'edited))
1704 (vc-checkout-time . ,(nth 5 (file-attributes file)))))
1705 (vc-resynch-buffer file t t)
1706 (run-hooks 'vc-checkout-hook))
1708 (defun vc-steal-lock (file rev owner)
1709 "Steal the lock on FILE."
1710 (let (file-description)
1711 (if rev
1712 (setq file-description (format "%s:%s" file rev))
1713 (setq file-description file))
1714 (if (not (yes-or-no-p (format "Steal the lock on %s from %s? "
1715 file-description owner)))
1716 (error "Steal canceled"))
1717 (message "Stealing lock on %s..." file)
1718 (with-vc-properties
1719 (list file)
1720 (vc-call steal-lock file rev)
1721 `((vc-state . edited)))
1722 (vc-resynch-buffer file t t)
1723 (message "Stealing lock on %s...done" file)
1724 ;; Write mail after actually stealing, because if the stealing
1725 ;; goes wrong, we don't want to send any mail.
1726 (compose-mail owner (format "Stolen lock on %s" file-description))
1727 (setq default-directory (expand-file-name "~/"))
1728 (goto-char (point-max))
1729 (insert
1730 (format "I stole the lock on %s, " file-description)
1731 (current-time-string)
1732 ".\n")
1733 (message "Please explain why you stole the lock. Type C-c C-c when done.")))
1735 (defun vc-checkin (files &optional rev comment initial-contents)
1736 "Check in FILES.
1737 The optional argument REV may be a string specifying the new revision
1738 level (if nil increment the current level). COMMENT is a comment
1739 string; if omitted, a buffer is popped up to accept a comment. If
1740 INITIAL-CONTENTS is non-nil, then COMMENT is used as the initial contents
1741 of the log entry buffer.
1743 If `vc-keep-workfiles' is nil, FILE is deleted afterwards, provided
1744 that the version control system supports this mode of operation.
1746 Runs the normal hook `vc-checkin-hook'."
1747 (vc-start-entry
1748 files rev comment initial-contents
1749 "Enter a change comment."
1750 (lambda (files rev comment)
1751 (message "Checking in %s..." (vc-delistify files))
1752 ;; "This log message intentionally left almost blank".
1753 ;; RCS 5.7 gripes about white-space-only comments too.
1754 (or (and comment (string-match "[^\t\n ]" comment))
1755 (setq comment "*** empty log message ***"))
1756 (with-vc-properties
1757 files
1758 ;; We used to change buffers to get local value of vc-checkin-switches,
1759 ;; but 'the' local buffer is not a well-defined concept for filesets.
1760 (progn
1761 (vc-call checkin files rev comment)
1762 (mapc 'vc-delete-automatic-version-backups files))
1763 `((vc-state . up-to-date)
1764 (vc-checkout-time . ,(nth 5 (file-attributes file)))
1765 (vc-working-revision . nil)))
1766 (message "Checking in %s...done" (vc-delistify files)))
1767 'vc-checkin-hook))
1769 (defun vc-finish-logentry (&optional nocomment)
1770 "Complete the operation implied by the current log entry.
1771 Use the contents of the current buffer as a check-in or registration
1772 comment. If the optional arg NOCOMMENT is non-nil, then don't check
1773 the buffer contents as a comment."
1774 (interactive)
1775 ;; Check and record the comment, if any.
1776 (unless nocomment
1777 ;; Comment too long?
1778 (vc-call-backend (or (and vc-log-fileset (vc-backend (car vc-log-fileset)))
1779 (vc-responsible-backend default-directory))
1780 'logentry-check)
1781 (run-hooks 'vc-logentry-check-hook))
1782 ;; Sync parent buffer in case the user modified it while editing the comment.
1783 ;; But not if it is a vc-dired buffer.
1784 (with-current-buffer vc-parent-buffer
1785 (or vc-dired-mode (vc-buffer-sync)))
1786 (if (not vc-log-operation)
1787 (error "No log operation is pending"))
1788 ;; save the parameters held in buffer-local variables
1789 (let ((log-operation vc-log-operation)
1790 (log-fileset vc-log-fileset)
1791 (log-revision vc-log-revision)
1792 (log-entry (buffer-string))
1793 (after-hook vc-log-after-operation-hook)
1794 (tmp-vc-parent-buffer vc-parent-buffer))
1795 (pop-to-buffer vc-parent-buffer)
1796 ;; OK, do it to it
1797 (save-excursion
1798 (funcall log-operation
1799 log-fileset
1800 log-revision
1801 log-entry))
1802 ;; Remove checkin window (after the checkin so that if that fails
1803 ;; we don't zap the *VC-log* buffer and the typing therein).
1804 (let ((logbuf (get-buffer "*VC-log*")))
1805 (cond ((and logbuf vc-delete-logbuf-window)
1806 (delete-windows-on logbuf (selected-frame))
1807 ;; Kill buffer and delete any other dedicated windows/frames.
1808 (kill-buffer logbuf))
1809 (logbuf (pop-to-buffer "*VC-log*")
1810 (bury-buffer)
1811 (pop-to-buffer tmp-vc-parent-buffer))))
1812 ;; Now make sure we see the expanded headers
1813 (if log-fileset
1814 (mapc
1815 (lambda (file) (vc-resynch-buffer file vc-keep-workfiles t))
1816 log-fileset))
1817 (if vc-dired-mode
1818 (dired-move-to-filename))
1819 (run-hooks after-hook 'vc-finish-logentry-hook)))
1821 ;;; Additional entry points for examining version histories
1823 (defun vc-default-diff-tree (backend dir rev1 rev2)
1824 "List differences for all registered files at and below DIR.
1825 The meaning of REV1 and REV2 is the same as for `vc-revision-diff'."
1826 ;; This implementation does an explicit tree walk, and calls
1827 ;; vc-BACKEND-diff directly for each file. An optimization
1828 ;; would be to use `vc-diff-internal', so that diffs can be local,
1829 ;; and to call it only for files that are actually changed.
1830 ;; However, this is expensive for some backends, and so it is left
1831 ;; to backend-specific implementations.
1832 (setq default-directory dir)
1833 (vc-file-tree-walk
1834 default-directory
1835 (lambda (f)
1836 (vc-exec-after
1837 `(let ((coding-system-for-read (vc-coding-system-for-diff ',f)))
1838 (message "Looking at %s" ',f)
1839 (vc-call-backend ',(vc-backend f)
1840 'diff (list ',f) ',rev1 ',rev2))))))
1842 (defun vc-coding-system-for-diff (file)
1843 "Return the coding system for reading diff output for FILE."
1844 (or coding-system-for-read
1845 ;; if we already have this file open,
1846 ;; use the buffer's coding system
1847 (let ((buf (find-buffer-visiting file)))
1848 (if buf (with-current-buffer buf
1849 buffer-file-coding-system)))
1850 ;; otherwise, try to find one based on the file name
1851 (car (find-operation-coding-system 'insert-file-contents file))
1852 ;; and a final fallback
1853 'undecided))
1855 (defun vc-switches (backend op)
1856 (let ((switches
1857 (or (if backend
1858 (let ((sym (vc-make-backend-sym
1859 backend (intern (concat (symbol-name op)
1860 "-switches")))))
1861 (if (boundp sym) (symbol-value sym))))
1862 (let ((sym (intern (format "vc-%s-switches" (symbol-name op)))))
1863 (if (boundp sym) (symbol-value sym)))
1864 (cond
1865 ((eq op 'diff) diff-switches)))))
1866 (if (stringp switches) (list switches)
1867 ;; If not a list, return nil.
1868 ;; This is so we can set vc-diff-switches to t to override
1869 ;; any switches in diff-switches.
1870 (if (listp switches) switches))))
1872 ;; Old def for compatibility with Emacs-21.[123].
1873 (defmacro vc-diff-switches-list (backend) `(vc-switches ',backend 'diff))
1874 (make-obsolete 'vc-diff-switches-list 'vc-switches "22.1")
1876 (defun vc-diff-sentinel (verbose rev1-name rev2-name)
1877 ;; Did changes get generated into the buffer?
1878 (if (not (zerop (buffer-size (get-buffer "*vc-diff*"))))
1879 (progn
1880 (pop-to-buffer "*vc-diff*")
1881 ;; Gnus-5.8.5 sets up an autoload for diff-mode, even if it's
1882 ;; not available. Work around that.
1883 (if (require 'diff-mode nil t) (diff-mode))
1884 (when verbose
1885 (let (buffer-read-only t)
1886 (goto-char (point-max))
1887 (if verbose
1888 (insert (format "\n\nDiffs between %s and %s end here." rev1-name rev2-name)))
1889 (goto-char (point-min))
1890 (if verbose
1891 (insert (format "Diffs between %s and %s:\n\n" rev1-name rev2-name)))))
1892 (shrink-window-if-larger-than-buffer)
1894 (progn
1895 (message "No changes between %s and %s" rev1-name rev2-name)
1896 nil)))
1898 (defun vc-diff-internal (backend async files rev1 rev2 &optional verbose)
1899 "Report diffs between two revisions of a fileset.
1900 Diff output goes to the *vc-diff* buffer. The function
1901 returns t if the buffer had changes, nil otherwise."
1902 (let* ((filenames (vc-delistify files))
1903 (rev1-name (or rev1 "working revision"))
1904 (rev2-name (or rev2 "workfile"))
1905 ;; Set coding system based on the first file. It's a kluge,
1906 ;; but the only way to set it for each file included would
1907 ;; be to call the back end separately for each file.
1908 (coding-system-for-read
1909 (if files (vc-coding-system-for-diff (car files)) 'undecided)))
1910 (vc-setup-buffer "*vc-diff*")
1911 (message "Finding changes in %s..." filenames)
1912 ;; Many backends don't handle well the case of a file that has been
1913 ;; added but not yet committed to the repo (notably CVS and Subversion).
1914 ;; Do that work here so the backends don't have to futz with it.
1915 (let ((filtered '()))
1916 (dolist (file files)
1917 (cond ((and (not (file-directory-p file)) (string= (vc-working-revision file) "0"))
1918 (progn
1919 ;; This file is added but not yet committed;
1920 ;; there is no master file to diff against.
1921 (if (or rev1 rev2)
1922 (error "No revisions of %s exist" file)
1923 ;; We regard this as "changed".
1924 ;; Diff it against /dev/null.
1925 (apply 'vc-do-command "*vc-diff*"
1926 1 "diff" file
1927 (append (vc-switches nil 'diff) '("/dev/null"))))))
1929 (add-to-list 'filtered file t))))
1930 (let ((vc-disable-async-diff (not async)))
1931 (vc-call-backend backend 'diff filtered rev1 rev2 "*vc-diff*")))
1932 (set-buffer "*vc-diff*")
1933 ;; This odd-looking code is because in the non-async case we
1934 ;; actually want to pass the return value from vc-diff-sentinel
1935 ;; back to the caller.
1936 (if async
1937 (vc-exec-after `(vc-diff-sentinel ,verbose ,rev1-name ,rev2-name))
1938 (vc-diff-sentinel verbose rev1-name rev2-name))))
1940 ;;;###autoload
1941 (defun vc-history-diff (backend files rev1 rev2)
1942 "Report diffs between revisions of the fileset in the repository history."
1943 (interactive
1944 (let* ((files (vc-deduce-fileset t))
1945 (first (car files))
1946 (backend (vc-backend first))
1947 (completion-table
1948 (vc-call-backend backend 'revision-completion-table first))
1949 (rev1-default nil)
1950 (rev2-default nil))
1951 (cond
1952 ;; someday we may be able to do revision completion on non-singleton
1953 ;; filesets, but not yet.
1954 ((/= (length files) 1)
1955 nil)
1956 ;; if it's a directory, don't supply any revision default
1957 ((file-directory-p first)
1958 nil)
1959 ;; if the file is not up-to-date, use working revision as older revision
1960 ((not (vc-up-to-date-p first))
1961 (setq rev1-default (vc-working-revision first)))
1962 ;; if the file is not locked, use last and previous revisions as defaults
1964 (setq rev1-default (vc-call previous-revision first
1965 (vc-working-revision first)))
1966 (if (string= rev1-default "") (setq rev1-default nil))
1967 (setq rev2-default (vc-working-revision first))))
1968 ;; construct argument list
1969 (let* ((rev1-prompt (if rev1-default
1970 (concat "Older revision (default "
1971 rev1-default "): ")
1972 "Older revision: "))
1973 (rev2-prompt (concat "Newer revision (default "
1974 (or rev2-default "current source") "): "))
1975 (rev1 (if completion-table
1976 (completing-read rev1-prompt completion-table
1977 nil nil nil nil rev1-default)
1978 (read-string rev1-prompt nil nil rev1-default)))
1979 (rev2 (if completion-table
1980 (completing-read rev2-prompt completion-table
1981 nil nil nil nil rev2-default)
1982 (read-string rev2-prompt nil nil rev2-default))))
1983 (if (string= rev1 "") (setq rev1 nil))
1984 (if (string= rev2 "") (setq rev2 nil))
1985 (list backend files rev1 rev2))))
1986 (if (and (not rev1) rev2)
1987 (error "Not a valid revision range."))
1988 (vc-diff-internal backend t files rev1 rev2 (interactive-p)))
1990 (defun vc-contains-version-controlled-file (dir)
1991 "Return t if DIR contains a version-controlled file, nil otherwise."
1992 (catch 'found
1993 (mapc (lambda (f) (and (not (file-directory-p f)) (vc-backend f) (throw 'found 't))) (directory-files dir))
1994 nil))
1996 ;;;###autoload
1997 (defun vc-diff (historic)
1998 "Display diffs between file revisions.
1999 Normally this compares the currently selected fileset with their
2000 working revisions. With a prefix argument HISTORIC, it reads two revision
2001 designators specifying which revisions to compare.
2003 If no current fileset is available (that is, we are not in
2004 VC-Dired mode and the visited file of the current buffer is not
2005 under version control) behave specially; if there are
2006 version-controlled files in the current directory, treat all
2007 version-controlled files recursively beneath the current
2008 directory as the selected fileset.
2011 (interactive "P")
2012 (cond
2013 ;;((not (vc-contains-version-controlled-file default-directory))
2014 ;;(error "No version-controlled files directly beneath default directory"))
2015 (historic
2016 (call-interactively 'vc-history-diff))
2018 (let* ((files (vc-deduce-fileset t))
2019 (first (car files))
2020 (backend
2021 (cond ((file-directory-p first)
2022 (vc-responsible-backend first))
2024 (vc-backend first)))))
2025 (vc-diff-internal backend t files nil nil (interactive-p))))))
2027 ;;;###autoload
2028 (defun vc-revision-other-window (rev)
2029 "Visit revision REV of the current file in another window.
2030 If the current file is named `F', the revision is named `F.~REV~'.
2031 If `F.~REV~' already exists, use it instead of checking it out again."
2032 (interactive
2033 (save-current-buffer
2034 (vc-ensure-vc-buffer)
2035 (let ((completion-table
2036 (vc-call revision-completion-table buffer-file-name))
2037 (prompt "Revision to visit (default is working revision): "))
2038 (list
2039 (if completion-table
2040 (completing-read prompt completion-table)
2041 (read-string prompt))))))
2042 (vc-ensure-vc-buffer)
2043 (let* ((file buffer-file-name)
2044 (revision (if (string-equal rev "")
2045 (vc-working-revision file)
2046 rev)))
2047 (switch-to-buffer-other-window (vc-find-revision file revision))))
2049 (defun vc-find-revision (file revision)
2050 "Read REVISION of FILE into a buffer and return the buffer."
2051 (let ((automatic-backup (vc-version-backup-file-name file revision))
2052 (filebuf (or (get-file-buffer file) (current-buffer)))
2053 (filename (vc-version-backup-file-name file revision 'manual)))
2054 (unless (file-exists-p filename)
2055 (if (file-exists-p automatic-backup)
2056 (rename-file automatic-backup filename nil)
2057 (message "Checking out %s..." filename)
2058 (with-current-buffer filebuf
2059 (let ((failed t))
2060 (unwind-protect
2061 (let ((coding-system-for-read 'no-conversion)
2062 (coding-system-for-write 'no-conversion))
2063 (with-temp-file filename
2064 (let ((outbuf (current-buffer)))
2065 ;; Change buffer to get local value of
2066 ;; vc-checkout-switches.
2067 (with-current-buffer filebuf
2068 (vc-call find-revision file revision outbuf))))
2069 (setq failed nil))
2070 (if (and failed (file-exists-p filename))
2071 (delete-file filename))))
2072 (vc-mode-line file))
2073 (message "Checking out %s...done" filename)))
2074 (find-file-noselect filename)))
2076 ;; Header-insertion code
2078 ;;;###autoload
2079 (defun vc-insert-headers ()
2080 "Insert headers into a file for use with a version control system.
2081 Headers desired are inserted at point, and are pulled from
2082 the variable `vc-BACKEND-header'."
2083 (interactive)
2084 (vc-ensure-vc-buffer)
2085 (save-excursion
2086 (save-restriction
2087 (widen)
2088 (if (or (not (vc-check-headers))
2089 (y-or-n-p "Version headers already exist. Insert another set? "))
2090 (let* ((delims (cdr (assq major-mode vc-comment-alist)))
2091 (comment-start-vc (or (car delims) comment-start "#"))
2092 (comment-end-vc (or (car (cdr delims)) comment-end ""))
2093 (hdsym (vc-make-backend-sym (vc-backend buffer-file-name)
2094 'header))
2095 (hdstrings (and (boundp hdsym) (symbol-value hdsym))))
2096 (dolist (s hdstrings)
2097 (insert comment-start-vc "\t" s "\t"
2098 comment-end-vc "\n"))
2099 (if vc-static-header-alist
2100 (dolist (f vc-static-header-alist)
2101 (if (string-match (car f) buffer-file-name)
2102 (insert (format (cdr f) (car hdstrings)))))))))))
2104 (defun vc-clear-headers (&optional file)
2105 "Clear all version headers in the current buffer (or FILE).
2106 The headers are reset to their non-expanded form."
2107 (let* ((filename (or file buffer-file-name))
2108 (visited (find-buffer-visiting filename))
2109 (backend (vc-backend filename)))
2110 (when (vc-find-backend-function backend 'clear-headers)
2111 (if visited
2112 (let ((context (vc-buffer-context)))
2113 ;; save-excursion may be able to relocate point and mark
2114 ;; properly. If it fails, vc-restore-buffer-context
2115 ;; will give it a second try.
2116 (save-excursion
2117 (vc-call-backend backend 'clear-headers))
2118 (vc-restore-buffer-context context))
2119 (set-buffer (find-file-noselect filename))
2120 (vc-call-backend backend 'clear-headers)
2121 (kill-buffer filename)))))
2123 ;;;###autoload
2124 (defun vc-merge ()
2125 "Merge changes between two revisions into the current buffer's file.
2126 This asks for two revisions to merge from in the minibuffer. If the
2127 first revision is a branch number, then merge all changes from that
2128 branch. If the first revision is empty, merge news, i.e. recent changes
2129 from the current branch.
2131 See Info node `Merging'."
2132 (interactive)
2133 (vc-ensure-vc-buffer)
2134 (vc-buffer-sync)
2135 (let* ((file buffer-file-name)
2136 (backend (vc-backend file))
2137 (state (vc-state file))
2138 first-revision second-revision status)
2139 (cond
2140 ((stringp state) ;; Locking VCses only
2141 (error "File is locked by %s" state))
2142 ((not (vc-editable-p file))
2143 (if (y-or-n-p
2144 "File must be checked out for merging. Check out now? ")
2145 (vc-checkout file t)
2146 (error "Merge aborted"))))
2147 (setq first-revision
2148 (read-string (concat "Branch or revision to merge from "
2149 "(default news on current branch): ")))
2150 (if (string= first-revision "")
2151 (if (not (vc-find-backend-function backend 'merge-news))
2152 (error "Sorry, merging news is not implemented for %s" backend)
2153 (setq status (vc-call merge-news file)))
2154 (if (not (vc-find-backend-function backend 'merge))
2155 (error "Sorry, merging is not implemented for %s" backend)
2156 (if (not (vc-branch-p first-revision))
2157 (setq second-revision
2158 (read-string "Second revision: "
2159 (concat (vc-branch-part first-revision) ".")))
2160 ;; We want to merge an entire branch. Set revisions
2161 ;; accordingly, so that vc-BACKEND-merge understands us.
2162 (setq second-revision first-revision)
2163 ;; first-revision must be the starting point of the branch
2164 (setq first-revision (vc-branch-part first-revision)))
2165 (setq status (vc-call merge file first-revision second-revision))))
2166 (vc-maybe-resolve-conflicts file status "WORKFILE" "MERGE SOURCE")))
2168 (defun vc-maybe-resolve-conflicts (file status &optional name-A name-B)
2169 (vc-resynch-buffer file t (not (buffer-modified-p)))
2170 (if (zerop status) (message "Merge successful")
2171 (smerge-mode 1)
2172 (message "File contains conflicts.")))
2174 ;;;###autoload
2175 (defalias 'vc-resolve-conflicts 'smerge-ediff)
2177 ;; The VC directory major mode. Coopt Dired for this.
2178 ;; All VC commands get mapped into logical equivalents.
2180 (defvar vc-dired-switches)
2181 (defvar vc-dired-terse-mode)
2183 (defvar vc-dired-mode-map
2184 (let ((map (make-sparse-keymap))
2185 (vmap (make-sparse-keymap)))
2186 (define-key map "\C-xv" vmap)
2187 (define-key map "v" vmap)
2188 (set-keymap-parent vmap vc-prefix-map)
2189 (define-key vmap "t" 'vc-dired-toggle-terse-mode)
2190 map))
2192 (define-derived-mode vc-dired-mode dired-mode "Dired under "
2193 "The major mode used in VC directory buffers.
2195 It works like Dired, but lists only files under version control, with
2196 the current VC state of each file being indicated in the place of the
2197 file's link count, owner, group and size. Subdirectories are also
2198 listed, and you may insert them into the buffer as desired, like in
2199 Dired.
2201 All Dired commands operate normally, with the exception of `v', which
2202 is redefined as the version control prefix, so that you can type
2203 `vl', `v=' etc. to invoke `vc-print-log', `vc-diff', and the like on
2204 the file named in the current Dired buffer line. `vv' invokes
2205 `vc-next-action' on this file, or on all files currently marked.
2206 There is a special command, `*l', to mark all files currently locked."
2207 ;; define-derived-mode does it for us in Emacs-21, but not in Emacs-20.
2208 ;; We do it here because dired might not be loaded yet
2209 ;; when vc-dired-mode-map is initialized.
2210 (set-keymap-parent vc-dired-mode-map dired-mode-map)
2211 (add-hook 'dired-after-readin-hook 'vc-dired-hook nil t)
2212 ;; The following is slightly modified from files.el,
2213 ;; because file lines look a bit different in vc-dired-mode
2214 ;; (the column before the date does not end in a digit).
2215 ;; albinus: It should be done in the original declaration. Problem
2216 ;; is the optional empty state-info; otherwise ")" would be good
2217 ;; enough as delimeter.
2218 (set (make-local-variable 'directory-listing-before-filename-regexp)
2219 (let* ((l "\\([A-Za-z]\\|[^\0-\177]\\)")
2220 ;; In some locales, month abbreviations are as short as 2 letters,
2221 ;; and they can be followed by ".".
2222 (month (concat l l "+\\.?"))
2223 (s " ")
2224 (yyyy "[0-9][0-9][0-9][0-9]")
2225 (dd "[ 0-3][0-9]")
2226 (HH:MM "[ 0-2][0-9]:[0-5][0-9]")
2227 (seconds "[0-6][0-9]\\([.,][0-9]+\\)?")
2228 (zone "[-+][0-2][0-9][0-5][0-9]")
2229 (iso-mm-dd "[01][0-9]-[0-3][0-9]")
2230 (iso-time (concat HH:MM "\\(:" seconds "\\( ?" zone "\\)?\\)?"))
2231 (iso (concat "\\(\\(" yyyy "-\\)?" iso-mm-dd "[ T]" iso-time
2232 "\\|" yyyy "-" iso-mm-dd "\\)"))
2233 (western (concat "\\(" month s "+" dd "\\|" dd "\\.?" s month "\\)"
2234 s "+"
2235 "\\(" HH:MM "\\|" yyyy "\\)"))
2236 (western-comma (concat month s "+" dd "," s "+" yyyy))
2237 ;; Japanese MS-Windows ls-lisp has one-digit months, and
2238 ;; omits the Kanji characters after month and day-of-month.
2239 (mm "[ 0-1]?[0-9]")
2240 (japanese
2241 (concat mm l "?" s dd l "?" s "+"
2242 "\\(" HH:MM "\\|" yyyy l "?" "\\)")))
2243 ;; the .* below ensures that we find the last match on a line
2244 (concat ".*" s
2245 "\\(" western "\\|" western-comma "\\|" japanese "\\|" iso "\\)"
2246 s "+")))
2247 (and (boundp 'vc-dired-switches)
2248 vc-dired-switches
2249 (set (make-local-variable 'dired-actual-switches)
2250 vc-dired-switches))
2251 (set (make-local-variable 'vc-dired-terse-mode) vc-dired-terse-display)
2252 (let ((backend-name (symbol-name (vc-responsible-backend
2253 default-directory))))
2254 (setq mode-name (concat mode-name backend-name))
2255 ;; Add menu after `vc-dired-mode-map' has `dired-mode-map' as the parent.
2256 (let ((vc-dire-menu-map (copy-keymap vc-menu-map)))
2257 (define-key-after (lookup-key vc-dired-mode-map [menu-bar]) [vc]
2258 (cons backend-name vc-dire-menu-map) 'subdir)))
2259 (setq vc-dired-mode t))
2261 (defun vc-dired-toggle-terse-mode ()
2262 "Toggle terse display in VC Dired."
2263 (interactive)
2264 (if (not vc-dired-mode)
2266 (setq vc-dired-terse-mode (not vc-dired-terse-mode))
2267 (if vc-dired-terse-mode
2268 (vc-dired-hook)
2269 (revert-buffer))))
2271 (defun vc-dired-mark-locked ()
2272 "Mark all files currently locked."
2273 (interactive)
2274 (dired-mark-if (let ((f (dired-get-filename nil t)))
2275 (and f
2276 (not (file-directory-p f))
2277 (not (vc-up-to-date-p f))))
2278 "locked file"))
2280 (define-key vc-dired-mode-map "*l" 'vc-dired-mark-locked)
2282 (defun vc-dired-reformat-line (vc-info)
2283 "Reformat a directory-listing line.
2284 Replace various columns with version control information, VC-INFO.
2285 This code, like dired, assumes UNIX -l format."
2286 (beginning-of-line)
2287 (when (re-search-forward
2288 ;; Match link count, owner, group, size. Group may be missing,
2289 ;; and only the size is present in OS/2 -l format.
2290 "^..[drwxlts-]+ \\( *[0-9]+\\( [^ ]+ +\\([^ ]+ +\\)?[0-9]+\\)?\\) "
2291 (line-end-position) t)
2292 (replace-match (substring (concat vc-info " ") 0 10)
2293 t t nil 1)))
2295 (defun vc-dired-hook ()
2296 "Reformat the listing according to version control.
2297 Called by dired after any portion of a vc-dired buffer has been read in."
2298 (message "Getting version information... ")
2299 (let (subdir filename (inhibit-read-only t))
2300 (goto-char (point-min))
2301 (while (not (eobp))
2302 (cond
2303 ;; subdir header line
2304 ((setq subdir (dired-get-subdir))
2305 ;; if the backend supports it, get the state
2306 ;; of all files in this directory at once
2307 (let ((backend (vc-responsible-backend subdir)))
2308 ;; check `backend' can really handle `subdir'.
2309 (if (and (vc-call-backend backend 'responsible-p subdir)
2310 (vc-find-backend-function backend 'dir-state))
2311 (vc-call-backend backend 'dir-state subdir)))
2312 (forward-line 1)
2313 ;; erase (but don't remove) the "total" line
2314 (delete-region (point) (line-end-position))
2315 (beginning-of-line)
2316 (forward-line 1))
2317 ;; file line
2318 ((setq filename (dired-get-filename nil t))
2319 (cond
2320 ;; subdir
2321 ((file-directory-p filename)
2322 (cond
2323 ((member (file-name-nondirectory filename)
2324 vc-directory-exclusion-list)
2325 (let ((pos (point)))
2326 (dired-kill-tree filename)
2327 (goto-char pos)
2328 (dired-kill-line)))
2329 (vc-dired-terse-mode
2330 ;; Don't show directories in terse mode. Don't use
2331 ;; dired-kill-line to remove it, because in recursive listings,
2332 ;; that would remove the directory contents as well.
2333 (delete-region (line-beginning-position)
2334 (progn (forward-line 1) (point))))
2335 ((string-match "\\`\\.\\.?\\'" (file-name-nondirectory filename))
2336 (dired-kill-line))
2338 (vc-dired-reformat-line nil)
2339 (forward-line 1))))
2340 ;; ordinary file
2341 ((and (vc-backend filename)
2342 (not (and vc-dired-terse-mode
2343 (vc-up-to-date-p filename))))
2344 (vc-dired-reformat-line (vc-call dired-state-info filename))
2345 (forward-line 1))
2347 (dired-kill-line))))
2348 ;; any other line
2349 (t (forward-line 1))))
2350 (vc-dired-purge))
2351 (message "Getting version information... done")
2352 (save-restriction
2353 (widen)
2354 (cond ((eq (count-lines (point-min) (point-max)) 1)
2355 (goto-char (point-min))
2356 (message "No files locked under %s" default-directory)))))
2358 (defun vc-dired-purge ()
2359 "Remove empty subdirs."
2360 (goto-char (point-min))
2361 (while (dired-get-subdir)
2362 (forward-line 2)
2363 (if (dired-get-filename nil t)
2364 (if (not (dired-next-subdir 1 t))
2365 (goto-char (point-max)))
2366 (forward-line -2)
2367 (if (not (string= (dired-current-directory) default-directory))
2368 (dired-do-kill-lines t "")
2369 ;; We cannot remove the top level directory.
2370 ;; Just make it look a little nicer.
2371 (forward-line 1)
2372 (or (eobp) (kill-line))
2373 (if (not (dired-next-subdir 1 t))
2374 (goto-char (point-max))))))
2375 (goto-char (point-min)))
2377 (defun vc-dired-buffers-for-dir (dir)
2378 "Return a list of all vc-dired buffers that currently display DIR."
2379 (let (result)
2380 ;; Check whether dired is loaded.
2381 (when (fboundp 'dired-buffers-for-dir)
2382 (mapc (lambda (buffer)
2383 (with-current-buffer buffer
2384 (if vc-dired-mode
2385 (setq result (append result (list buffer))))))
2386 (dired-buffers-for-dir dir)))
2387 result))
2389 (defun vc-dired-resynch-file (file)
2390 "Update the entries for FILE in any VC Dired buffers that list it."
2391 (let ((buffers (vc-dired-buffers-for-dir (file-name-directory file))))
2392 (when buffers
2393 (mapcar (lambda (buffer)
2394 (with-current-buffer buffer
2395 (if (dired-goto-file file)
2396 ;; bind vc-dired-terse-mode to nil so that
2397 ;; files won't vanish when they are checked in
2398 (let ((vc-dired-terse-mode nil))
2399 (dired-do-redisplay 1)))))
2400 buffers))))
2402 ;;;###autoload
2403 (defun vc-directory (dir read-switches)
2404 "Create a buffer in VC Dired Mode for directory DIR.
2406 See Info node `VC Dired Mode'.
2408 With prefix arg READ-SWITCHES, specify a value to override
2409 `dired-listing-switches' when generating the listing."
2410 (interactive "DDired under VC (directory): \nP")
2411 (let ((vc-dired-switches (concat vc-dired-listing-switches
2412 (if vc-dired-recurse "R" ""))))
2413 (if (eq (string-match tramp-file-name-regexp dir) 0)
2414 (error "Sorry, vc-directory does not work over Tramp"))
2415 (if read-switches
2416 (setq vc-dired-switches
2417 (read-string "Dired listing switches: "
2418 vc-dired-switches)))
2419 (require 'dired)
2420 (require 'dired-aux)
2421 (switch-to-buffer
2422 (dired-internal-noselect (expand-file-name (file-name-as-directory dir))
2423 vc-dired-switches
2424 'vc-dired-mode))))
2427 ;; Named-configuration entry points
2429 (defun vc-snapshot-precondition (dir)
2430 "Scan the tree below DIR, looking for files not up-to-date.
2431 If any file is not up-to-date, return the name of the first such file.
2432 \(This means, neither snapshot creation nor retrieval is allowed.\)
2433 If one or more of the files are currently visited, return `visited'.
2434 Otherwise, return nil."
2435 (let ((status nil))
2436 (catch 'vc-locked-example
2437 (vc-file-tree-walk
2439 (lambda (f)
2440 (if (not (vc-up-to-date-p f)) (throw 'vc-locked-example f)
2441 (if (get-file-buffer f) (setq status 'visited)))))
2442 status)))
2444 ;;;###autoload
2445 (defun vc-create-snapshot (dir name branchp)
2446 "Descending recursively from DIR, make a snapshot called NAME.
2447 For each registered file, the working revision becomes part of
2448 the named configuration. If the prefix argument BRANCHP is
2449 given, the snapshot is made as a new branch and the files are
2450 checked out in that new branch."
2451 (interactive
2452 (list (read-file-name "Directory: " default-directory default-directory t)
2453 (read-string "New snapshot name: ")
2454 current-prefix-arg))
2455 (message "Making %s... " (if branchp "branch" "snapshot"))
2456 (if (file-directory-p dir) (setq dir (file-name-as-directory dir)))
2457 (vc-call-backend (vc-responsible-backend dir)
2458 'create-snapshot dir name branchp)
2459 (message "Making %s... done" (if branchp "branch" "snapshot")))
2461 ;;;###autoload
2462 (defun vc-retrieve-snapshot (dir name)
2463 "Descending recursively from DIR, retrieve the snapshot called NAME.
2464 If NAME is empty, it refers to the latest revisions.
2465 If locking is used for the files in DIR, then there must not be any
2466 locked files at or below DIR (but if NAME is empty, locked files are
2467 allowed and simply skipped)."
2468 (interactive
2469 (list (read-file-name "Directory: " default-directory default-directory t)
2470 (read-string "Snapshot name to retrieve (default latest revisions): ")))
2471 (let ((update (yes-or-no-p "Update any affected buffers? "))
2472 (msg (if (or (not name) (string= name ""))
2473 (format "Updating %s... " (abbreviate-file-name dir))
2474 (format "Retrieving snapshot into %s... "
2475 (abbreviate-file-name dir)))))
2476 (message "%s" msg)
2477 (vc-call-backend (vc-responsible-backend dir)
2478 'retrieve-snapshot dir name update)
2479 (message "%s" (concat msg "done"))))
2481 ;; Miscellaneous other entry points
2483 ;;;###autoload
2484 (defun vc-print-log (&optional working-revision)
2485 "List the change log of the current fileset in a window.
2486 If WORKING-REVISION is non-nil, leave the point at that revision."
2487 (interactive)
2488 (let* ((files (vc-deduce-fileset))
2489 (backend (vc-backend (car files)))
2490 (working-revision (or working-revision (vc-working-revision (car files)))))
2491 ;; Don't switch to the output buffer before running the command,
2492 ;; so that any buffer-local settings in the vc-controlled
2493 ;; buffer can be accessed by the command.
2494 (vc-call-backend backend 'print-log files "*vc-change-log*")
2495 (pop-to-buffer "*vc-change-log*")
2496 (vc-exec-after
2497 `(let ((inhibit-read-only t))
2498 (vc-call-backend ',backend 'log-view-mode)
2499 (goto-char (point-max)) (forward-line -1)
2500 (while (looking-at "=*\n")
2501 (delete-char (- (match-end 0) (match-beginning 0)))
2502 (forward-line -1))
2503 (goto-char (point-min))
2504 (if (looking-at "[\b\t\n\v\f\r ]+")
2505 (delete-char (- (match-end 0) (match-beginning 0))))
2506 (shrink-window-if-larger-than-buffer)
2507 ;; move point to the log entry for the working revision
2508 (vc-call-backend ',backend 'show-log-entry ',working-revision)
2509 (setq vc-sentinel-movepoint (point))
2510 (set-buffer-modified-p nil)))))
2512 ;;;###autoload
2513 (defun vc-revert ()
2514 "Revert working copies of the selected fileset to their repository contents.
2515 This asks for confirmation if the buffer contents are not identical
2516 to the working revision (except for keyword expansion)."
2517 (interactive)
2518 (let* ((files (vc-deduce-fileset))
2519 (backend (vc-backend (car files))))
2520 ;; If any of the files is visited by the current buffer, make
2521 ;; sure buffer is saved. If the user says `no', abort since
2522 ;; we cannot show the changes and ask for confirmation to
2523 ;; discard them.
2524 (if (or (not files) (memq (buffer-file-name) files))
2525 (vc-buffer-sync nil))
2526 (dolist (file files)
2527 (let (buf (get-file-buffer file))
2528 (if (and buf (buffer-modified-p buf))
2529 (error "Please kill or save all modified buffers before reverting.")))
2530 (if (vc-up-to-date-p file)
2531 (unless (yes-or-no-p (format "%s seems up-to-date. Revert anyway? " file))
2532 (error "Revert canceled"))))
2533 (if (vc-diff-internal backend vc-allow-async-revert files nil nil)
2534 (progn
2535 (unless (yes-or-no-p (format "Discard changes in %s? " (vc-delistify files)))
2536 (error "Revert canceled"))
2537 (delete-windows-on "*vc-diff*")
2538 (kill-buffer "*vc-diff*")))
2539 (dolist (file files)
2540 (progn
2541 (message "Reverting %s..." (vc-delistify files))
2542 (vc-revert-file file)
2543 (message "Reverting %s...done" (vc-delistify files))))))
2545 ;;;###autoload
2546 (defun vc-rollback ()
2547 "Roll back (remove) the most recent changeset committed to the repository.
2548 This may be either a file-level or a repository-level operation,
2549 depending on the underlying version-control system."
2550 (interactive)
2551 (let* ((files (vc-deduce-fileset))
2552 (backend (vc-backend (car files)))
2553 (granularity (vc-call-backend backend 'revision-granularity)))
2554 (unless (vc-find-backend-function backend 'rollback)
2555 (error "Rollback is not supported in %s" backend))
2556 (if (and (not (eq granularity 'repository)) (/= (length files) 1))
2557 (error "Rollback requires a singleton fileset or repository versioning"))
2558 (if (not (vc-call latest-on-branch-p (car files)))
2559 (error "Rollback is only possible at the tip revision."))
2560 ;; If any of the files is visited by the current buffer, make
2561 ;; sure buffer is saved. If the user says `no', abort since
2562 ;; we cannot show the changes and ask for confirmation to
2563 ;; discard them.
2564 (if (or (not files) (memq (buffer-file-name) files))
2565 (vc-buffer-sync nil))
2566 (dolist (file files)
2567 (if (buffer-modified-p (get-file-buffer file))
2568 (error "Please kill or save all modified buffers before rollback."))
2569 (if (not (vc-up-to-date-p file))
2570 (error "Please revert all modified workfiles before rollback.")))
2571 ;; Accumulate changes associated with the fileset
2572 (vc-setup-buffer "*vc-diff*")
2573 (not-modified)
2574 (message "Finding changes...")
2575 (let* ((tip (vc-working-revision (car files)))
2576 (previous (vc-call previous-revision (car files) tip)))
2577 (vc-diff-internal backend nil files previous tip))
2578 ;; Display changes
2579 (unless (yes-or-no-p "Discard these revisions? ")
2580 (error "Rollback canceled"))
2581 (delete-windows-on "*vc-diff*")
2582 (kill-buffer"*vc-diff*")
2583 ;; Do the actual reversions
2584 (message "Rolling back %s..." (vc-delistify files))
2585 (with-vc-properties
2586 files
2587 (vc-call-backend backend 'rollback files)
2588 `((vc-state . ,'up-to-date)
2589 (vc-checkout-time . , (nth 5 (file-attributes file)))
2590 (vc-working-revision . nil)))
2591 (mapc (lambda (f) (vc-resynch-buffer f t t)) files)
2592 (message "Rolling back %s...done" (vc-delistify files))))
2594 ;;;###autoload
2595 (define-obsolete-function-alias 'vc-revert-buffer 'vc-revert "23.1")
2597 ;;;###autoload
2598 (defun vc-update ()
2599 "Update the current fileset's files to their tip revisions.
2600 For each one that contains no changes, and is not locked, then this simply
2601 replaces the work file with the latest revision on its branch. If the file
2602 contains changes, and the backend supports merging news, then any recent
2603 changes from the current branch are merged into the working file."
2604 (interactive)
2605 (dolist (file (vc-deduce-fileset))
2606 (if (buffer-modified-p (get-file-buffer file))
2607 (error "Please kill or save all modified buffers before updating."))
2608 (if (vc-up-to-date-p file)
2609 (vc-checkout file nil "")
2610 (if (eq (vc-checkout-model file) 'locking)
2611 (if (eq (vc-state file) 'edited)
2612 (error
2613 (substitute-command-keys
2614 "File is locked--type \\[vc-revert] to discard changes"))
2615 (error
2616 (substitute-command-keys
2617 "Unexpected file state (%s)--type \\[vc-next-action] to correct")
2618 (vc-state file)))
2619 (if (not (vc-find-backend-function (vc-backend file) 'merge-news))
2620 (error "Sorry, merging news is not implemented for %s"
2621 (vc-backend file))
2622 (vc-call merge-news file)
2623 (vc-resynch-buffer file t t))))))
2625 (defun vc-version-backup-file (file &optional rev)
2626 "Return name of backup file for revision REV of FILE.
2627 If version backups should be used for FILE, and there exists
2628 such a backup for REV or the working revision of file, return
2629 its name; otherwise return nil."
2630 (when (vc-call make-version-backups-p file)
2631 (let ((backup-file (vc-version-backup-file-name file rev)))
2632 (if (file-exists-p backup-file)
2633 backup-file
2634 ;; there is no automatic backup, but maybe the user made one manually
2635 (setq backup-file (vc-version-backup-file-name file rev 'manual))
2636 (if (file-exists-p backup-file)
2637 backup-file)))))
2639 (defun vc-revert-file (file)
2640 "Revert FILE back to the repository working revision it was based on."
2641 (with-vc-properties
2642 (list file)
2643 (let ((backup-file (vc-version-backup-file file)))
2644 (when backup-file
2645 (copy-file backup-file file 'ok-if-already-exists 'keep-date)
2646 (vc-delete-automatic-version-backups file))
2647 (vc-call revert file backup-file))
2648 `((vc-state . up-to-date)
2649 (vc-checkout-time . ,(nth 5 (file-attributes file)))))
2650 (vc-resynch-buffer file t t))
2652 ;;;###autoload
2653 (defun vc-switch-backend (file backend)
2654 "Make BACKEND the current version control system for FILE.
2655 FILE must already be registered in BACKEND. The change is not
2656 permanent, only for the current session. This function only changes
2657 VC's perspective on FILE, it does not register or unregister it.
2658 By default, this command cycles through the registered backends.
2659 To get a prompt, use a prefix argument."
2660 (interactive
2661 (list
2662 (or buffer-file-name
2663 (error "There is no version-controlled file in this buffer"))
2664 (let ((backend (vc-backend buffer-file-name))
2665 (backends nil))
2666 (unless backend
2667 (error "File %s is not under version control" buffer-file-name))
2668 ;; Find the registered backends.
2669 (dolist (backend vc-handled-backends)
2670 (when (vc-call-backend backend 'registered buffer-file-name)
2671 (push backend backends)))
2672 ;; Find the next backend.
2673 (let ((def (car (delq backend (append (memq backend backends) backends))))
2674 (others (delete backend backends)))
2675 (cond
2676 ((null others) (error "No other backend to switch to"))
2677 (current-prefix-arg
2678 (intern
2679 (upcase
2680 (completing-read
2681 (format "Switch to backend [%s]: " def)
2682 (mapcar (lambda (b) (list (downcase (symbol-name b)))) backends)
2683 nil t nil nil (downcase (symbol-name def))))))
2684 (t def))))))
2685 (unless (eq backend (vc-backend file))
2686 (vc-file-clearprops file)
2687 (vc-file-setprop file 'vc-backend backend)
2688 ;; Force recomputation of the state
2689 (unless (vc-call-backend backend 'registered file)
2690 (vc-file-clearprops file)
2691 (error "%s is not registered in %s" file backend))
2692 (vc-mode-line file)))
2694 ;;;###autoload
2695 (defun vc-transfer-file (file new-backend)
2696 "Transfer FILE to another version control system NEW-BACKEND.
2697 If NEW-BACKEND has a higher precedence than FILE's current backend
2698 \(i.e. it comes earlier in `vc-handled-backends'), then register FILE in
2699 NEW-BACKEND, using the revision number from the current backend as the
2700 base level. If NEW-BACKEND has a lower precedence than the current
2701 backend, then commit all changes that were made under the current
2702 backend to NEW-BACKEND, and unregister FILE from the current backend.
2703 \(If FILE is not yet registered under NEW-BACKEND, register it.)"
2704 (let* ((old-backend (vc-backend file))
2705 (edited (memq (vc-state file) '(edited needs-merge)))
2706 (registered (vc-call-backend new-backend 'registered file))
2707 (move
2708 (and registered ; Never move if not registered in new-backend yet.
2709 ;; move if new-backend comes later in vc-handled-backends
2710 (or (memq new-backend (memq old-backend vc-handled-backends))
2711 (y-or-n-p "Final transfer? "))))
2712 (comment nil))
2713 (if (eq old-backend new-backend)
2714 (error "%s is the current backend of %s" new-backend file))
2715 (if registered
2716 (set-file-modes file (logior (file-modes file) 128))
2717 ;; `registered' might have switched under us.
2718 (vc-switch-backend file old-backend)
2719 (let* ((rev (vc-working-revision file))
2720 (modified-file (and edited (make-temp-file file)))
2721 (unmodified-file (and modified-file (vc-version-backup-file file))))
2722 ;; Go back to the base unmodified file.
2723 (unwind-protect
2724 (progn
2725 (when modified-file
2726 (copy-file file modified-file 'ok-if-already-exists)
2727 ;; If we have a local copy of the unmodified file, handle that
2728 ;; here and not in vc-revert-file because we don't want to
2729 ;; delete that copy -- it is still useful for OLD-BACKEND.
2730 (if unmodified-file
2731 (copy-file unmodified-file file
2732 'ok-if-already-exists 'keep-date)
2733 (if (y-or-n-p "Get base revision from master? ")
2734 (vc-revert-file file))))
2735 (vc-call-backend new-backend 'receive-file file rev))
2736 (when modified-file
2737 (vc-switch-backend file new-backend)
2738 (unless (eq (vc-checkout-model file) 'implicit)
2739 (vc-checkout file t nil))
2740 (rename-file modified-file file 'ok-if-already-exists)
2741 (vc-file-setprop file 'vc-checkout-time nil)))))
2742 (when move
2743 (vc-switch-backend file old-backend)
2744 (setq comment (vc-call comment-history file))
2745 (vc-call unregister file))
2746 (vc-switch-backend file new-backend)
2747 (when (or move edited)
2748 (vc-file-setprop file 'vc-state 'edited)
2749 (vc-mode-line file)
2750 (vc-checkin file nil comment (stringp comment)))))
2752 (defun vc-rename-master (oldmaster newfile templates)
2753 "Rename OLDMASTER to be the master file for NEWFILE based on TEMPLATES."
2754 (let* ((dir (file-name-directory (expand-file-name oldmaster)))
2755 (newdir (or (file-name-directory newfile) ""))
2756 (newbase (file-name-nondirectory newfile))
2757 (masters
2758 ;; List of potential master files for `newfile'
2759 (mapcar
2760 (lambda (s) (vc-possible-master s newdir newbase))
2761 templates)))
2762 (if (or (file-symlink-p oldmaster)
2763 (file-symlink-p (file-name-directory oldmaster)))
2764 (error "This is unsafe in the presence of symbolic links"))
2765 (rename-file
2766 oldmaster
2767 (catch 'found
2768 ;; If possible, keep the master file in the same directory.
2769 (dolist (f masters)
2770 (if (and f (string= (file-name-directory (expand-file-name f)) dir))
2771 (throw 'found f)))
2772 ;; If not, just use the first possible place.
2773 (dolist (f masters)
2774 (and f (or (not (setq dir (file-name-directory f)))
2775 (file-directory-p dir))
2776 (throw 'found f)))
2777 (error "New file lacks a version control directory")))))
2779 (defun vc-delete-file (file)
2780 "Delete file and mark it as such in the version control system."
2781 (interactive "fVC delete file: ")
2782 (let ((buf (get-file-buffer file))
2783 (backend (vc-backend file)))
2784 (unless backend
2785 (error "File %s is not under version control"
2786 (file-name-nondirectory file)))
2787 (unless (vc-find-backend-function backend 'delete-file)
2788 (error "Deleting files under %s is not supported in VC" backend))
2789 (if (and buf (buffer-modified-p buf))
2790 (error "Please save files before deleting them"))
2791 (unless (y-or-n-p (format "Really want to delete %s? "
2792 (file-name-nondirectory file)))
2793 (error "Abort!"))
2794 (unless (or (file-directory-p file) (null make-backup-files))
2795 (with-current-buffer (or buf (find-file-noselect file))
2796 (let ((backup-inhibited nil))
2797 (backup-buffer))))
2798 (vc-call delete-file file)
2799 ;; If the backend hasn't deleted the file itself, let's do it for him.
2800 (if (file-exists-p file) (delete-file file))))
2802 ;;;###autoload
2803 (defun vc-rename-file (old new)
2804 "Rename file OLD to NEW, and rename its master file likewise."
2805 (interactive "fVC rename file: \nFRename to: ")
2806 (let ((oldbuf (get-file-buffer old)))
2807 (if (and oldbuf (buffer-modified-p oldbuf))
2808 (error "Please save files before moving them"))
2809 (if (get-file-buffer new)
2810 (error "Already editing new file name"))
2811 (if (file-exists-p new)
2812 (error "New file already exists"))
2813 (let ((state (vc-state old)))
2814 (unless (memq state '(up-to-date edited))
2815 (error "Please %s files before moving them"
2816 (if (stringp state) "check in" "update"))))
2817 (vc-call rename-file old new)
2818 (vc-file-clearprops old)
2819 ;; Move the actual file (unless the backend did it already)
2820 (if (file-exists-p old) (rename-file old new))
2821 ;; ?? Renaming a file might change its contents due to keyword expansion.
2822 ;; We should really check out a new copy if the old copy was precisely equal
2823 ;; to some checked-in revision. However, testing for this is tricky....
2824 (if oldbuf
2825 (with-current-buffer oldbuf
2826 (let ((buffer-read-only buffer-read-only))
2827 (set-visited-file-name new))
2828 (vc-backend new)
2829 (vc-mode-line new)
2830 (set-buffer-modified-p nil)))))
2832 ;;;###autoload
2833 (defun vc-update-change-log (&rest args)
2834 "Find change log file and add entries from recent version control logs.
2835 Normally, find log entries for all registered files in the default
2836 directory.
2838 With prefix arg of \\[universal-argument], only find log entries for the current buffer's file.
2840 With any numeric prefix arg, find log entries for all currently visited
2841 files that are under version control. This puts all the entries in the
2842 log for the default directory, which may not be appropriate.
2844 From a program, any ARGS are assumed to be filenames for which
2845 log entries should be gathered."
2846 (interactive
2847 (cond ((consp current-prefix-arg) ;C-u
2848 (list buffer-file-name))
2849 (current-prefix-arg ;Numeric argument.
2850 (let ((files nil)
2851 (buffers (buffer-list))
2852 file)
2853 (while buffers
2854 (setq file (buffer-file-name (car buffers)))
2855 (and file (vc-backend file)
2856 (setq files (cons file files)))
2857 (setq buffers (cdr buffers)))
2858 files))
2860 ;; Don't supply any filenames to backend; this means
2861 ;; it should find all relevant files relative to
2862 ;; the default-directory.
2863 nil)))
2864 (dolist (file (or args (list default-directory)))
2865 (if (eq (string-match tramp-file-name-regexp file) 0)
2866 (error "Sorry, vc-update-change-log does not work over Tramp")))
2867 (vc-call-backend (vc-responsible-backend default-directory)
2868 'update-changelog args))
2870 ;;; The default back end. Assumes RCS-like revision numbering.
2872 (defun vc-default-revision-granularity ()
2873 (error "Your backend will not work with this version of VC mode."))
2875 ;; functions that operate on RCS revision numbers. This code should
2876 ;; also be moved into the backends. It stays for now, however, since
2877 ;; it is used in code below.
2878 ;;;###autoload
2879 (defun vc-trunk-p (rev)
2880 "Return t if REV is a revision on the trunk."
2881 (not (eq nil (string-match "\\`[0-9]+\\.[0-9]+\\'" rev))))
2883 (defun vc-branch-p (rev)
2884 "Return t if REV is a branch revision."
2885 (not (eq nil (string-match "\\`[0-9]+\\(\\.[0-9]+\\.[0-9]+\\)*\\'" rev))))
2887 ;;;###autoload
2888 (defun vc-branch-part (rev)
2889 "Return the branch part of a revision number REV."
2890 (let ((index (string-match "\\.[0-9]+\\'" rev)))
2891 (if index
2892 (substring rev 0 index))))
2894 (defun vc-minor-part (rev)
2895 "Return the minor revision number of a revision number REV."
2896 (string-match "[0-9]+\\'" rev)
2897 (substring rev (match-beginning 0) (match-end 0)))
2899 (defun vc-default-previous-revision (backend file rev)
2900 "Return the revision number immediately preceding REV for FILE,
2901 or nil if there is no previous revision. This default
2902 implementation works for MAJOR.MINOR-style revision numbers as
2903 used by RCS and CVS."
2904 (let ((branch (vc-branch-part rev))
2905 (minor-num (string-to-number (vc-minor-part rev))))
2906 (when branch
2907 (if (> minor-num 1)
2908 ;; revision does probably not start a branch or release
2909 (concat branch "." (number-to-string (1- minor-num)))
2910 (if (vc-trunk-p rev)
2911 ;; we are at the beginning of the trunk --
2912 ;; don't know anything to return here
2914 ;; we are at the beginning of a branch --
2915 ;; return revision of starting point
2916 (vc-branch-part branch))))))
2918 (defun vc-default-next-revision (backend file rev)
2919 "Return the revision number immediately following REV for FILE,
2920 or nil if there is no next revision. This default implementation
2921 works for MAJOR.MINOR-style revision numbers as used by RCS
2922 and CVS."
2923 (when (not (string= rev (vc-working-revision file)))
2924 (let ((branch (vc-branch-part rev))
2925 (minor-num (string-to-number (vc-minor-part rev))))
2926 (concat branch "." (number-to-string (1+ minor-num))))))
2928 (defun vc-default-responsible-p (backend file)
2929 "Indicate whether BACKEND is reponsible for FILE.
2930 The default is to return nil always."
2931 nil)
2933 (defun vc-default-could-register (backend file)
2934 "Return non-nil if BACKEND could be used to register FILE.
2935 The default implementation returns t for all files."
2938 (defun vc-default-latest-on-branch-p (backend file)
2939 "Return non-nil if FILE is the latest on its branch.
2940 This default implementation always returns non-nil, which means that
2941 editing non-current revisions is not supported by default."
2944 (defun vc-default-init-revision (backend) vc-default-init-revision)
2946 (defalias 'vc-cvs-update-changelog 'vc-update-changelog-rcs2log)
2947 (defalias 'vc-rcs-update-changelog 'vc-update-changelog-rcs2log)
2948 ;; FIXME: This should probably be moved to vc-rcs.el and replaced in
2949 ;; vc-cvs.el by code using cvs2cl.
2950 (defun vc-update-changelog-rcs2log (backend files)
2951 "Default implementation of update-changelog.
2952 Uses `rcs2log' which only works for RCS and CVS."
2953 ;; FIXME: We (c|sh)ould add support for cvs2cl
2954 (let ((odefault default-directory)
2955 (changelog (find-change-log))
2956 ;; Presumably not portable to non-Unixy systems, along with rcs2log:
2957 (tempfile (make-temp-file
2958 (expand-file-name "vc"
2959 (or small-temporary-file-directory
2960 temporary-file-directory))))
2961 (login-name (or user-login-name
2962 (format "uid%d" (number-to-string (user-uid)))))
2963 (full-name (or add-log-full-name
2964 (user-full-name)
2965 (user-login-name)
2966 (format "uid%d" (number-to-string (user-uid)))))
2967 (mailing-address (or add-log-mailing-address
2968 user-mail-address)))
2969 (find-file-other-window changelog)
2970 (barf-if-buffer-read-only)
2971 (vc-buffer-sync)
2972 (undo-boundary)
2973 (goto-char (point-min))
2974 (push-mark)
2975 (message "Computing change log entries...")
2976 (message "Computing change log entries... %s"
2977 (unwind-protect
2978 (progn
2979 (setq default-directory odefault)
2980 (if (eq 0 (apply 'call-process
2981 (expand-file-name "rcs2log"
2982 exec-directory)
2983 nil (list t tempfile) nil
2984 "-c" changelog
2985 "-u" (concat login-name
2986 "\t" full-name
2987 "\t" mailing-address)
2988 (mapcar
2989 (lambda (f)
2990 (file-relative-name
2991 (expand-file-name f odefault)))
2992 files)))
2993 "done"
2994 (pop-to-buffer (get-buffer-create "*vc*"))
2995 (erase-buffer)
2996 (insert-file-contents tempfile)
2997 "failed"))
2998 (setq default-directory (file-name-directory changelog))
2999 (delete-file tempfile)))))
3001 (defun vc-default-find-revision (backend file rev buffer)
3002 "Provide the new `find-revision' op based on the old `checkout' op.
3003 This is only for compatibility with old backends. They should be updated
3004 to provide the `find-revision' operation instead."
3005 (let ((tmpfile (make-temp-file (expand-file-name file))))
3006 (unwind-protect
3007 (progn
3008 (vc-call-backend backend 'checkout file nil rev tmpfile)
3009 (with-current-buffer buffer
3010 (insert-file-contents-literally tmpfile)))
3011 (delete-file tmpfile))))
3013 (defun vc-default-dired-state-info (backend file)
3014 (let* ((state (vc-state file))
3015 (statestring
3016 (cond
3017 ((stringp state) (concat "(" state ")"))
3018 ((eq state 'edited) (concat "(" (vc-user-login-name file) ")"))
3019 ((eq state 'needs-merge) "(merge)")
3020 ((eq state 'needs-patch) "(patch)")
3021 ((eq state 'unlocked-changes) "(stale)")))
3022 (buffer
3023 (get-file-buffer file))
3024 (modflag
3025 (if (and buffer (buffer-modified-p buffer)) "+" "")))
3026 (concat statestring modflag)))
3028 (defun vc-default-rename-file (backend old new)
3029 (condition-case nil
3030 (add-name-to-file old new)
3031 (error (rename-file old new)))
3032 (vc-delete-file old)
3033 (with-current-buffer (find-file-noselect new)
3034 (vc-register)))
3036 (defalias 'vc-default-logentry-check 'ignore)
3038 (defun vc-default-check-headers (backend)
3039 "Default implementation of check-headers; always returns nil."
3040 nil)
3042 (defun vc-default-log-view-mode (backend) (log-view-mode))
3044 (defun vc-default-show-log-entry (backend rev)
3045 (with-no-warnings
3046 (log-view-goto-rev rev)))
3048 (defun vc-default-comment-history (backend file)
3049 "Return a string with all log entries stored in BACKEND for FILE."
3050 (if (vc-find-backend-function backend 'print-log)
3051 (with-current-buffer "*vc*"
3052 (vc-call print-log (list file))
3053 (vc-call-backend backend 'wash-log)
3054 (buffer-string))))
3056 (defun vc-default-unregister (backend file)
3057 "Default implementation of `vc-unregister', signals an error."
3058 (error "Unregistering files is not supported for %s" backend))
3060 (defun vc-default-receive-file (backend file rev)
3061 "Let BACKEND receive FILE from another version control system."
3062 (vc-call-backend backend 'register file rev ""))
3064 (defun vc-default-create-snapshot (backend dir name branchp)
3065 (when branchp
3066 (error "VC backend %s does not support module branches" backend))
3067 (let ((result (vc-snapshot-precondition dir)))
3068 (if (stringp result)
3069 (error "File %s is not up-to-date" result)
3070 (vc-file-tree-walk
3072 (lambda (f)
3073 (vc-call assign-name f name))))))
3075 (defun vc-default-retrieve-snapshot (backend dir name update)
3076 (if (string= name "")
3077 (progn
3078 (vc-file-tree-walk
3080 (lambda (f) (and
3081 (vc-up-to-date-p f)
3082 (vc-error-occurred
3083 (vc-call checkout f nil "")
3084 (if update (vc-resynch-buffer f t t)))))))
3085 (let ((result (vc-snapshot-precondition dir)))
3086 (if (stringp result)
3087 (error "File %s is locked" result)
3088 (setq update (and (eq result 'visited) update))
3089 (vc-file-tree-walk
3091 (lambda (f) (vc-error-occurred
3092 (vc-call checkout f nil name)
3093 (if update (vc-resynch-buffer f t t)))))))))
3095 (defun vc-default-revert (backend file contents-done)
3096 (unless contents-done
3097 (let ((rev (vc-working-revision file))
3098 (file-buffer (or (get-file-buffer file) (current-buffer))))
3099 (message "Checking out %s..." file)
3100 (let ((failed t)
3101 (backup-name (car (find-backup-file-name file))))
3102 (when backup-name
3103 (copy-file file backup-name 'ok-if-already-exists 'keep-date)
3104 (unless (file-writable-p file)
3105 (set-file-modes file (logior (file-modes file) 128))))
3106 (unwind-protect
3107 (let ((coding-system-for-read 'no-conversion)
3108 (coding-system-for-write 'no-conversion))
3109 (with-temp-file file
3110 (let ((outbuf (current-buffer)))
3111 ;; Change buffer to get local value of vc-checkout-switches.
3112 (with-current-buffer file-buffer
3113 (let ((default-directory (file-name-directory file)))
3114 (vc-call find-revision file rev outbuf)))))
3115 (setq failed nil))
3116 (when backup-name
3117 (if failed
3118 (rename-file backup-name file 'ok-if-already-exists)
3119 (and (not vc-make-backup-files) (delete-file backup-name))))))
3120 (message "Checking out %s...done" file))))
3122 (defun vc-default-revision-completion-table (backend file) nil)
3124 (defun vc-check-headers ()
3125 "Check if the current file has any headers in it."
3126 (interactive)
3127 (vc-call-backend (vc-backend buffer-file-name) 'check-headers))
3129 ;;; Annotate functionality
3131 ;; Declare globally instead of additional parameter to
3132 ;; temp-buffer-show-function (not possible to pass more than one
3133 ;; parameter). The use of annotate-ratio is deprecated in favor of
3134 ;; annotate-mode, which replaces it with the more sensible "span-to
3135 ;; days", along with autoscaling support.
3136 (defvar vc-annotate-ratio nil "Global variable.")
3138 ;; internal buffer-local variables
3139 (defvar vc-annotate-backend nil)
3140 (defvar vc-annotate-parent-file nil)
3141 (defvar vc-annotate-parent-rev nil)
3142 (defvar vc-annotate-parent-display-mode nil)
3144 (defconst vc-annotate-font-lock-keywords
3145 ;; The fontification is done by vc-annotate-lines instead of font-lock.
3146 '((vc-annotate-lines)))
3148 (define-derived-mode vc-annotate-mode fundamental-mode "Annotate"
3149 "Major mode for output buffers of the `vc-annotate' command.
3151 You can use the mode-specific menu to alter the time-span of the used
3152 colors. See variable `vc-annotate-menu-elements' for customizing the
3153 menu items."
3154 (set (make-local-variable 'truncate-lines) t)
3155 (set (make-local-variable 'font-lock-defaults)
3156 '(vc-annotate-font-lock-keywords t))
3157 (view-mode 1))
3159 (defun vc-annotate-display-default (ratio)
3160 "Display the output of \\[vc-annotate] using the default color range.
3161 The color range is given by `vc-annotate-color-map', scaled by RATIO.
3162 The current time is used as the offset."
3163 (interactive (progn (kill-local-variable 'vc-annotate-color-map) '(1.0)))
3164 (message "Redisplaying annotation...")
3165 (vc-annotate-display ratio)
3166 (message "Redisplaying annotation...done"))
3168 (defun vc-annotate-oldest-in-map (color-map)
3169 "Return the oldest time in the COLOR-MAP."
3170 ;; Since entries should be sorted, we can just use the last one.
3171 (caar (last color-map)))
3173 (defun vc-annotate-display-autoscale (&optional full)
3174 "Highlight the output of \\[vc-annotate] using an autoscaled color map.
3175 Autoscaling means that the map is scaled from the current time to the
3176 oldest annotation in the buffer, or, with prefix argument FULL, to
3177 cover the range from the oldest annotation to the newest."
3178 (interactive "P")
3179 (let ((newest 0.0)
3180 (oldest 999999.) ;Any CVS users at the founding of Rome?
3181 (current (vc-annotate-convert-time (current-time)))
3182 date)
3183 (message "Redisplaying annotation...")
3184 ;; Run through this file and find the oldest and newest dates annotated.
3185 (save-excursion
3186 (goto-char (point-min))
3187 (while (not (eobp))
3188 (when (setq date (vc-call-backend vc-annotate-backend 'annotate-time))
3189 (if (> date newest)
3190 (setq newest date))
3191 (if (< date oldest)
3192 (setq oldest date)))
3193 (forward-line 1)))
3194 (vc-annotate-display
3195 (/ (- (if full newest current) oldest)
3196 (vc-annotate-oldest-in-map vc-annotate-color-map))
3197 (if full newest))
3198 (message "Redisplaying annotation...done \(%s\)"
3199 (if full
3200 (format "Spanned from %.1f to %.1f days old"
3201 (- current oldest)
3202 (- current newest))
3203 (format "Spanned to %.1f days old" (- current oldest))))))
3205 ;; Menu -- Using easymenu.el
3206 (easy-menu-define vc-annotate-mode-menu vc-annotate-mode-map
3207 "VC Annotate Display Menu"
3208 `("VC-Annotate"
3209 ["By Color Map Range" (unless (null vc-annotate-display-mode)
3210 (setq vc-annotate-display-mode nil)
3211 (vc-annotate-display-select))
3212 :style toggle :selected (null vc-annotate-display-mode)]
3213 ,@(let ((oldest-in-map (vc-annotate-oldest-in-map vc-annotate-color-map)))
3214 (mapcar (lambda (element)
3215 (let ((days (* element oldest-in-map)))
3216 `[,(format "Span %.1f days" days)
3217 (vc-annotate-display-select nil ,days)
3218 :style toggle :selected
3219 (eql vc-annotate-display-mode ,days) ]))
3220 vc-annotate-menu-elements))
3221 ["Span ..."
3222 (vc-annotate-display-select
3223 nil (float (string-to-number (read-string "Span how many days? "))))]
3224 "--"
3225 ["Span to Oldest"
3226 (unless (eq vc-annotate-display-mode 'scale)
3227 (vc-annotate-display-select nil 'scale))
3228 :style toggle :selected
3229 (eq vc-annotate-display-mode 'scale)]
3230 ["Span Oldest->Newest"
3231 (unless (eq vc-annotate-display-mode 'fullscale)
3232 (vc-annotate-display-select nil 'fullscale))
3233 :style toggle :selected
3234 (eq vc-annotate-display-mode 'fullscale)]
3235 "--"
3236 ["Annotate previous revision" vc-annotate-prev-revision]
3237 ["Annotate next revision" vc-annotate-next-revision]
3238 ["Annotate revision at line" vc-annotate-revision-at-line]
3239 ["Annotate revision previous to line" vc-annotate-revision-previous-to-line]
3240 ["Annotate latest revision" vc-annotate-working-revision]
3241 ["Show log of revision at line" vc-annotate-show-log-revision-at-line]
3242 ["Show diff of revision at line" vc-annotate-show-diff-revision-at-line]))
3244 (defun vc-annotate-display-select (&optional buffer mode)
3245 "Highlight the output of \\[vc-annotate].
3246 By default, the current buffer is highlighted, unless overridden by
3247 BUFFER. `vc-annotate-display-mode' specifies the highlighting mode to
3248 use; you may override this using the second optional arg MODE."
3249 (interactive)
3250 (if mode (setq vc-annotate-display-mode mode))
3251 (pop-to-buffer (or buffer (current-buffer)))
3252 (cond ((null vc-annotate-display-mode)
3253 ;; The ratio is global, thus relative to the global color-map.
3254 (kill-local-variable 'vc-annotate-color-map)
3255 (vc-annotate-display-default (or vc-annotate-ratio 1.0)))
3256 ;; One of the auto-scaling modes
3257 ((eq vc-annotate-display-mode 'scale)
3258 (vc-exec-after `(vc-annotate-display-autoscale)))
3259 ((eq vc-annotate-display-mode 'fullscale)
3260 (vc-exec-after `(vc-annotate-display-autoscale t)))
3261 ((numberp vc-annotate-display-mode) ; A fixed number of days lookback
3262 (vc-annotate-display-default
3263 (/ vc-annotate-display-mode
3264 (vc-annotate-oldest-in-map vc-annotate-color-map))))
3265 (t (error "No such display mode: %s"
3266 vc-annotate-display-mode))))
3268 ;;;###autoload
3269 (defun vc-annotate (file rev &optional display-mode buf)
3270 "Display the edit history of the current file using colors.
3272 This command creates a buffer that shows, for each line of the current
3273 file, when it was last edited and by whom. Additionally, colors are
3274 used to show the age of each line--blue means oldest, red means
3275 youngest, and intermediate colors indicate intermediate ages. By
3276 default, the time scale stretches back one year into the past;
3277 everything that is older than that is shown in blue.
3279 With a prefix argument, this command asks two questions in the
3280 minibuffer. First, you may enter a revision number; then the buffer
3281 displays and annotates that revision instead of the working revision
3282 \(type RET in the minibuffer to leave that default unchanged). Then,
3283 you are prompted for the time span in days which the color range
3284 should cover. For example, a time span of 20 days means that changes
3285 over the past 20 days are shown in red to blue, according to their
3286 age, and everything that is older than that is shown in blue.
3288 Customization variables:
3290 `vc-annotate-menu-elements' customizes the menu elements of the
3291 mode-specific menu. `vc-annotate-color-map' and
3292 `vc-annotate-very-old-color' defines the mapping of time to
3293 colors. `vc-annotate-background' specifies the background color."
3294 (interactive
3295 (save-current-buffer
3296 (vc-ensure-vc-buffer)
3297 (list buffer-file-name
3298 (let ((def (vc-working-revision buffer-file-name)))
3299 (if (null current-prefix-arg) def
3300 (read-string
3301 (format "Annotate from revision (default %s): " def)
3302 nil nil def)))
3303 (if (null current-prefix-arg)
3304 vc-annotate-display-mode
3305 (float (string-to-number
3306 (read-string "Annotate span days (default 20): "
3307 nil nil "20")))))))
3308 (vc-ensure-vc-buffer)
3309 (setq vc-annotate-display-mode display-mode) ;Not sure why. --Stef
3310 (let* ((temp-buffer-name (format "*Annotate %s (rev %s)*" (buffer-name) rev))
3311 (temp-buffer-show-function 'vc-annotate-display-select)
3312 ;; If BUF is specified, we presume the caller maintains current line,
3313 ;; so we don't need to do it here. This implementation may give
3314 ;; strange results occasionally in the case of REV != WORKFILE-REV.
3315 (current-line (unless buf (line-number-at-pos))))
3316 (message "Annotating...")
3317 ;; If BUF is specified it tells in which buffer we should put the
3318 ;; annotations. This is used when switching annotations to another
3319 ;; revision, so we should update the buffer's name.
3320 (if buf (with-current-buffer buf
3321 (rename-buffer temp-buffer-name t)
3322 ;; In case it had to be uniquified.
3323 (setq temp-buffer-name (buffer-name))))
3324 (with-output-to-temp-buffer temp-buffer-name
3325 (vc-call annotate-command file (get-buffer temp-buffer-name) rev)
3326 ;; we must setup the mode first, and then set our local
3327 ;; variables before the show-function is called at the exit of
3328 ;; with-output-to-temp-buffer
3329 (with-current-buffer temp-buffer-name
3330 (if (not (equal major-mode 'vc-annotate-mode))
3331 (vc-annotate-mode))
3332 (set (make-local-variable 'vc-annotate-backend) (vc-backend file))
3333 (set (make-local-variable 'vc-annotate-parent-file) file)
3334 (set (make-local-variable 'vc-annotate-parent-rev) rev)
3335 (set (make-local-variable 'vc-annotate-parent-display-mode)
3336 display-mode)))
3338 (with-current-buffer temp-buffer-name
3339 (vc-exec-after
3340 `(progn
3341 ;; Ideally, we'd rather not move point if the user has already
3342 ;; moved it elsewhere, but really point here is not the position
3343 ;; of the user's cursor :-(
3344 (when ,current-line ;(and (bobp))
3345 (goto-line ,current-line)
3346 (setq vc-sentinel-movepoint))
3347 (unless (active-minibuffer-window)
3348 (message "Annotating... done")))))))
3350 (defun vc-annotate-prev-revision (prefix)
3351 "Visit the annotation of the revision previous to this one.
3353 With a numeric prefix argument, annotate the revision that many
3354 revisions previous."
3355 (interactive "p")
3356 (vc-annotate-warp-revision (- 0 prefix)))
3358 (defun vc-annotate-next-revision (prefix)
3359 "Visit the annotation of the revision after this one.
3361 With a numeric prefix argument, annotate the revision that many
3362 revisions after."
3363 (interactive "p")
3364 (vc-annotate-warp-revision prefix))
3366 (defun vc-annotate-working-revision ()
3367 "Visit the annotation of the working revision of this file."
3368 (interactive)
3369 (if (not (equal major-mode 'vc-annotate-mode))
3370 (message "Cannot be invoked outside of a vc annotate buffer")
3371 (let ((warp-rev (vc-working-revision vc-annotate-parent-file)))
3372 (if (equal warp-rev vc-annotate-parent-rev)
3373 (message "Already at revision %s" warp-rev)
3374 (vc-annotate-warp-revision warp-rev)))))
3376 (defun vc-annotate-extract-revision-at-line ()
3377 "Extract the revision number of the current line."
3378 ;; This function must be invoked from a buffer in vc-annotate-mode
3379 (vc-call-backend vc-annotate-backend 'annotate-extract-revision-at-line))
3381 (defun vc-annotate-revision-at-line ()
3382 "Visit the annotation of the revision identified in the current line."
3383 (interactive)
3384 (if (not (equal major-mode 'vc-annotate-mode))
3385 (message "Cannot be invoked outside of a vc annotate buffer")
3386 (let ((rev-at-line (vc-annotate-extract-revision-at-line)))
3387 (if (not rev-at-line)
3388 (message "Cannot extract revision number from the current line")
3389 (if (equal rev-at-line vc-annotate-parent-rev)
3390 (message "Already at revision %s" rev-at-line)
3391 (vc-annotate-warp-revision rev-at-line))))))
3393 (defun vc-annotate-revision-previous-to-line ()
3394 "Visit the annotation of the revision before the revision at line."
3395 (interactive)
3396 (if (not (equal major-mode 'vc-annotate-mode))
3397 (message "Cannot be invoked outside of a vc annotate buffer")
3398 (let ((rev-at-line (vc-annotate-extract-revision-at-line))
3399 (prev-rev nil))
3400 (if (not rev-at-line)
3401 (message "Cannot extract revision number from the current line")
3402 (setq prev-rev
3403 (vc-call previous-revision vc-annotate-parent-file rev-at-line))
3404 (vc-annotate-warp-revision prev-rev)))))
3406 (defun vc-annotate-show-log-revision-at-line ()
3407 "Visit the log of the revision at line."
3408 (interactive)
3409 (if (not (equal major-mode 'vc-annotate-mode))
3410 (message "Cannot be invoked outside of a vc annotate buffer")
3411 (let ((rev-at-line (vc-annotate-extract-revision-at-line)))
3412 (if (not rev-at-line)
3413 (message "Cannot extract revision number from the current line")
3414 (vc-print-log rev-at-line)))))
3416 (defun vc-annotate-show-diff-revision-at-line ()
3417 "Visit the diff of the revision at line from its previous revision."
3418 (interactive)
3419 (if (not (equal major-mode 'vc-annotate-mode))
3420 (message "Cannot be invoked outside of a vc annotate buffer")
3421 (let ((rev-at-line (vc-annotate-extract-revision-at-line))
3422 (prev-rev nil))
3423 (if (not rev-at-line)
3424 (message "Cannot extract revision number from the current line")
3425 (setq prev-rev
3426 (vc-call previous-revision vc-annotate-parent-file rev-at-line))
3427 (if (not prev-rev)
3428 (message "Cannot diff from any revision prior to %s" rev-at-line)
3429 (save-window-excursion
3430 (vc-diff-internal
3431 (vc-backend vc-annotate-parent-file)
3433 (list vc-annotate-parent-file)
3434 prev-rev rev-at-line))
3435 (switch-to-buffer "*vc-diff*"))))))
3437 (defun vc-annotate-warp-revision (revspec)
3438 "Annotate the revision described by REVSPEC.
3440 If REVSPEC is a positive integer, warp that many revisions
3441 forward, if possible, otherwise echo a warning message. If
3442 REVSPEC is a negative integer, warp that many revisions backward,
3443 if possible, otherwise echo a warning message. If REVSPEC is a
3444 string, then it describes a revision number, so warp to that
3445 revision."
3446 (if (not (equal major-mode 'vc-annotate-mode))
3447 (message "Cannot be invoked outside of a vc annotate buffer")
3448 (let* ((buf (current-buffer))
3449 (oldline (line-number-at-pos))
3450 (revspeccopy revspec)
3451 (newrev nil))
3452 (cond
3453 ((and (integerp revspec) (> revspec 0))
3454 (setq newrev vc-annotate-parent-rev)
3455 (while (and (> revspec 0) newrev)
3456 (setq newrev (vc-call next-revision
3457 vc-annotate-parent-file newrev))
3458 (setq revspec (1- revspec)))
3459 (if (not newrev)
3460 (message "Cannot increment %d revisions from revision %s"
3461 revspeccopy vc-annotate-parent-rev)))
3462 ((and (integerp revspec) (< revspec 0))
3463 (setq newrev vc-annotate-parent-rev)
3464 (while (and (< revspec 0) newrev)
3465 (setq newrev (vc-call previous-revision
3466 vc-annotate-parent-file newrev))
3467 (setq revspec (1+ revspec)))
3468 (if (not newrev)
3469 (message "Cannot decrement %d revisions from revision %s"
3470 (- 0 revspeccopy) vc-annotate-parent-rev)))
3471 ((stringp revspec) (setq newrev revspec))
3472 (t (error "Invalid argument to vc-annotate-warp-revision")))
3473 (when newrev
3474 (vc-annotate vc-annotate-parent-file newrev
3475 vc-annotate-parent-display-mode
3476 buf)
3477 (goto-line (min oldline (progn (goto-char (point-max))
3478 (forward-line -1)
3479 (line-number-at-pos))) buf)))))
3481 (defun vc-annotate-compcar (threshold a-list)
3482 "Test successive cons cells of A-LIST against THRESHOLD.
3483 Return the first cons cell with a car that is not less than THRESHOLD,
3484 nil if no such cell exists."
3485 (let ((i 1)
3486 (tmp-cons (car a-list)))
3487 (while (and tmp-cons (< (car tmp-cons) threshold))
3488 (setq tmp-cons (car (nthcdr i a-list)))
3489 (setq i (+ i 1)))
3490 tmp-cons)) ; Return the appropriate value
3492 (defun vc-annotate-convert-time (time)
3493 "Convert a time value to a floating-point number of days.
3494 The argument TIME is a list as returned by `current-time' or
3495 `encode-time', only the first two elements of that list are considered."
3496 (/ (+ (* (float (car time)) (lsh 1 16)) (cadr time)) 24 3600))
3498 (defun vc-annotate-difference (&optional offset)
3499 "Return the time span in days to the next annotation.
3500 This calls the backend function annotate-time, and returns the
3501 difference in days between the time returned and the current time,
3502 or OFFSET if present."
3503 (let ((next-time (vc-call-backend vc-annotate-backend 'annotate-time)))
3504 (if next-time
3505 (- (or offset
3506 (vc-call-backend vc-annotate-backend 'annotate-current-time))
3507 next-time))))
3509 (defun vc-default-annotate-current-time (backend)
3510 "Return the current time, encoded as fractional days."
3511 (vc-annotate-convert-time (current-time)))
3513 (defvar vc-annotate-offset nil)
3515 (defun vc-annotate-display (ratio &optional offset)
3516 "Highlight `vc-annotate' output in the current buffer.
3517 RATIO, is the expansion that should be applied to `vc-annotate-color-map'.
3518 The annotations are relative to the current time, unless overridden by OFFSET."
3519 (if (/= ratio 1.0)
3520 (set (make-local-variable 'vc-annotate-color-map)
3521 (mapcar (lambda (elem) (cons (* (car elem) ratio) (cdr elem)))
3522 vc-annotate-color-map)))
3523 (set (make-local-variable 'vc-annotate-offset) offset)
3524 (font-lock-mode 1))
3526 (defun vc-annotate-lines (limit)
3527 (while (< (point) limit)
3528 (let ((difference (vc-annotate-difference vc-annotate-offset))
3529 (start (point))
3530 (end (progn (forward-line 1) (point))))
3531 (when difference
3532 (let* ((color (or (vc-annotate-compcar difference vc-annotate-color-map)
3533 (cons nil vc-annotate-very-old-color)))
3534 ;; substring from index 1 to remove any leading `#' in the name
3535 (face-name (concat "vc-annotate-face-"
3536 (if (string-equal
3537 (substring (cdr color) 0 1) "#")
3538 (substring (cdr color) 1)
3539 (cdr color))))
3540 ;; Make the face if not done.
3541 (face (or (intern-soft face-name)
3542 (let ((tmp-face (make-face (intern face-name))))
3543 (set-face-foreground tmp-face (cdr color))
3544 (if vc-annotate-background
3545 (set-face-background tmp-face
3546 vc-annotate-background))
3547 tmp-face)))) ; Return the face
3548 (put-text-property start end 'face face)))))
3549 ;; Pretend to font-lock there were no matches.
3550 nil)
3553 ;; Set up key bindings for use while editing log messages
3555 (defun vc-log-edit (fileset)
3556 "Set up `log-edit' for use with VC on FILE."
3557 (setq default-directory
3558 (with-current-buffer vc-parent-buffer default-directory))
3559 (log-edit 'vc-finish-logentry nil `(lambda () ',fileset))
3560 (set (make-local-variable 'vc-log-fileset) fileset)
3561 (make-local-variable 'vc-log-revision)
3562 (set-buffer-modified-p nil)
3563 (setq buffer-file-name nil))
3565 ;; These things should probably be generally available
3567 (defun vc-file-tree-walk (dirname func &rest args)
3568 "Walk recursively through DIRNAME.
3569 Invoke FUNC f ARGS on each VC-managed file f underneath it."
3570 (vc-file-tree-walk-internal (expand-file-name dirname) func args)
3571 (message "Traversing directory %s...done" dirname))
3573 (defun vc-file-tree-walk-internal (file func args)
3574 (if (not (file-directory-p file))
3575 (if (vc-backend file) (apply func file args))
3576 (message "Traversing directory %s..." (abbreviate-file-name file))
3577 (let ((dir (file-name-as-directory file)))
3578 (mapcar
3579 (lambda (f) (or
3580 (string-equal f ".")
3581 (string-equal f "..")
3582 (member f vc-directory-exclusion-list)
3583 (let ((dirf (expand-file-name f dir)))
3585 (file-symlink-p dirf) ;; Avoid possible loops.
3586 (vc-file-tree-walk-internal dirf func args)))))
3587 (directory-files dir)))))
3589 (provide 'vc)
3591 ;; DEVELOPER'S NOTES ON CONCURRENCY PROBLEMS IN THIS CODE
3593 ;; These may be useful to anyone who has to debug or extend the package.
3594 ;; (Note that this information corresponds to versions 5.x. Some of it
3595 ;; might have been invalidated by the additions to support branching
3596 ;; and RCS keyword lookup. AS, 1995/03/24)
3598 ;; A fundamental problem in VC is that there are time windows between
3599 ;; vc-next-action's computations of the file's version-control state and
3600 ;; the actions that change it. This is a window open to lossage in a
3601 ;; multi-user environment; someone else could nip in and change the state
3602 ;; of the master during it.
3604 ;; The performance problem is that rlog/prs calls are very expensive; we want
3605 ;; to avoid them as much as possible.
3607 ;; ANALYSIS:
3609 ;; The performance problem, it turns out, simplifies in practice to the
3610 ;; problem of making vc-state fast. The two other functions that call
3611 ;; prs/rlog will not be so commonly used that the slowdown is a problem; one
3612 ;; makes snapshots, the other deletes the calling user's last change in the
3613 ;; master.
3615 ;; The race condition implies that we have to either (a) lock the master
3616 ;; during the entire execution of vc-next-action, or (b) detect and
3617 ;; recover from errors resulting from dispatch on an out-of-date state.
3619 ;; Alternative (a) appears to be infeasible. The problem is that we can't
3620 ;; guarantee that the lock will ever be removed. Suppose a user starts a
3621 ;; checkin, the change message buffer pops up, and the user, having wandered
3622 ;; off to do something else, simply forgets about it?
3624 ;; Alternative (b), on the other hand, works well with a cheap way to speed up
3625 ;; vc-state. Usually, if a file is registered, we can read its locked/
3626 ;; unlocked state and its current owner from its permissions.
3628 ;; This shortcut will fail if someone has manually changed the workfile's
3629 ;; permissions; also if developers are munging the workfile in several
3630 ;; directories, with symlinks to a master (in this latter case, the
3631 ;; permissions shortcut will fail to detect a lock asserted from another
3632 ;; directory).
3634 ;; Note that these cases correspond exactly to the errors which could happen
3635 ;; because of a competing checkin/checkout race in between two instances of
3636 ;; vc-next-action.
3638 ;; For VC's purposes, a workfile/master pair may have the following states:
3640 ;; A. Unregistered. There is a workfile, there is no master.
3642 ;; B. Registered and not locked by anyone.
3644 ;; C. Locked by calling user and unchanged.
3646 ;; D. Locked by the calling user and changed.
3648 ;; E. Locked by someone other than the calling user.
3650 ;; This makes for 25 states and 20 error conditions. Here's the matrix:
3652 ;; VC's idea of state
3653 ;; |
3654 ;; V Actual state RCS action SCCS action Effect
3655 ;; A B C D E
3656 ;; A . 1 2 3 4 ci -u -t- admin -fb -i<file> initial admin
3657 ;; B 5 . 6 7 8 co -l get -e checkout
3658 ;; C 9 10 . 11 12 co -u unget; get revert
3659 ;; D 13 14 15 . 16 ci -u -m<comment> delta -y<comment>; get checkin
3660 ;; E 17 18 19 20 . rcs -u -M -l unget -n ; get -g steal lock
3662 ;; All commands take the master file name as a last argument (not shown).
3664 ;; In the discussion below, a "self-race" is a pathological situation in
3665 ;; which VC operations are being attempted simultaneously by two or more
3666 ;; Emacsen running under the same username.
3668 ;; The vc-next-action code has the following windows:
3670 ;; Window P:
3671 ;; Between the check for existence of a master file and the call to
3672 ;; admin/checkin in vc-buffer-admin (apparent state A). This window may
3673 ;; never close if the initial-comment feature is on.
3675 ;; Window Q:
3676 ;; Between the call to vc-workfile-unchanged-p in and the immediately
3677 ;; following revert (apparent state C).
3679 ;; Window R:
3680 ;; Between the call to vc-workfile-unchanged-p in and the following
3681 ;; checkin (apparent state D). This window may never close.
3683 ;; Window S:
3684 ;; Between the unlock and the immediately following checkout during a
3685 ;; revert operation (apparent state C). Included in window Q.
3687 ;; Window T:
3688 ;; Between vc-state and the following checkout (apparent state B).
3690 ;; Window U:
3691 ;; Between vc-state and the following revert (apparent state C).
3692 ;; Includes windows Q and S.
3694 ;; Window V:
3695 ;; Between vc-state and the following checkin (apparent state
3696 ;; D). This window may never be closed if the user fails to complete the
3697 ;; checkin message. Includes window R.
3699 ;; Window W:
3700 ;; Between vc-state and the following steal-lock (apparent
3701 ;; state E). This window may never close if the user fails to complete
3702 ;; the steal-lock message. Includes window X.
3704 ;; Window X:
3705 ;; Between the unlock and the immediately following re-lock during a
3706 ;; steal-lock operation (apparent state E). This window may never close
3707 ;; if the user fails to complete the steal-lock message.
3709 ;; Errors:
3711 ;; Apparent state A ---
3713 ;; 1. File looked unregistered but is actually registered and not locked.
3715 ;; Potential cause: someone else's admin during window P, with
3716 ;; caller's admin happening before their checkout.
3718 ;; RCS: Prior to version 5.6.4, ci fails with message
3719 ;; "no lock set by <user>". From 5.6.4 onwards, VC uses the new
3720 ;; ci -i option and the message is "<file>,v: already exists".
3721 ;; SCCS: admin will fail with error (ad19).
3723 ;; We can let these errors be passed up to the user.
3725 ;; 2. File looked unregistered but is actually locked by caller, unchanged.
3727 ;; Potential cause: self-race during window P.
3729 ;; RCS: Prior to version 5.6.4, reverts the file to the last saved
3730 ;; version and unlocks it. From 5.6.4 onwards, VC uses the new
3731 ;; ci -i option, failing with message "<file>,v: already exists".
3732 ;; SCCS: will fail with error (ad19).
3734 ;; Either of these consequences is acceptable.
3736 ;; 3. File looked unregistered but is actually locked by caller, changed.
3738 ;; Potential cause: self-race during window P.
3740 ;; RCS: Prior to version 5.6.4, VC registers the caller's workfile as
3741 ;; a delta with a null change comment (the -t- switch will be
3742 ;; ignored). From 5.6.4 onwards, VC uses the new ci -i option,
3743 ;; failing with message "<file>,v: already exists".
3744 ;; SCCS: will fail with error (ad19).
3746 ;; 4. File looked unregistered but is locked by someone else.
3748 ;; Potential cause: someone else's admin during window P, with
3749 ;; caller's admin happening *after* their checkout.
3751 ;; RCS: Prior to version 5.6.4, ci fails with a
3752 ;; "no lock set by <user>" message. From 5.6.4 onwards,
3753 ;; VC uses the new ci -i option, failing with message
3754 ;; "<file>,v: already exists".
3755 ;; SCCS: will fail with error (ad19).
3757 ;; We can let these errors be passed up to the user.
3759 ;; Apparent state B ---
3761 ;; 5. File looked registered and not locked, but is actually unregistered.
3763 ;; Potential cause: master file got nuked during window P.
3765 ;; RCS: will fail with "RCS/<file>: No such file or directory"
3766 ;; SCCS: will fail with error ut4.
3768 ;; We can let these errors be passed up to the user.
3770 ;; 6. File looked registered and not locked, but is actually locked by the
3771 ;; calling user and unchanged.
3773 ;; Potential cause: self-race during window T.
3775 ;; RCS: in the same directory as the previous workfile, co -l will fail
3776 ;; with "co error: writable foo exists; checkout aborted". In any other
3777 ;; directory, checkout will succeed.
3778 ;; SCCS: will fail with ge17.
3780 ;; Either of these consequences is acceptable.
3782 ;; 7. File looked registered and not locked, but is actually locked by the
3783 ;; calling user and changed.
3785 ;; As case 6.
3787 ;; 8. File looked registered and not locked, but is actually locked by another
3788 ;; user.
3790 ;; Potential cause: someone else checks it out during window T.
3792 ;; RCS: co error: revision 1.3 already locked by <user>
3793 ;; SCCS: fails with ge4 (in directory) or ut7 (outside it).
3795 ;; We can let these errors be passed up to the user.
3797 ;; Apparent state C ---
3799 ;; 9. File looks locked by calling user and unchanged, but is unregistered.
3801 ;; As case 5.
3803 ;; 10. File looks locked by calling user and unchanged, but is actually not
3804 ;; locked.
3806 ;; Potential cause: a self-race in window U, or by the revert's
3807 ;; landing during window X of some other user's steal-lock or window S
3808 ;; of another user's revert.
3810 ;; RCS: succeeds, refreshing the file from the identical version in
3811 ;; the master.
3812 ;; SCCS: fails with error ut4 (p file nonexistent).
3814 ;; Either of these consequences is acceptable.
3816 ;; 11. File is locked by calling user. It looks unchanged, but is actually
3817 ;; changed.
3819 ;; Potential cause: the file would have to be touched by a self-race
3820 ;; during window Q.
3822 ;; The revert will succeed, removing whatever changes came with
3823 ;; the touch. It is theoretically possible that work could be lost.
3825 ;; 12. File looks like it's locked by the calling user and unchanged, but
3826 ;; it's actually locked by someone else.
3828 ;; Potential cause: a steal-lock in window V.
3830 ;; RCS: co error: revision <rev> locked by <user>; use co -r or rcs -u
3831 ;; SCCS: fails with error un2
3833 ;; We can pass these errors up to the user.
3835 ;; Apparent state D ---
3837 ;; 13. File looks like it's locked by the calling user and changed, but it's
3838 ;; actually unregistered.
3840 ;; Potential cause: master file got nuked during window P.
3842 ;; RCS: Prior to version 5.6.4, checks in the user's version as an
3843 ;; initial delta. From 5.6.4 onwards, VC uses the new ci -j
3844 ;; option, failing with message "no such file or directory".
3845 ;; SCCS: will fail with error ut4.
3847 ;; This case is kind of nasty. Under RCS prior to version 5.6.4,
3848 ;; VC may fail to detect the loss of previous version information.
3850 ;; 14. File looks like it's locked by the calling user and changed, but it's
3851 ;; actually unlocked.
3853 ;; Potential cause: self-race in window V, or the checkin happening
3854 ;; during the window X of someone else's steal-lock or window S of
3855 ;; someone else's revert.
3857 ;; RCS: ci will fail with "no lock set by <user>".
3858 ;; SCCS: delta will fail with error ut4.
3860 ;; 15. File looks like it's locked by the calling user and changed, but it's
3861 ;; actually locked by the calling user and unchanged.
3863 ;; Potential cause: another self-race --- a whole checkin/checkout
3864 ;; sequence by the calling user would have to land in window R.
3866 ;; SCCS: checks in a redundant delta and leaves the file unlocked as usual.
3867 ;; RCS: reverts to the file state as of the second user's checkin, leaving
3868 ;; the file unlocked.
3870 ;; It is theoretically possible that work could be lost under RCS.
3872 ;; 16. File looks like it's locked by the calling user and changed, but it's
3873 ;; actually locked by a different user.
3875 ;; RCS: ci error: no lock set by <user>
3876 ;; SCCS: unget will fail with error un2
3878 ;; We can pass these errors up to the user.
3880 ;; Apparent state E ---
3882 ;; 17. File looks like it's locked by some other user, but it's actually
3883 ;; unregistered.
3885 ;; As case 13.
3887 ;; 18. File looks like it's locked by some other user, but it's actually
3888 ;; unlocked.
3890 ;; Potential cause: someone released a lock during window W.
3892 ;; RCS: The calling user will get the lock on the file.
3893 ;; SCCS: unget -n will fail with cm4.
3895 ;; Either of these consequences will be OK.
3897 ;; 19. File looks like it's locked by some other user, but it's actually
3898 ;; locked by the calling user and unchanged.
3900 ;; Potential cause: the other user relinquishing a lock followed by
3901 ;; a self-race, both in window W.
3903 ;; Under both RCS and SCCS, both unlock and lock will succeed, making
3904 ;; the sequence a no-op.
3906 ;; 20. File looks like it's locked by some other user, but it's actually
3907 ;; locked by the calling user and changed.
3909 ;; As case 19.
3911 ;; PROBLEM CASES:
3913 ;; In order of decreasing severity:
3915 ;; Cases 11 and 15 are the only ones that potentially lose work.
3916 ;; They would require a self-race for this to happen.
3918 ;; Case 13 in RCS loses information about previous deltas, retaining
3919 ;; only the information in the current workfile. This can only happen
3920 ;; if the master file gets nuked in window P.
3922 ;; Case 3 in RCS and case 15 under SCCS insert a redundant delta with
3923 ;; no change comment in the master. This would require a self-race in
3924 ;; window P or R respectively.
3926 ;; Cases 2, 10, 19 and 20 do extra work, but make no changes.
3928 ;; Unfortunately, it appears to me that no recovery is possible in these
3929 ;; cases. They don't yield error messages, so there's no way to tell that
3930 ;; a race condition has occurred.
3932 ;; All other cases don't change either the workfile or the master, and
3933 ;; trigger command errors which the user will see.
3935 ;; Thus, there is no explicit recovery code.
3937 ;; arch-tag: ca82c1de-3091-4e26-af92-460abc6213a6
3938 ;;; vc.el ends here