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