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