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