(cc-imenu-java-generic-expression): A new, more accurate version of the
[emacs.git] / lisp / vc.el
blobf58ba6ebab95fc4ee6a4c2e0564ddeb394539699
1 ;;; vc.el --- drive a version-control system from within Emacs
3 ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000,
4 ;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
5 ;; Free Software Foundation, Inc.
7 ;; Author: FSF (see below for full credits)
8 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
9 ;; Keywords: tools
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Credits:
28 ;; VC was initially designed and implemented by Eric S. Raymond
29 ;; <esr@thyrsus.com> in 1992. Over the years, many other people have
30 ;; contributed substantial amounts of work to VC. These include:
32 ;; Per Cederqvist <ceder@lysator.liu.se>
33 ;; Paul Eggert <eggert@twinsun.com>
34 ;; Sebastian Kremer <sk@thp.uni-koeln.de>
35 ;; Martin Lorentzson <martinl@gnu.org>
36 ;; Dave Love <fx@gnu.org>
37 ;; Stefan Monnier <monnier@cs.yale.edu>
38 ;; Thien-Thi Nguyen <ttn@gnu.org>
39 ;; Dan Nicolaescu <dann@ics.uci.edu>
40 ;; J.D. Smith <jdsmith@alum.mit.edu>
41 ;; Andre Spiegel <spiegel@gnu.org>
42 ;; Richard Stallman <rms@gnu.org>
44 ;; In July 2007 ESR returned and redesigned the mode to cope better
45 ;; with modern version-control systems that do commits by fileset
46 ;; rather than per individual file.
48 ;; If you maintain a client of the mode or customize it in your .emacs,
49 ;; note that some backend functions which formerly took single file arguments
50 ;; now take a list of files. These include: register, checkin, print-log,
51 ;; rollback, and diff.
53 ;;; Commentary:
55 ;; This mode is fully documented in the Emacs user's manual.
57 ;; Supported version-control systems presently include CVS, RCS, GNU
58 ;; Arch, Subversion, Bzr, Git, Mercurial, Monotone and SCCS
59 ;; (or its free replacement, CSSC).
61 ;; If your site uses the ChangeLog convention supported by Emacs, the
62 ;; function `log-edit-comment-to-change-log' could prove a useful checkin hook,
63 ;; although you might prefer to use C-c C-a (i.e. `log-edit-insert-changelog')
64 ;; from the commit buffer instead or to set `log-edit-setup-invert'.
66 ;; The vc code maintains some internal state in order to reduce expensive
67 ;; version-control operations to a minimum. Some names are only computed
68 ;; once. If you perform version control operations with the backend while
69 ;; vc's back is turned, or move/rename master files while vc is running,
70 ;; vc may get seriously confused. Don't do these things!
72 ;; ADDING SUPPORT FOR OTHER BACKENDS
74 ;; VC can use arbitrary version control systems as a backend. To add
75 ;; support for a new backend named SYS, write a library vc-sys.el that
76 ;; contains functions of the form `vc-sys-...' (note that SYS is in lower
77 ;; case for the function and library names). VC will use that library if
78 ;; you put the symbol SYS somewhere into the list of
79 ;; `vc-handled-backends'. Then, for example, if `vc-sys-registered'
80 ;; returns non-nil for a file, all SYS-specific versions of VC commands
81 ;; will be available for that file.
83 ;; VC keeps some per-file information in the form of properties (see
84 ;; vc-file-set/getprop in vc-hooks.el). The backend-specific functions
85 ;; do not generally need to be aware of these properties. For example,
86 ;; `vc-sys-working-revision' should compute the working revision and
87 ;; return it; it should not look it up in the property, and it needn't
88 ;; store it there either. However, if a backend-specific function does
89 ;; store a value in a property, that value takes precedence over any
90 ;; value that the generic code might want to set (check for uses of
91 ;; the macro `with-vc-properties' in vc.el).
93 ;; In the list of functions below, each identifier needs to be prepended
94 ;; with `vc-sys-'. Some of the functions are mandatory (marked with a
95 ;; `*'), others are optional (`-').
97 ;; BACKEND PROPERTIES
99 ;; * revision-granularity
101 ;; Takes no arguments. Returns either 'file or 'repository. Backends
102 ;; that return 'file have per-file revision numbering; backends
103 ;; that return 'repository have per-repository revision numbering,
104 ;; so a revision level implicitly identifies a changeset
106 ;; STATE-QUERYING FUNCTIONS
108 ;; * registered (file)
110 ;; Return non-nil if FILE is registered in this backend. Both this
111 ;; function as well as `state' should be careful to fail gracefully
112 ;; in the event that the backend executable is absent. It is
113 ;; preferable that this function's body is autoloaded, that way only
114 ;; calling vc-registered does not cause the backend to be loaded
115 ;; (all the vc-FOO-registered functions are called to try to find
116 ;; the controlling backend for FILE.
118 ;; * state (file)
120 ;; Return the current version control state of FILE. For a list of
121 ;; possible values, see `vc-state'. This function should do a full and
122 ;; reliable state computation; it is usually called immediately after
123 ;; C-x v v. If you want to use a faster heuristic when visiting a
124 ;; file, put that into `state-heuristic' below. Note that under most
125 ;; VCSes this won't be called at all, dir-status is used instead.
127 ;; - state-heuristic (file)
129 ;; If provided, this function is used to estimate the version control
130 ;; state of FILE at visiting time. It should be considerably faster
131 ;; than the implementation of `state'. For a list of possible values,
132 ;; see the doc string of `vc-state'.
134 ;; - dir-status (dir update-function)
136 ;; Produce RESULT: a list of lists of the form (FILE VC-STATE EXTRA)
137 ;; for the files in DIR.
138 ;; EXTRA can be used for backend specific information about FILE.
139 ;; If a command needs to be run to compute this list, it should be
140 ;; run asynchronously using (current-buffer) as the buffer for the
141 ;; command. When RESULT is computed, it should be passed back by
142 ;; doing: (funcall UPDATE-FUNCTION RESULT nil).
143 ;; If the backend uses a process filter, hence it produces partial results,
144 ;; they can be passed back by doing:
145 ;; (funcall UPDATE-FUNCTION RESULT t)
146 ;; and then do a (funcall UPDATE-FUNCTION RESULT nil)
147 ;; when all the results have been computed.
148 ;; To provide more backend specific functionality for `vc-dir'
149 ;; the following functions might be needed: `dir-extra-headers',
150 ;; `dir-printer', `extra-dir-menu' and `dir-status-files'.
152 ;; - dir-status-files (dir files default-state update-function)
154 ;; This function is identical to dir-status except that it should
155 ;; only report status for the specified FILES. Also it needs to
156 ;; report on all requested files, including up-to-date or ignored
157 ;; files. If not provided, the default is to consider that the files
158 ;; are in DEFAULT-STATE.
160 ;; - dir-extra-headers (dir)
162 ;; Return a string that will be added to the *vc-dir* buffer header.
164 ;; - dir-printer (fileinfo)
166 ;; Pretty print the `vc-dir-fileinfo' FILEINFO.
167 ;; If a backend needs to show more information than the default FILE
168 ;; and STATE in the vc-dir listing, it can store that extra
169 ;; information in `vc-dir-fileinfo->extra'. This function can be
170 ;; used to display that extra information in the *vc-dir* buffer.
172 ;; - status-fileinfo-extra (file)
174 ;; Compute `vc-dir-fileinfo->extra' for FILE.
176 ;; * working-revision (file)
178 ;; Return the working revision of FILE. This is the revision fetched
179 ;; by the last checkout or upate, not necessarily the same thing as the
180 ;; head or tip revision. Should return "0" for a file added but not yet
181 ;; committed.
183 ;; - latest-on-branch-p (file)
185 ;; Return non-nil if the working revision of FILE is the latest revision
186 ;; on its branch (many VCSes call this the 'tip' or 'head' revision).
187 ;; The default implementation always returns t, which means that
188 ;; working with non-current revisions is not supported by default.
190 ;; * checkout-model (files)
192 ;; Indicate whether FILES need to be "checked out" before they can be
193 ;; edited. See `vc-checkout-model' for a list of possible values.
195 ;; - workfile-unchanged-p (file)
197 ;; Return non-nil if FILE is unchanged from the working revision.
198 ;; This function should do a brief comparison of FILE's contents
199 ;; with those of the repository master of the working revision. If
200 ;; the backend does not have such a brief-comparison feature, the
201 ;; default implementation of this function can be used, which
202 ;; delegates to a full vc-BACKEND-diff. (Note that vc-BACKEND-diff
203 ;; must not run asynchronously in this case, see variable
204 ;; `vc-disable-async-diff'.)
206 ;; - mode-line-string (file)
208 ;; If provided, this function should return the VC-specific mode
209 ;; line string for FILE. The returned string should have a
210 ;; `help-echo' property which is the text to be displayed as a
211 ;; tooltip when the mouse hovers over the VC entry on the mode-line.
212 ;; The default implementation deals well with all states that
213 ;; `vc-state' can return.
215 ;; STATE-CHANGING FUNCTIONS
217 ;; * create-repo (backend)
219 ;; Create an empty repository in the current directory and initialize
220 ;; it so VC mode can add files to it. For file-oriented systems, this
221 ;; need do no more than create a subdirectory with the right name.
223 ;; * register (files &optional rev comment)
225 ;; Register FILES in this backend. Optionally, an initial revision REV
226 ;; and an initial description of the file, COMMENT, may be specified,
227 ;; but it is not guaranteed that the backend will do anything with this.
228 ;; The implementation should pass the value of vc-register-switches
229 ;; to the backend command. (Note: in older versions of VC, this
230 ;; command took a single file argument and not a list.)
232 ;; - init-revision (file)
234 ;; The initial revision to use when registering FILE if one is not
235 ;; specified by the user. If not provided, the variable
236 ;; vc-default-init-revision is used instead.
238 ;; - responsible-p (file)
240 ;; Return non-nil if this backend considers itself "responsible" for
241 ;; FILE, which can also be a directory. This function is used to find
242 ;; out what backend to use for registration of new files and for things
243 ;; like change log generation. The default implementation always
244 ;; returns nil.
246 ;; - could-register (file)
248 ;; Return non-nil if FILE could be registered under this backend. The
249 ;; default implementation always returns t.
251 ;; - receive-file (file rev)
253 ;; Let this backend "receive" a file that is already registered under
254 ;; another backend. The default implementation simply calls `register'
255 ;; for FILE, but it can be overridden to do something more specific,
256 ;; e.g. keep revision numbers consistent or choose editing modes for
257 ;; FILE that resemble those of the other backend.
259 ;; - unregister (file)
261 ;; Unregister FILE from this backend. This is only needed if this
262 ;; backend may be used as a "more local" backend for temporary editing.
264 ;; * checkin (files rev comment)
266 ;; Commit changes in FILES to this backend. If REV is non-nil, that
267 ;; should become the new revision number (not all backends do
268 ;; anything with it). COMMENT is used as a check-in comment. The
269 ;; implementation should pass the value of vc-checkin-switches to
270 ;; the backend command. (Note: in older versions of VC, this
271 ;; command took a single file argument and not a list.)
273 ;; * find-revision (file rev buffer)
275 ;; Fetch revision REV of file FILE and put it into BUFFER.
276 ;; If REV is the empty string, fetch the head of the trunk.
277 ;; The implementation should pass the value of vc-checkout-switches
278 ;; to the backend command.
280 ;; * checkout (file &optional editable rev)
282 ;; Check out revision REV of FILE into the working area. If EDITABLE
283 ;; is non-nil, FILE should be writable by the user and if locking is
284 ;; used for FILE, a lock should also be set. If REV is non-nil, that
285 ;; is the revision to check out (default is the working revision).
286 ;; If REV is t, that means to check out the head of the current branch;
287 ;; if it is the empty string, check out the head of the trunk.
288 ;; The implementation should pass the value of vc-checkout-switches
289 ;; to the backend command.
291 ;; * revert (file &optional contents-done)
293 ;; Revert FILE back to the working revision. If optional
294 ;; arg CONTENTS-DONE is non-nil, then the contents of FILE have
295 ;; already been reverted from a version backup, and this function
296 ;; only needs to update the status of FILE within the backend.
297 ;; If FILE is in the `added' state it should be returned to the
298 ;; `unregistered' state.
300 ;; - rollback (files)
302 ;; Remove the tip revision of each of FILES from the repository. If
303 ;; this function is not provided, trying to cancel a revision is
304 ;; caught as an error. (Most backends don't provide it.) (Also
305 ;; note that older versions of this backend command were called
306 ;; 'cancel-version' and took a single file arg, not a list of
307 ;; files.)
309 ;; - merge (file rev1 rev2)
311 ;; Merge the changes between REV1 and REV2 into the current working file.
313 ;; - merge-news (file)
315 ;; Merge recent changes from the current branch into FILE.
317 ;; - steal-lock (file &optional revision)
319 ;; Steal any lock on the working revision of FILE, or on REVISION if
320 ;; that is provided. This function is only needed if locking is
321 ;; used for files under this backend, and if files can indeed be
322 ;; locked by other users.
324 ;; - modify-change-comment (files rev comment)
326 ;; Modify the change comments associated with the files at the
327 ;; given revision. This is optional, many backends do not support it.
329 ;; - mark-resolved (files)
331 ;; Mark conflicts as resolved. Some VC systems need to run a
332 ;; command to mark conflicts as resolved.
334 ;; HISTORY FUNCTIONS
336 ;; * print-log (files buffer &optional shortlog limit)
338 ;; Insert the revision log for FILES into BUFFER.
339 ;; If SHORTLOG is true insert a short version of the log.
340 ;; If LIMIT is true insert only insert LIMIT log entries. If the
341 ;; backend does not support limiting the number of entries to show
342 ;; it should return `limit-unsupported'.
344 ;; - log-view-mode ()
346 ;; Mode to use for the output of print-log. This defaults to
347 ;; `log-view-mode' and is expected to be changed (if at all) to a derived
348 ;; mode of `log-view-mode'.
350 ;; - show-log-entry (revision)
352 ;; If provided, search the log entry for REVISION in the current buffer,
353 ;; and make sure it is displayed in the buffer's window. The default
354 ;; implementation of this function works for RCS-style logs.
356 ;; - comment-history (file)
358 ;; Return a string containing all log entries that were made for FILE.
359 ;; This is used for transferring a file from one backend to another,
360 ;; retaining comment information.
362 ;; - update-changelog (files)
364 ;; Using recent log entries, create ChangeLog entries for FILES, or for
365 ;; all files at or below the default-directory if FILES is nil. The
366 ;; default implementation runs rcs2log, which handles RCS- and
367 ;; CVS-style logs.
369 ;; * diff (files &optional rev1 rev2 buffer)
371 ;; Insert the diff for FILE into BUFFER, or the *vc-diff* buffer if
372 ;; BUFFER is nil. If REV1 and REV2 are non-nil, report differences
373 ;; from REV1 to REV2. If REV1 is nil, use the working revision (as
374 ;; found in the repository) as the older revision; if REV2 is nil,
375 ;; use the current working-copy contents as the newer revision. This
376 ;; function should pass the value of (vc-switches BACKEND 'diff) to
377 ;; the backend command. It should return a status of either 0 (no
378 ;; differences found), or 1 (either non-empty diff or the diff is
379 ;; run asynchronously).
381 ;; - revision-completion-table (files)
383 ;; Return a completion table for existing revisions of FILES.
384 ;; The default is to not use any completion table.
386 ;; - annotate-command (file buf &optional rev)
388 ;; If this function is provided, it should produce an annotated display
389 ;; of FILE in BUF, relative to revision REV. Annotation means each line
390 ;; of FILE displayed is prefixed with version information associated with
391 ;; its addition (deleted lines leave no history) and that the text of the
392 ;; file is fontified according to age.
394 ;; - annotate-time ()
396 ;; Only required if `annotate-command' is defined for the backend.
397 ;; Return the time of the next line of annotation at or after point,
398 ;; as a floating point fractional number of days. The helper
399 ;; function `vc-annotate-convert-time' may be useful for converting
400 ;; multi-part times as returned by `current-time' and `encode-time'
401 ;; to this format. Return nil if no more lines of annotation appear
402 ;; in the buffer. You can safely assume that point is placed at the
403 ;; beginning of each line, starting at `point-min'. The buffer that
404 ;; point is placed in is the Annotate output, as defined by the
405 ;; relevant backend. This function also affects how much of the line
406 ;; is fontified; where it leaves point is where fontification begins.
408 ;; - annotate-current-time ()
410 ;; Only required if `annotate-command' is defined for the backend,
411 ;; AND you'd like the current time considered to be anything besides
412 ;; (vc-annotate-convert-time (current-time)) -- i.e. the current
413 ;; time with hours, minutes, and seconds included. Probably safe to
414 ;; ignore. Return the current-time, in units of fractional days.
416 ;; - annotate-extract-revision-at-line ()
418 ;; Only required if `annotate-command' is defined for the backend.
419 ;; Invoked from a buffer in vc-annotate-mode, return the revision
420 ;; corresponding to the current line, or nil if there is no revision
421 ;; corresponding to the current line.
422 ;; If the backend supports annotating through copies and renames,
423 ;; and displays a file name and a revision, then return a cons
424 ;; (REVISION . FILENAME).
426 ;; TAG SYSTEM
428 ;; - create-tag (dir name branchp)
430 ;; Attach the tag NAME to the state of the working copy. This
431 ;; should make sure that files are up-to-date before proceeding with
432 ;; the action. DIR can also be a file and if BRANCHP is specified,
433 ;; NAME should be created as a branch and DIR should be checked out
434 ;; under this new branch. The default implementation does not
435 ;; support branches but does a sanity check, a tree traversal and
436 ;; assigns the tag to each file.
438 ;; - retrieve-tag (dir name update)
440 ;; Retrieve the version tagged by NAME of all registered files at or below DIR.
441 ;; If UPDATE is non-nil, then update buffers of any files in the
442 ;; tag that are currently visited. The default implementation
443 ;; does a sanity check whether there aren't any uncommitted changes at
444 ;; or below DIR, and then performs a tree walk, using the `checkout'
445 ;; function to retrieve the corresponding revisions.
447 ;; MISCELLANEOUS
449 ;; - make-version-backups-p (file)
451 ;; Return non-nil if unmodified repository revisions of FILE should be
452 ;; backed up locally. If this is done, VC can perform `diff' and
453 ;; `revert' operations itself, without calling the backend system. The
454 ;; default implementation always returns nil.
456 ;; - root (file)
457 ;; Return the root of the VC controlled hierarchy for file.
459 ;; - repository-hostname (dirname)
461 ;; Return the hostname that the backend will have to contact
462 ;; in order to operate on a file in DIRNAME. If the return value
463 ;; is nil, it means that the repository is local.
464 ;; This function is used in `vc-stay-local-p' which backends can use
465 ;; for their convenience.
467 ;; - previous-revision (file rev)
469 ;; Return the revision number that precedes REV for FILE, or nil if no such
470 ;; revision exists.
472 ;; - next-revision (file rev)
474 ;; Return the revision number that follows REV for FILE, or nil if no such
475 ;; revision exists.
477 ;; - check-headers ()
479 ;; Return non-nil if the current buffer contains any version headers.
481 ;; - clear-headers ()
483 ;; In the current buffer, reset all version headers to their unexpanded
484 ;; form. This function should be provided if the state-querying code
485 ;; for this backend uses the version headers to determine the state of
486 ;; a file. This function will then be called whenever VC changes the
487 ;; version control state in such a way that the headers would give
488 ;; wrong information.
490 ;; - delete-file (file)
492 ;; Delete FILE and mark it as deleted in the repository. If this
493 ;; function is not provided, the command `vc-delete-file' will
494 ;; signal an error.
496 ;; - rename-file (old new)
498 ;; Rename file OLD to NEW, both in the working area and in the
499 ;; repository. If this function is not provided, the renaming
500 ;; will be done by (vc-delete-file old) and (vc-register new).
502 ;; - find-file-hook ()
504 ;; Operation called in current buffer when opening a file. This can
505 ;; be used by the backend to setup some local variables it might need.
507 ;; - extra-menu ()
509 ;; Return a menu keymap, the items in the keymap will appear at the
510 ;; end of the Version Control menu. The goal is to allow backends
511 ;; to specify extra menu items that appear in the VC menu. This way
512 ;; you can provide menu entries for functionality that is specific
513 ;; to your backend and which does not map to any of the VC generic
514 ;; concepts.
516 ;; - extra-dir-menu ()
518 ;; Return a menu keymap, the items in the keymap will appear at the
519 ;; end of the VC Status menu. The goal is to allow backends to
520 ;; specify extra menu items that appear in the VC Status menu. This
521 ;; makes it possible to provide menu entries for functionality that
522 ;; is specific to a backend and which does not map to any of the VC
523 ;; generic concepts.
525 ;;; Todo:
527 ;; - Get rid of the "master file" terminology.
529 ;; - Add key-binding for vc-delete-file.
531 ;;;; New Primitives:
533 ;; - deal with push/pull operations.
535 ;; - add a mechanism for editing the underlying VCS's list of files
536 ;; to be ignored, when that's possible.
538 ;;;; Primitives that need changing:
540 ;; - vc-update/vc-merge should deal with VC systems that don't
541 ;; update/merge on a file basis, but on a whole repository basis.
542 ;; vc-update and vc-merge assume the arguments are always files,
543 ;; they don't deal with directories. Make sure the *vc-dir* buffer
544 ;; is updated after these operations.
545 ;; At least bzr, git and hg should benefit from this.
547 ;;;; Improved branch and tag handling:
549 ;; - add a generic mechanism for remembering the current branch names,
550 ;; display the branch name in the mode-line. Replace
551 ;; vc-cvs-sticky-tag with that.
553 ;; - vc-create-tag and vc-retrieve-tag should update the
554 ;; buffers that might be visiting the affected files.
556 ;;;; Internal cleanups:
558 ;; - backends that care about vc-stay-local should try to take it into
559 ;; account for vc-dir. Is this likely to be useful??? YES!
561 ;; - vc-expand-dirs should take a backend parameter and only look for
562 ;; files managed by that backend.
564 ;; - Another important thing: merge all the status-like backend operations.
565 ;; We should remove dir-status, state, and dir-status-files, and
566 ;; replace them with just `status' which takes a fileset and a continuation
567 ;; (like dir-status) and returns a buffer in which the process(es) are run
568 ;; (or nil if it worked synchronously). Hopefully we can define the old
569 ;; 4 operations in term of this one.
571 ;;;; Other
573 ;; - when a file is in `conflict' state, turn on smerge-mode.
575 ;; - figure out what to do with conflicts that are not caused by the
576 ;; file contents, but by metadata or other causes. Example: File A
577 ;; gets renamed to B in one branch and to C in another and you merge
578 ;; the two branches. Or you locally add file FOO and then pull a
579 ;; change that also adds a new file FOO, ...
581 ;; - make it easier to write logs. Maybe C-x 4 a should add to the log
582 ;; buffer, if one is present, instead of adding to the ChangeLog.
584 ;; - When vc-next-action calls vc-checkin it could pre-fill the
585 ;; *VC-log* buffer with some obvious items: the list of files that
586 ;; were added, the list of files that were removed. If the diff is
587 ;; available, maybe it could even call something like
588 ;; `diff-add-change-log-entries-other-window' to create a detailed
589 ;; skeleton for the log...
591 ;; - most vc-dir backends need more work. They might need to
592 ;; provide custom headers, use the `extra' field and deal with all
593 ;; possible VC states.
595 ;; - add a function that calls vc-dir to `find-directory-functions'.
597 ;; - vc-diff, vc-annotate, etc. need to deal better with unregistered
598 ;; files. Now that unregistered and ignored files are shown in
599 ;; vc-dir, it is possible that these commands are called
600 ;; for unregistered/ignored files.
602 ;; - vc-next-action needs work in order to work with multiple
603 ;; backends: `vc-state' returns the state for the default backend,
604 ;; not for the backend in the current *vc-dir* buffer.
606 ;; - vc-dir-kill-dir-status-process should not be specific to dir-status,
607 ;; it should work for other async commands done through vc-do-command
608 ;; as well,
610 ;; - vc-dir toolbar needs more icons.
612 ;; - The backends should avoid using `vc-file-setprop' and `vc-file-getprop'.
614 ;;; Code:
616 (require 'vc-hooks)
617 (require 'vc-dispatcher)
619 (eval-when-compile
620 (require 'cl))
622 (unless (assoc 'vc-parent-buffer minor-mode-alist)
623 (setq minor-mode-alist
624 (cons '(vc-parent-buffer vc-parent-buffer-name)
625 minor-mode-alist)))
627 ;; General customization
629 (defgroup vc nil
630 "Version-control system in Emacs."
631 :group 'tools)
633 (defcustom vc-initial-comment nil
634 "If non-nil, prompt for initial comment when a file is registered."
635 :type 'boolean
636 :group 'vc)
638 (defcustom vc-default-init-revision "1.1"
639 "A string used as the default revision number when a new file is registered.
640 This can be overridden by giving a prefix argument to \\[vc-register]. This
641 can also be overridden by a particular VC backend."
642 :type 'string
643 :group 'vc
644 :version "20.3")
646 (defcustom vc-checkin-switches nil
647 "A string or list of strings specifying extra switches for checkin.
648 These are passed to the checkin program by \\[vc-checkin]."
649 :type '(choice (const :tag "None" nil)
650 (string :tag "Argument String")
651 (repeat :tag "Argument List"
652 :value ("")
653 string))
654 :group 'vc)
656 (defcustom vc-checkout-switches nil
657 "A string or list of strings specifying extra switches for checkout.
658 These are passed to the checkout program by \\[vc-checkout]."
659 :type '(choice (const :tag "None" nil)
660 (string :tag "Argument String")
661 (repeat :tag "Argument List"
662 :value ("")
663 string))
664 :group 'vc)
666 (defcustom vc-register-switches nil
667 "A string or list of strings; extra switches for registering a file.
668 These are passed to the checkin program by \\[vc-register]."
669 :type '(choice (const :tag "None" nil)
670 (string :tag "Argument String")
671 (repeat :tag "Argument List"
672 :value ("")
673 string))
674 :group 'vc)
676 (defcustom vc-diff-switches nil
677 "A string or list of strings specifying switches for diff under VC.
678 When running diff under a given BACKEND, VC uses the first
679 non-nil value of `vc-BACKEND-diff-switches', `vc-diff-switches',
680 and `diff-switches', in that order. Since nil means to check the
681 next variable in the sequence, either of the first two may use
682 the value t to mean no switches at all. `vc-diff-switches'
683 should contain switches that are specific to version control, but
684 not specific to any particular backend."
685 :type '(choice (const :tag "Unspecified" nil)
686 (const :tag "None" t)
687 (string :tag "Argument String")
688 (repeat :tag "Argument List" :value ("") string))
689 :group 'vc
690 :version "21.1")
692 (defcustom vc-diff-knows-L nil
693 "Indicates whether diff understands the -L option.
694 The value is either `yes', `no', or nil. If it is nil, VC tries
695 to use -L and sets this variable to remember whether it worked."
696 :type '(choice (const :tag "Work out" nil) (const yes) (const no))
697 :group 'vc)
699 (defcustom vc-log-show-limit 2000
700 "Limit the number of items shown by the VC log commands.
701 Zero means unlimited.
702 Not all VC backends are able to support this feature."
703 :type 'integer
704 :group 'vc)
706 (defcustom vc-allow-async-revert nil
707 "Specifies whether the diff during \\[vc-revert] may be asynchronous.
708 Enabling this option means that you can confirm a revert operation even
709 if the local changes in the file have not been found and displayed yet."
710 :type '(choice (const :tag "No" nil)
711 (const :tag "Yes" t))
712 :group 'vc
713 :version "22.1")
715 ;;;###autoload
716 (defcustom vc-checkout-hook nil
717 "Normal hook (list of functions) run after checking out a file.
718 See `run-hooks'."
719 :type 'hook
720 :group 'vc
721 :version "21.1")
723 ;;;###autoload
724 (defcustom vc-checkin-hook nil
725 "Normal hook (list of functions) run after commit or file checkin.
726 See also `log-edit-done-hook'."
727 :type 'hook
728 :options '(log-edit-comment-to-change-log)
729 :group 'vc)
731 ;;;###autoload
732 (defcustom vc-before-checkin-hook nil
733 "Normal hook (list of functions) run before a commit or a file checkin.
734 See `run-hooks'."
735 :type 'hook
736 :group 'vc)
738 ;; Header-insertion hair
740 (defcustom vc-static-header-alist
741 '(("\\.c\\'" .
742 "\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n#endif /* lint */\n"))
743 "Associate static header string templates with file types.
744 A \%s in the template is replaced with the first string associated with
745 the file's version control type in `vc-header-alist'."
746 :type '(repeat (cons :format "%v"
747 (regexp :tag "File Type")
748 (string :tag "Header String")))
749 :group 'vc)
751 (defcustom vc-comment-alist
752 '((nroff-mode ".\\\"" ""))
753 "Special comment delimiters for generating VC headers.
754 Add an entry in this list if you need to override the normal `comment-start'
755 and `comment-end' variables. This will only be necessary if the mode language
756 is sensitive to blank lines."
757 :type '(repeat (list :format "%v"
758 (symbol :tag "Mode")
759 (string :tag "Comment Start")
760 (string :tag "Comment End")))
761 :group 'vc)
763 (defcustom vc-checkout-carefully (= (user-uid) 0)
764 "Non-nil means be extra-careful in checkout.
765 Verify that the file really is not locked
766 and that its contents match what the master file says."
767 :type 'boolean
768 :group 'vc)
769 (make-obsolete-variable 'vc-checkout-carefully
770 "the corresponding checks are always done now."
771 "21.1")
774 ;; Variables users don't need to see
776 (defvar vc-disable-async-diff nil
777 "VC sets this to t locally to disable some async diff operations.
778 Backends that offer asynchronous diffs should respect this variable
779 in their implementation of vc-BACKEND-diff.")
781 ;; File property caching
783 (defun vc-clear-context ()
784 "Clear all cached file properties."
785 (interactive)
786 (fillarray vc-file-prop-obarray 0))
788 (defmacro with-vc-properties (files form settings)
789 "Execute FORM, then maybe set per-file properties for FILES.
790 SETTINGS is an association list of property/value pairs. After
791 executing FORM, set those properties from SETTINGS that have not yet
792 been updated to their corresponding values."
793 (declare (debug t))
794 `(let ((vc-touched-properties (list t)))
795 ,form
796 (dolist (file ,files)
797 (dolist (setting ,settings)
798 (let ((property (car setting)))
799 (unless (memq property vc-touched-properties)
800 (put (intern file vc-file-prop-obarray)
801 property (cdr setting))))))))
803 ;;; Code for deducing what fileset and backend to assume
805 (defun vc-backend-for-registration (file)
806 "Return a backend that can be used for registering FILE.
808 If no backend declares itself responsible for FILE, then FILE
809 must not be in a version controlled directory, so try to create a
810 repository, prompting for the directory and the VC backend to
811 use."
812 (catch 'found
813 ;; First try: find a responsible backend, it must be a backend
814 ;; under which FILE is not yet registered.
815 (dolist (backend vc-handled-backends)
816 (and (not (vc-call-backend backend 'registered file))
817 (vc-call-backend backend 'responsible-p file)
818 (throw 'found backend)))
819 ;; no responsible backend
820 (let* ((possible-backends
821 (let (pos)
822 (dolist (crt vc-handled-backends)
823 (when (vc-find-backend-function crt 'create-repo)
824 (push crt pos)))
825 pos))
827 (intern
828 ;; Read the VC backend from the user, only
829 ;; complete with the backends that have the
830 ;; 'create-repo method.
831 (completing-read
832 (format "%s is not in a version controlled directory.\nUse VC backend: " file)
833 (mapcar 'symbol-name possible-backends) nil t)))
834 (repo-dir
835 (let ((def-dir (file-name-directory file)))
836 ;; read the directory where to create the
837 ;; repository, make sure it's a parent of
838 ;; file.
839 (read-file-name
840 (format "create %s repository in: " bk)
841 default-directory def-dir t nil
842 (lambda (arg)
843 (message "arg %s" arg)
844 (and (file-directory-p arg)
845 (vc-string-prefix-p (expand-file-name arg) def-dir)))))))
846 (let ((default-directory repo-dir))
847 (vc-call-backend bk 'create-repo))
848 (throw 'found bk))))
850 (defun vc-responsible-backend (file)
851 "Return the name of a backend system that is responsible for FILE.
853 If FILE is already registered, return the
854 backend of FILE. If FILE is not registered, then the
855 first backend in `vc-handled-backends' that declares itself
856 responsible for FILE is returned."
857 (or (and (not (file-directory-p file)) (vc-backend file))
858 (catch 'found
859 ;; First try: find a responsible backend. If this is for registration,
860 ;; it must be a backend under which FILE is not yet registered.
861 (dolist (backend vc-handled-backends)
862 (and (vc-call-backend backend 'responsible-p file)
863 (throw 'found backend))))
864 (error "No VC backend is responsible for %s" file)))
866 (defun vc-expand-dirs (file-or-dir-list)
867 "Expands directories in a file list specification.
868 Within directories, only files already under version control are noticed."
869 (let ((flattened '()))
870 (dolist (node file-or-dir-list)
871 (when (file-directory-p node)
872 (vc-file-tree-walk
873 node (lambda (f) (when (vc-backend f) (push f flattened)))))
874 (unless (file-directory-p node) (push node flattened)))
875 (nreverse flattened)))
877 (defvar vc-dir-backend)
879 (declare-function vc-dir-current-file "vc-dir" ())
880 (declare-function vc-dir-deduce-fileset "vc-dir" (&optional state-model-only-files))
882 (defun vc-deduce-fileset (&optional observer allow-unregistered
883 state-model-only-files)
884 "Deduce a set of files and a backend to which to apply an operation.
886 Return (BACKEND FILESET FILESET-ONLY-FILES STATE CHECKOUT-MODEL).
887 If we're in VC-dir mode, the fileset is the list of marked files.
888 Otherwise, if we're looking at a buffer visiting a version-controlled file,
889 the fileset is a singleton containing this file.
890 If none of these conditions is met, but ALLOW_UNREGISTERED is on and the
891 visited file is not registered, return a singleton fileset containing it.
892 Otherwise, throw an error.
894 STATE-MODEL-ONLY-FILES if non-nil, means that the caller needs
895 the FILESET-ONLY-FILES STATE and MODEL info. Otherwise, that
896 part may be skipped.
897 BEWARE: this function may change the
898 current buffer."
899 ;; FIXME: OBSERVER is unused. The name is not intuitive and is not
900 ;; documented. It's set to t when called from diff and print-log.
901 (let (backend)
902 (cond
903 ((derived-mode-p 'vc-dir-mode)
904 (vc-dir-deduce-fileset state-model-only-files))
905 ((setq backend (vc-backend buffer-file-name))
906 (if state-model-only-files
907 (list backend (list buffer-file-name)
908 (list buffer-file-name)
909 (vc-state buffer-file-name)
910 (vc-checkout-model backend buffer-file-name))
911 (list backend (list buffer-file-name))))
912 ((and (buffer-live-p vc-parent-buffer)
913 ;; FIXME: Why this test? --Stef
914 (or (buffer-file-name vc-parent-buffer)
915 (with-current-buffer vc-parent-buffer
916 (derived-mode-p 'vc-dir-mode))))
917 (progn ;FIXME: Why not `with-current-buffer'? --Stef.
918 (set-buffer vc-parent-buffer)
919 (vc-deduce-fileset observer allow-unregistered state-model-only-files)))
920 ((not buffer-file-name)
921 (error "Buffer %s is not associated with a file" (buffer-name)))
922 ((and allow-unregistered (not (vc-registered buffer-file-name)))
923 (if state-model-only-files
924 (list (vc-backend-for-registration (buffer-file-name))
925 (list buffer-file-name)
926 (list buffer-file-name)
927 (when state-model-only-files 'unregistered)
928 nil)
929 (list (vc-backend-for-registration (buffer-file-name))
930 (list buffer-file-name))))
931 (t (error "No fileset is available here")))))
933 (defun vc-ensure-vc-buffer ()
934 "Make sure that the current buffer visits a version-controlled file."
935 (cond
936 ((derived-mode-p 'vc-dir-mode)
937 (set-buffer (find-file-noselect (vc-dir-current-file))))
939 (while (and vc-parent-buffer
940 (buffer-live-p vc-parent-buffer)
941 ;; Avoid infinite looping when vc-parent-buffer and
942 ;; current buffer are the same buffer.
943 (not (eq vc-parent-buffer (current-buffer))))
944 (set-buffer vc-parent-buffer))
945 (if (not buffer-file-name)
946 (error "Buffer %s is not associated with a file" (buffer-name))
947 (unless (vc-backend buffer-file-name)
948 (error "File %s is not under version control" buffer-file-name))))))
950 ;;; Support for the C-x v v command.
951 ;; This is where all the single-file-oriented code from before the fileset
952 ;; rewrite lives.
954 (defsubst vc-editable-p (file)
955 "Return non-nil if FILE can be edited."
956 (let ((backend (vc-backend file)))
957 (and backend
958 (or (eq (vc-checkout-model backend (list file)) 'implicit)
959 (memq (vc-state file) '(edited needs-merge conflict))))))
961 (defun vc-compatible-state (p q)
962 "Controls which states can be in the same commit."
964 (eq p q)
965 (and (member p '(edited added removed)) (member q '(edited added removed)))))
967 ;; Here's the major entry point.
969 ;;;###autoload
970 (defun vc-next-action (verbose)
971 "Do the next logical version control operation on the current fileset.
972 This requires that all files in the fileset be in the same state.
974 For locking systems:
975 If every file is not already registered, this registers each for version
976 control.
977 If every file is registered and not locked by anyone, this checks out
978 a writable and locked file of each ready for editing.
979 If every file is checked out and locked by the calling user, this
980 first checks to see if each file has changed since checkout. If not,
981 it performs a revert on that file.
982 If every file has been changed, this pops up a buffer for entry
983 of a log message; when the message has been entered, it checks in the
984 resulting changes along with the log message as change commentary. If
985 the variable `vc-keep-workfiles' is non-nil (which is its default), a
986 read-only copy of each changed file is left in place afterwards.
987 If the affected file is registered and locked by someone else, you are
988 given the option to steal the lock(s).
990 For merging systems:
991 If every file is not already registered, this registers each one for version
992 control. This does an add, but not a commit.
993 If every file is added but not committed, each one is committed.
994 If every working file is changed, but the corresponding repository file is
995 unchanged, this pops up a buffer for entry of a log message; when the
996 message has been entered, it checks in the resulting changes along
997 with the logmessage as change commentary. A writable file is retained.
998 If the repository file is changed, you are asked if you want to
999 merge in the changes into your working copy."
1000 (interactive "P")
1001 (let* ((vc-fileset (vc-deduce-fileset nil t 'state-model-only-files))
1002 (backend (car vc-fileset))
1003 (files (nth 1 vc-fileset))
1004 (fileset-only-files (nth 2 vc-fileset))
1005 ;; FIXME: We used to call `vc-recompute-state' here.
1006 (state (nth 3 vc-fileset))
1007 ;; The backend should check that the checkout-model is consistent
1008 ;; among all the `files'.
1009 (model (nth 4 vc-fileset))
1010 revision)
1012 ;; Do the right thing
1013 (cond
1014 ((eq state 'missing)
1015 (error "Fileset files are missing, so cannot be operated on"))
1016 ((eq state 'ignored)
1017 (error "Fileset files are ignored by the version-control system"))
1018 ((or (null state) (eq state 'unregistered))
1019 (vc-register nil vc-fileset))
1020 ;; Files are up-to-date, or need a merge and user specified a revision
1021 ((or (eq state 'up-to-date) (and verbose (eq state 'needs-update)))
1022 (cond
1023 (verbose
1024 ;; go to a different revision
1025 (setq revision (read-string "Branch, revision, or backend to move to: "))
1026 (let ((revision-downcase (downcase revision)))
1027 (if (member
1028 revision-downcase
1029 (mapcar (lambda (arg) (downcase (symbol-name arg))) vc-handled-backends))
1030 (let ((vsym (intern-soft revision-downcase)))
1031 (dolist (file files) (vc-transfer-file file vsym)))
1032 (dolist (file files)
1033 (vc-checkout file (eq model 'implicit) revision)))))
1034 ((not (eq model 'implicit))
1035 ;; check the files out
1036 (dolist (file files) (vc-checkout file t)))
1038 ;; do nothing
1039 (message "Fileset is up-to-date"))))
1040 ;; Files have local changes
1041 ((vc-compatible-state state 'edited)
1042 (let ((ready-for-commit files))
1043 ;; If files are edited but read-only, give user a chance to correct
1044 (dolist (file files)
1045 (unless (file-writable-p file)
1046 ;; Make the file+buffer read-write.
1047 (unless (y-or-n-p (format "%s is edited but read-only; make it writable and continue?" file))
1048 (error "Aborted"))
1049 (set-file-modes file (logior (file-modes file) 128))
1050 (let ((visited (get-file-buffer file)))
1051 (when visited
1052 (with-current-buffer visited
1053 (toggle-read-only -1))))))
1054 ;; Allow user to revert files with no changes
1055 (save-excursion
1056 (dolist (file files)
1057 (let ((visited (get-file-buffer file)))
1058 ;; For files with locking, if the file does not contain
1059 ;; any changes, just let go of the lock, i.e. revert.
1060 (when (and (not (eq model 'implicit))
1061 (vc-workfile-unchanged-p file)
1062 ;; If buffer is modified, that means the user just
1063 ;; said no to saving it; in that case, don't revert,
1064 ;; because the user might intend to save after
1065 ;; finishing the log entry and committing.
1066 (not (and visited (buffer-modified-p))))
1067 (vc-revert-file file)
1068 (setq ready-for-commit (delete file ready-for-commit))))))
1069 ;; Remaining files need to be committed
1070 (if (not ready-for-commit)
1071 (message "No files remain to be committed")
1072 (if (not verbose)
1073 (vc-checkin ready-for-commit backend)
1074 (setq revision (read-string "New revision or backend: "))
1075 (let ((revision-downcase (downcase revision)))
1076 (if (member
1077 revision-downcase
1078 (mapcar (lambda (arg) (downcase (symbol-name arg)))
1079 vc-handled-backends))
1080 (let ((vsym (intern revision-downcase)))
1081 (dolist (file files) (vc-transfer-file file vsym)))
1082 (vc-checkin ready-for-commit backend revision)))))))
1083 ;; locked by somebody else (locking VCSes only)
1084 ((stringp state)
1085 ;; In the old days, we computed the revision once and used it on
1086 ;; the single file. Then, for the 2007-2008 fileset rewrite, we
1087 ;; computed the revision once (incorrectly, using a free var) and
1088 ;; used it on all files. To fix the free var bug, we can either
1089 ;; use `(car files)' or do what we do here: distribute the
1090 ;; revision computation among `files'. Although this may be
1091 ;; tedious for those backends where a "revision" is a trans-file
1092 ;; concept, it is nonetheless correct for both those and (more
1093 ;; importantly) for those where "revision" is a per-file concept.
1094 ;; If the intersection of the former group and "locking VCSes" is
1095 ;; non-empty [I vaguely doubt it --ttn], we can reinstate the
1096 ;; pre-computation approach of yore.
1097 (dolist (file files)
1098 (vc-steal-lock
1099 file (if verbose
1100 (read-string (format "%s revision to steal: " file))
1101 (vc-working-revision file))
1102 state)))
1103 ;; conflict
1104 ((eq state 'conflict)
1105 ;; FIXME: Is it really the UI we want to provide?
1106 ;; In my experience, the conflicted files should be marked as resolved
1107 ;; one-by-one when saving the file after resolving the conflicts.
1108 ;; I.e. stating explicitly that the conflicts are resolved is done
1109 ;; very rarely.
1110 (vc-mark-resolved backend files))
1111 ;; needs-update
1112 ((eq state 'needs-update)
1113 (dolist (file files)
1114 (if (yes-or-no-p (format
1115 "%s is not up-to-date. Get latest revision? "
1116 (file-name-nondirectory file)))
1117 (vc-checkout file (eq model 'implicit) t)
1118 (when (and (not (eq model 'implicit))
1119 (yes-or-no-p "Lock this revision? "))
1120 (vc-checkout file t)))))
1121 ;; needs-merge
1122 ((eq state 'needs-merge)
1123 (dolist (file files)
1124 (when (yes-or-no-p (format
1125 "%s is not up-to-date. Merge in changes now? "
1126 (file-name-nondirectory file)))
1127 (vc-maybe-resolve-conflicts
1128 file (vc-call-backend backend 'merge-news file)))))
1130 ;; unlocked-changes
1131 ((eq state 'unlocked-changes)
1132 (dolist (file files)
1133 (when (not (equal buffer-file-name file))
1134 (find-file-other-window file))
1135 (if (save-window-excursion
1136 (vc-diff-internal nil
1137 (cons (car vc-fileset) (cons (cadr vc-fileset) (list file)))
1138 (vc-working-revision file) nil)
1139 (goto-char (point-min))
1140 (let ((inhibit-read-only t))
1141 (insert
1142 (format "Changes to %s since last lock:\n\n" file)))
1143 (not (beep))
1144 (yes-or-no-p (concat "File has unlocked changes. "
1145 "Claim lock retaining changes? ")))
1146 (progn (vc-call-backend backend 'steal-lock file)
1147 (clear-visited-file-modtime)
1148 ;; Must clear any headers here because they wouldn't
1149 ;; show that the file is locked now.
1150 (vc-clear-headers file)
1151 (write-file buffer-file-name)
1152 (vc-mode-line file backend))
1153 (if (not (yes-or-no-p
1154 "Revert to checked-in revision, instead? "))
1155 (error "Checkout aborted")
1156 (vc-revert-buffer-internal t t)
1157 (vc-checkout file t)))))
1158 ;; Unknown fileset state
1160 (error "Fileset is in an unknown state %s" state)))))
1162 (defun vc-create-repo (backend)
1163 "Create an empty repository in the current directory."
1164 (interactive
1165 (list
1166 (intern
1167 (upcase
1168 (completing-read
1169 "Create repository for: "
1170 (mapcar (lambda (b) (list (downcase (symbol-name b)))) vc-handled-backends)
1171 nil t)))))
1172 (vc-call-backend backend 'create-repo))
1174 (declare-function vc-dir-move-to-goal-column "vc-dir" ())
1176 ;;;###autoload
1177 (defun vc-register (&optional set-revision vc-fileset comment)
1178 "Register into a version control system.
1179 If VC-FILESET is given, register the files in that fileset.
1180 Otherwise register the current file.
1181 With prefix argument SET-REVISION, allow user to specify initial revision
1182 level. If COMMENT is present, use that as an initial comment.
1184 The version control system to use is found by cycling through the list
1185 `vc-handled-backends'. The first backend in that list which declares
1186 itself responsible for the file (usually because other files in that
1187 directory are already registered under that backend) will be used to
1188 register the file. If no backend declares itself responsible, the
1189 first backend that could register the file is used."
1190 (interactive "P")
1191 (let* ((fileset-arg (or vc-fileset (vc-deduce-fileset nil t)))
1192 (backend (car fileset-arg))
1193 (files (nth 1 fileset-arg)))
1194 ;; We used to operate on `only-files', but VC wants to provide the
1195 ;; possibility to register directories rather than files only, since
1196 ;; many VCS allow that as well.
1197 (dolist (fname files)
1198 (let ((bname (get-file-buffer fname)))
1199 (unless fname (setq fname buffer-file-name))
1200 (when (vc-backend fname)
1201 (if (vc-registered fname)
1202 (error "This file is already registered")
1203 (unless (y-or-n-p "Previous master file has vanished. Make a new one? ")
1204 (error "Aborted"))))
1205 ;; Watch out for new buffers of size 0: the corresponding file
1206 ;; does not exist yet, even though buffer-modified-p is nil.
1207 (when bname
1208 (with-current-buffer bname
1209 (when (and (not (buffer-modified-p))
1210 (zerop (buffer-size))
1211 (not (file-exists-p buffer-file-name)))
1212 (set-buffer-modified-p t))
1213 (vc-buffer-sync)))))
1214 (message "Registering %s... " files)
1215 (mapc 'vc-file-clearprops files)
1216 (vc-call-backend backend 'register files
1217 (if set-revision
1218 (read-string (format "Initial revision level for %s: " files))
1219 (vc-call-backend backend 'init-revision))
1220 comment)
1221 (mapc
1222 (lambda (file)
1223 (vc-file-setprop file 'vc-backend backend)
1224 ;; FIXME: This is wrong: it should set `backup-inhibited' in all
1225 ;; the buffers visiting files affected by this `vc-register', not
1226 ;; in the current-buffer.
1227 ;; (unless vc-make-backup-files
1228 ;; (make-local-variable 'backup-inhibited)
1229 ;; (setq backup-inhibited t))
1231 (vc-resynch-buffer file vc-keep-workfiles t))
1232 files)
1233 (when (derived-mode-p 'vc-dir-mode)
1234 (vc-dir-move-to-goal-column))
1235 (message "Registering %s... done" files)))
1237 (defun vc-register-with (backend)
1238 "Register the current file with a specified back end."
1239 (interactive "SBackend: ")
1240 (when (not (member backend vc-handled-backends))
1241 (error "Unknown back end"))
1242 (let ((vc-handled-backends (list backend)))
1243 (call-interactively 'vc-register)))
1245 (defun vc-checkout (file &optional writable rev)
1246 "Retrieve a copy of the revision REV of FILE.
1247 If WRITABLE is non-nil, make sure the retrieved file is writable.
1248 REV defaults to the latest revision.
1250 After check-out, runs the normal hook `vc-checkout-hook'."
1251 (and writable
1252 (not rev)
1253 (vc-call make-version-backups-p file)
1254 (vc-up-to-date-p file)
1255 (vc-make-version-backup file))
1256 (let ((backend (vc-backend file)))
1257 (with-vc-properties (list file)
1258 (condition-case err
1259 (vc-call-backend backend 'checkout file writable rev)
1260 (file-error
1261 ;; Maybe the backend is not installed ;-(
1262 (when writable
1263 (let ((buf (get-file-buffer file)))
1264 (when buf (with-current-buffer buf (toggle-read-only -1)))))
1265 (signal (car err) (cdr err))))
1266 `((vc-state . ,(if (or (eq (vc-checkout-model backend (list file)) 'implicit)
1267 (not writable))
1268 (if (vc-call-backend backend 'latest-on-branch-p file)
1269 'up-to-date
1270 'needs-update)
1271 'edited))
1272 (vc-checkout-time . ,(nth 5 (file-attributes file))))))
1273 (vc-resynch-buffer file t t)
1274 (run-hooks 'vc-checkout-hook))
1276 (defun vc-mark-resolved (backend files)
1277 (prog1 (with-vc-properties
1278 files
1279 (vc-call-backend backend 'mark-resolved files)
1280 ;; FIXME: Is this TRTD? Might not be.
1281 `((vc-state . edited)))
1282 (message
1283 (substitute-command-keys
1284 "Conflicts have been resolved in %s. \
1285 Type \\[vc-next-action] to check in changes.")
1286 (if (> (length files) 1)
1287 (format "%d files" (length files))
1288 "this file"))))
1290 (defun vc-steal-lock (file rev owner)
1291 "Steal the lock on FILE."
1292 (let (file-description)
1293 (if rev
1294 (setq file-description (format "%s:%s" file rev))
1295 (setq file-description file))
1296 (when (not (yes-or-no-p (format "Steal the lock on %s from %s? "
1297 file-description owner)))
1298 (error "Steal canceled"))
1299 (message "Stealing lock on %s..." file)
1300 (with-vc-properties
1301 (list file)
1302 (vc-call steal-lock file rev)
1303 `((vc-state . edited)))
1304 (vc-resynch-buffer file t t)
1305 (message "Stealing lock on %s...done" file)
1306 ;; Write mail after actually stealing, because if the stealing
1307 ;; goes wrong, we don't want to send any mail.
1308 (compose-mail owner (format "Stolen lock on %s" file-description))
1309 (setq default-directory (expand-file-name "~/"))
1310 (goto-char (point-max))
1311 (insert
1312 (format "I stole the lock on %s, " file-description)
1313 (current-time-string)
1314 ".\n")
1315 (message "Please explain why you stole the lock. Type C-c C-c when done.")))
1317 (defun vc-checkin (files backend &optional rev comment initial-contents)
1318 "Check in FILES.
1319 The optional argument REV may be a string specifying the new revision
1320 level (if nil increment the current level). COMMENT is a comment
1321 string; if omitted, a buffer is popped up to accept a comment. If
1322 INITIAL-CONTENTS is non-nil, then COMMENT is used as the initial contents
1323 of the log entry buffer.
1325 If `vc-keep-workfiles' is nil, FILE is deleted afterwards, provided
1326 that the version control system supports this mode of operation.
1328 Runs the normal hooks `vc-before-checkin-hook' and `vc-checkin-hook'."
1329 (when vc-before-checkin-hook
1330 (run-hooks 'vc-before-checkin-hook))
1331 (lexical-let
1332 ((backend backend))
1333 (vc-start-logentry
1334 files rev comment initial-contents
1335 "Enter a change comment."
1336 "*VC-log*"
1337 (lambda (files rev comment)
1338 (message "Checking in %s..." (vc-delistify files))
1339 ;; "This log message intentionally left almost blank".
1340 ;; RCS 5.7 gripes about white-space-only comments too.
1341 (or (and comment (string-match "[^\t\n ]" comment))
1342 (setq comment "*** empty log message ***"))
1343 (with-vc-properties
1344 files
1345 ;; We used to change buffers to get local value of vc-checkin-switches,
1346 ;; but 'the' local buffer is not a well-defined concept for filesets.
1347 (progn
1348 (vc-call-backend backend 'checkin files rev comment)
1349 (mapc 'vc-delete-automatic-version-backups files))
1350 `((vc-state . up-to-date)
1351 (vc-checkout-time . ,(nth 5 (file-attributes file)))
1352 (vc-working-revision . nil)))
1353 (message "Checking in %s...done" (vc-delistify files)))
1354 'vc-checkin-hook)))
1356 ;;; Additional entry points for examining version histories
1358 ;; (defun vc-default-diff-tree (backend dir rev1 rev2)
1359 ;; "List differences for all registered files at and below DIR.
1360 ;; The meaning of REV1 and REV2 is the same as for `vc-revision-diff'."
1361 ;; ;; This implementation does an explicit tree walk, and calls
1362 ;; ;; vc-BACKEND-diff directly for each file. An optimization
1363 ;; ;; would be to use `vc-diff-internal', so that diffs can be local,
1364 ;; ;; and to call it only for files that are actually changed.
1365 ;; ;; However, this is expensive for some backends, and so it is left
1366 ;; ;; to backend-specific implementations.
1367 ;; (setq default-directory dir)
1368 ;; (vc-file-tree-walk
1369 ;; default-directory
1370 ;; (lambda (f)
1371 ;; (vc-exec-after
1372 ;; `(let ((coding-system-for-read (vc-coding-system-for-diff ',f)))
1373 ;; (message "Looking at %s" ',f)
1374 ;; (vc-call-backend ',(vc-backend f)
1375 ;; 'diff (list ',f) ',rev1 ',rev2))))))
1377 (defun vc-coding-system-for-diff (file)
1378 "Return the coding system for reading diff output for FILE."
1379 (or coding-system-for-read
1380 ;; if we already have this file open,
1381 ;; use the buffer's coding system
1382 (let ((buf (find-buffer-visiting file)))
1383 (when buf (with-current-buffer buf
1384 buffer-file-coding-system)))
1385 ;; otherwise, try to find one based on the file name
1386 (car (find-operation-coding-system 'insert-file-contents file))
1387 ;; and a final fallback
1388 'undecided))
1390 (defun vc-switches (backend op)
1391 "Return a list of vc-BACKEND switches for operation OP.
1392 BACKEND is a symbol such as `CVS', which will be downcased.
1393 OP is a symbol such as `diff'.
1395 In decreasing order of preference, return the value of:
1396 vc-BACKEND-OP-switches (e.g. `vc-cvs-diff-switches');
1397 vc-OP-switches (e.g. `vc-diff-switches'); or, in the case of
1398 diff only, `diff-switches'.
1400 If the chosen value is not a string or a list, return nil.
1401 This is so that you may set, e.g. `vc-svn-diff-switches' to t in order
1402 to override the value of `vc-diff-switches' and `diff-switches'."
1403 (let ((switches
1404 (or (when backend
1405 (let ((sym (vc-make-backend-sym
1406 backend (intern (concat (symbol-name op)
1407 "-switches")))))
1408 (when (boundp sym) (symbol-value sym))))
1409 (let ((sym (intern (format "vc-%s-switches" (symbol-name op)))))
1410 (when (boundp sym) (symbol-value sym)))
1411 (cond
1412 ((eq op 'diff) diff-switches)))))
1413 (if (stringp switches) (list switches)
1414 ;; If not a list, return nil.
1415 ;; This is so we can set vc-diff-switches to t to override
1416 ;; any switches in diff-switches.
1417 (when (listp switches) switches))))
1419 ;; Old def for compatibility with Emacs-21.[123].
1420 (defmacro vc-diff-switches-list (backend) `(vc-switches ',backend 'diff))
1421 (make-obsolete 'vc-diff-switches-list 'vc-switches "22.1")
1423 (defun vc-diff-finish (buffer messages)
1424 ;; The empty sync output case has already been handled, so the only
1425 ;; possibility of an empty output is for an async process.
1426 (when (buffer-live-p buffer)
1427 (let ((window (get-buffer-window buffer t))
1428 (emptyp (zerop (buffer-size buffer))))
1429 (with-current-buffer buffer
1430 (and messages emptyp
1431 (let ((inhibit-read-only t))
1432 (insert (cdr messages) ".\n")
1433 (message "%s" (cdr messages))))
1434 (goto-char (point-min))
1435 (when window
1436 (shrink-window-if-larger-than-buffer window)))
1437 (when (and messages (not emptyp))
1438 (message "%sdone" (car messages))))))
1440 (defvar vc-diff-added-files nil
1441 "If non-nil, diff added files by comparing them to /dev/null.")
1443 (defun vc-diff-internal (async vc-fileset rev1 rev2 &optional verbose)
1444 "Report diffs between two revisions of a fileset.
1445 Diff output goes to the *vc-diff* buffer. The function
1446 returns t if the buffer had changes, nil otherwise."
1447 (let* ((files (cadr vc-fileset))
1448 (messages (cons (format "Finding changes in %s..."
1449 (vc-delistify files))
1450 (format "No changes between %s and %s"
1451 (or rev1 "working revision")
1452 (or rev2 "workfile"))))
1453 ;; Set coding system based on the first file. It's a kluge,
1454 ;; but the only way to set it for each file included would
1455 ;; be to call the back end separately for each file.
1456 (coding-system-for-read
1457 (if files (vc-coding-system-for-diff (car files)) 'undecided)))
1458 (vc-setup-buffer "*vc-diff*")
1459 (message "%s" (car messages))
1460 ;; Many backends don't handle well the case of a file that has been
1461 ;; added but not yet committed to the repo (notably CVS and Subversion).
1462 ;; Do that work here so the backends don't have to futz with it. --ESR
1464 ;; Actually most backends (including CVS) have options to control the
1465 ;; behavior since which one is better depends on the user and on the
1466 ;; situation). Worse yet: this code does not handle the case where
1467 ;; `file' is a directory which contains added files.
1468 ;; I made it conditional on vc-diff-added-files but it should probably
1469 ;; just be removed (or copied/moved to specific backends). --Stef.
1470 (when vc-diff-added-files
1471 (let ((filtered '())
1472 process-file-side-effects)
1473 (dolist (file files)
1474 (if (or (file-directory-p file)
1475 (not (string= (vc-working-revision file) "0")))
1476 (push file filtered)
1477 ;; This file is added but not yet committed;
1478 ;; there is no master file to diff against.
1479 (if (or rev1 rev2)
1480 (error "No revisions of %s exist" file)
1481 ;; We regard this as "changed".
1482 ;; Diff it against /dev/null.
1483 (apply 'vc-do-command "*vc-diff*"
1484 1 "diff" file
1485 (append (vc-switches nil 'diff) '("/dev/null"))))))
1486 (setq files (nreverse filtered))))
1487 (let ((vc-disable-async-diff (not async)))
1488 (vc-call-backend (car vc-fileset) 'diff files rev1 rev2 "*vc-diff*"))
1489 (set-buffer "*vc-diff*")
1490 (if (and (zerop (buffer-size))
1491 (not (get-buffer-process (current-buffer))))
1492 ;; Treat this case specially so as not to pop the buffer.
1493 (progn
1494 (message "%s" (cdr messages))
1495 nil)
1496 (diff-mode)
1497 ;; Make the *vc-diff* buffer read only, the diff-mode key
1498 ;; bindings are nicer for read only buffers. pcl-cvs does the
1499 ;; same thing.
1500 (setq buffer-read-only t)
1501 (vc-exec-after `(vc-diff-finish ,(current-buffer) ',(when verbose
1502 messages)))
1503 ;; Display the buffer, but at the end because it can change point.
1504 (pop-to-buffer (current-buffer))
1505 ;; In the async case, we return t even if there are no differences
1506 ;; because we don't know that yet.
1507 t)))
1509 (defun vc-read-revision (prompt &optional files backend default initial-input)
1510 (cond
1511 ((null files)
1512 (let ((vc-fileset (vc-deduce-fileset t))) ;FIXME: why t? --Stef
1513 (setq files (cadr vc-fileset))
1514 (setq backend (car vc-fileset))))
1515 ((null backend) (setq backend (vc-backend (car files)))))
1516 (let ((completion-table
1517 (vc-call-backend backend 'revision-completion-table files)))
1518 (if completion-table
1519 (completing-read prompt completion-table
1520 nil nil initial-input nil default)
1521 (read-string prompt initial-input nil default))))
1523 ;;;###autoload
1524 (defun vc-version-diff (files rev1 rev2)
1525 "Report diffs between revisions of the fileset in the repository history."
1526 (interactive
1527 (let* ((vc-fileset (vc-deduce-fileset t)) ;FIXME: why t? --Stef
1528 (files (cadr vc-fileset))
1529 (backend (car vc-fileset))
1530 (first (car files))
1531 (rev1-default nil)
1532 (rev2-default nil))
1533 (cond
1534 ;; someday we may be able to do revision completion on non-singleton
1535 ;; filesets, but not yet.
1536 ((/= (length files) 1)
1537 nil)
1538 ;; if it's a directory, don't supply any revision default
1539 ((file-directory-p first)
1540 nil)
1541 ;; if the file is not up-to-date, use working revision as older revision
1542 ((not (vc-up-to-date-p first))
1543 (setq rev1-default (vc-working-revision first)))
1544 ;; if the file is not locked, use last and previous revisions as defaults
1546 (setq rev1-default (vc-call-backend backend 'previous-revision first
1547 (vc-working-revision first)))
1548 (when (string= rev1-default "") (setq rev1-default nil))
1549 (setq rev2-default (vc-working-revision first))))
1550 ;; construct argument list
1551 (let* ((rev1-prompt (if rev1-default
1552 (concat "Older revision (default "
1553 rev1-default "): ")
1554 "Older revision: "))
1555 (rev2-prompt (concat "Newer revision (default "
1556 (or rev2-default "current source") "): "))
1557 (rev1 (vc-read-revision rev1-prompt files backend rev1-default))
1558 (rev2 (vc-read-revision rev2-prompt files backend rev2-default)))
1559 (when (string= rev1 "") (setq rev1 nil))
1560 (when (string= rev2 "") (setq rev2 nil))
1561 (list files rev1 rev2))))
1562 ;; All that was just so we could do argument completion!
1563 (when (and (not rev1) rev2)
1564 (error "Not a valid revision range"))
1565 ;; Yes, it's painful to call (vc-deduce-fileset) again. Alas, the
1566 ;; placement rules for (interactive) don't actually leave us a choice.
1567 (vc-diff-internal t (vc-deduce-fileset t) rev1 rev2
1568 (called-interactively-p 'interactive)))
1570 ;;;###autoload
1571 (defun vc-diff (historic &optional not-urgent)
1572 "Display diffs between file revisions.
1573 Normally this compares the currently selected fileset with their
1574 working revisions. With a prefix argument HISTORIC, it reads two revision
1575 designators specifying which revisions to compare.
1577 The optional argument NOT-URGENT non-nil means it is ok to say no to
1578 saving the buffer."
1579 (interactive (list current-prefix-arg t))
1580 (if historic
1581 (call-interactively 'vc-version-diff)
1582 (when buffer-file-name (vc-buffer-sync not-urgent))
1583 (vc-diff-internal t (vc-deduce-fileset t) nil nil
1584 (called-interactively-p 'interactive))))
1586 ;;;###autoload
1587 (defun vc-root-diff (historic &optional not-urgent)
1588 "Display diffs between file revisions.
1589 Normally this compares the currently selected fileset with their
1590 working revisions. With a prefix argument HISTORIC, it reads two revision
1591 designators specifying which revisions to compare.
1593 The optional argument NOT-URGENT non-nil means it is ok to say no to
1594 saving the buffer."
1595 (interactive (list current-prefix-arg t))
1596 (if historic
1597 ;; FIXME: this does not work right, `vc-version-diff' ends up
1598 ;; calling `vc-deduce-fileset' to find the files to diff, and
1599 ;; that's not what we want here, we want the diff for the VC root dir.
1600 (call-interactively 'vc-version-diff)
1601 (when buffer-file-name (vc-buffer-sync not-urgent))
1602 (let ((backend
1603 (cond ((derived-mode-p 'vc-dir-mode) vc-dir-backend)
1604 (vc-mode (vc-backend buffer-file-name))))
1605 rootdir working-revision)
1606 (unless backend
1607 (error "Buffer is not version controlled"))
1608 (setq rootdir (vc-call-backend backend 'root default-directory))
1609 (setq working-revision (vc-working-revision rootdir))
1610 (vc-diff-internal
1611 t (list backend (list rootdir) working-revision) nil nil
1612 (called-interactively-p 'interactive)))))
1614 ;;;###autoload
1615 (defun vc-revision-other-window (rev)
1616 "Visit revision REV of the current file in another window.
1617 If the current file is named `F', the revision is named `F.~REV~'.
1618 If `F.~REV~' already exists, use it instead of checking it out again."
1619 (interactive
1620 (save-current-buffer
1621 (vc-ensure-vc-buffer)
1622 (list
1623 (vc-read-revision "Revision to visit (default is working revision): "
1624 (list buffer-file-name)))))
1625 (vc-ensure-vc-buffer)
1626 (let* ((file buffer-file-name)
1627 (revision (if (string-equal rev "")
1628 (vc-working-revision file)
1629 rev)))
1630 (switch-to-buffer-other-window (vc-find-revision file revision))))
1632 (defun vc-find-revision (file revision)
1633 "Read REVISION of FILE into a buffer and return the buffer."
1634 (let ((automatic-backup (vc-version-backup-file-name file revision))
1635 (filebuf (or (get-file-buffer file) (current-buffer)))
1636 (filename (vc-version-backup-file-name file revision 'manual)))
1637 (unless (file-exists-p filename)
1638 (if (file-exists-p automatic-backup)
1639 (rename-file automatic-backup filename nil)
1640 (message "Checking out %s..." filename)
1641 (with-current-buffer filebuf
1642 (let ((failed t))
1643 (unwind-protect
1644 (let ((coding-system-for-read 'no-conversion)
1645 (coding-system-for-write 'no-conversion))
1646 (with-temp-file filename
1647 (let ((outbuf (current-buffer)))
1648 ;; Change buffer to get local value of
1649 ;; vc-checkout-switches.
1650 (with-current-buffer filebuf
1651 (vc-call find-revision file revision outbuf))))
1652 (setq failed nil))
1653 (when (and failed (file-exists-p filename))
1654 (delete-file filename))))
1655 (vc-mode-line file))
1656 (message "Checking out %s...done" filename)))
1657 (let ((result-buf (find-file-noselect filename)))
1658 (with-current-buffer result-buf
1659 ;; Set the parent buffer so that things like
1660 ;; C-x v g, C-x v l, ... etc work.
1661 (set (make-local-variable 'vc-parent-buffer) filebuf))
1662 result-buf)))
1664 ;; Header-insertion code
1666 ;;;###autoload
1667 (defun vc-insert-headers ()
1668 "Insert headers into a file for use with a version control system.
1669 Headers desired are inserted at point, and are pulled from
1670 the variable `vc-BACKEND-header'."
1671 (interactive)
1672 (vc-ensure-vc-buffer)
1673 (save-excursion
1674 (save-restriction
1675 (widen)
1676 (when (or (not (vc-check-headers))
1677 (y-or-n-p "Version headers already exist. Insert another set? "))
1678 (let* ((delims (cdr (assq major-mode vc-comment-alist)))
1679 (comment-start-vc (or (car delims) comment-start "#"))
1680 (comment-end-vc (or (car (cdr delims)) comment-end ""))
1681 (hdsym (vc-make-backend-sym (vc-backend buffer-file-name)
1682 'header))
1683 (hdstrings (and (boundp hdsym) (symbol-value hdsym))))
1684 (dolist (s hdstrings)
1685 (insert comment-start-vc "\t" s "\t"
1686 comment-end-vc "\n"))
1687 (when vc-static-header-alist
1688 (dolist (f vc-static-header-alist)
1689 (when (string-match (car f) buffer-file-name)
1690 (insert (format (cdr f) (car hdstrings)))))))))))
1692 (defun vc-clear-headers (&optional file)
1693 "Clear all version headers in the current buffer (or FILE).
1694 The headers are reset to their non-expanded form."
1695 (let* ((filename (or file buffer-file-name))
1696 (visited (find-buffer-visiting filename))
1697 (backend (vc-backend filename)))
1698 (when (vc-find-backend-function backend 'clear-headers)
1699 (if visited
1700 (let ((context (vc-buffer-context)))
1701 ;; save-excursion may be able to relocate point and mark
1702 ;; properly. If it fails, vc-restore-buffer-context
1703 ;; will give it a second try.
1704 (save-excursion
1705 (vc-call-backend backend 'clear-headers))
1706 (vc-restore-buffer-context context))
1707 (set-buffer (find-file-noselect filename))
1708 (vc-call-backend backend 'clear-headers)
1709 (kill-buffer filename)))))
1711 (defun vc-modify-change-comment (files rev oldcomment)
1712 "Edit the comment associated with the given files and revision."
1713 (vc-start-logentry
1714 files rev oldcomment t
1715 "Enter a replacement change comment."
1716 "*VC-log*"
1717 (lambda (files rev comment)
1718 (vc-call-backend
1719 ;; Less of a kluge than it looks like; log-view mode only passes
1720 ;; this function a singleton list. Arguments left in this form in
1721 ;; case the more general operation ever becomes meaningful.
1722 (vc-responsible-backend (car files))
1723 'modify-change-comment files rev comment))))
1725 ;;;###autoload
1726 (defun vc-merge ()
1727 "Merge changes between two revisions into the current buffer's file.
1728 This asks for two revisions to merge from in the minibuffer. If the
1729 first revision is a branch number, then merge all changes from that
1730 branch. If the first revision is empty, merge news, i.e. recent changes
1731 from the current branch.
1733 See Info node `Merging'."
1734 (interactive)
1735 (vc-ensure-vc-buffer)
1736 (vc-buffer-sync)
1737 (let* ((file buffer-file-name)
1738 (backend (vc-backend file))
1739 (state (vc-state file))
1740 first-revision second-revision status)
1741 (cond
1742 ((stringp state) ;; Locking VCses only
1743 (error "File is locked by %s" state))
1744 ((not (vc-editable-p file))
1745 (if (y-or-n-p
1746 "File must be checked out for merging. Check out now? ")
1747 (vc-checkout file t)
1748 (error "Merge aborted"))))
1749 (setq first-revision
1750 (vc-read-revision
1751 (concat "Branch or revision to merge from "
1752 "(default news on current branch): ")
1753 (list file)
1754 backend))
1755 (if (string= first-revision "")
1756 (setq status (vc-call-backend backend 'merge-news file))
1757 (if (not (vc-find-backend-function backend 'merge))
1758 (error "Sorry, merging is not implemented for %s" backend)
1759 (if (not (vc-branch-p first-revision))
1760 (setq second-revision
1761 (vc-read-revision
1762 "Second revision: "
1763 (list file) backend nil
1764 ;; FIXME: This is CVS/RCS/SCCS specific.
1765 (concat (vc-branch-part first-revision) ".")))
1766 ;; We want to merge an entire branch. Set revisions
1767 ;; accordingly, so that vc-BACKEND-merge understands us.
1768 (setq second-revision first-revision)
1769 ;; first-revision must be the starting point of the branch
1770 (setq first-revision (vc-branch-part first-revision)))
1771 (setq status (vc-call-backend backend 'merge file
1772 first-revision second-revision))))
1773 (vc-maybe-resolve-conflicts file status "WORKFILE" "MERGE SOURCE")))
1775 (defun vc-maybe-resolve-conflicts (file status &optional name-A name-B)
1776 (vc-resynch-buffer file t (not (buffer-modified-p)))
1777 (if (zerop status) (message "Merge successful")
1778 (smerge-mode 1)
1779 (message "File contains conflicts.")))
1781 ;;;###autoload
1782 (defalias 'vc-resolve-conflicts 'smerge-ediff)
1784 ;; Named-configuration entry points
1786 (defun vc-tag-precondition (dir)
1787 "Scan the tree below DIR, looking for files not up-to-date.
1788 If any file is not up-to-date, return the name of the first such file.
1789 \(This means, neither tag creation nor retrieval is allowed.\)
1790 If one or more of the files are currently visited, return `visited'.
1791 Otherwise, return nil."
1792 (let ((status nil))
1793 (catch 'vc-locked-example
1794 (vc-file-tree-walk
1796 (lambda (f)
1797 (if (not (vc-up-to-date-p f)) (throw 'vc-locked-example f)
1798 (when (get-file-buffer f) (setq status 'visited)))))
1799 status)))
1801 ;;;###autoload
1802 (defun vc-create-tag (dir name branchp)
1803 "Descending recursively from DIR, make a tag called NAME.
1804 For each registered file, the working revision becomes part of
1805 the named configuration. If the prefix argument BRANCHP is
1806 given, the tag is made as a new branch and the files are
1807 checked out in that new branch."
1808 (interactive
1809 (list (read-file-name "Directory: " default-directory default-directory t)
1810 (read-string "New tag name: ")
1811 current-prefix-arg))
1812 (message "Making %s... " (if branchp "branch" "tag"))
1813 (when (file-directory-p dir) (setq dir (file-name-as-directory dir)))
1814 (vc-call-backend (vc-responsible-backend dir)
1815 'create-tag dir name branchp)
1816 (message "Making %s... done" (if branchp "branch" "tag")))
1818 ;;;###autoload
1819 (defun vc-retrieve-tag (dir name)
1820 "Descending recursively from DIR, retrieve the tag called NAME.
1821 If NAME is empty, it refers to the latest revisions.
1822 If locking is used for the files in DIR, then there must not be any
1823 locked files at or below DIR (but if NAME is empty, locked files are
1824 allowed and simply skipped)."
1825 (interactive
1826 (list (read-file-name "Directory: " default-directory default-directory t)
1827 (read-string "Tag name to retrieve (default latest revisions): ")))
1828 (let ((update (yes-or-no-p "Update any affected buffers? "))
1829 (msg (if (or (not name) (string= name ""))
1830 (format "Updating %s... " (abbreviate-file-name dir))
1831 (format "Retrieving tag into %s... "
1832 (abbreviate-file-name dir)))))
1833 (message "%s" msg)
1834 (vc-call-backend (vc-responsible-backend dir)
1835 'retrieve-tag dir name update)
1836 (message "%s" (concat msg "done"))))
1838 ;; Miscellaneous other entry points
1840 ;; FIXME: this should be a defcustom
1841 ;; FIXME: maybe add another choice:
1842 ;; `root-directory' (or somesuch), which would mean show a short log
1843 ;; for the root directory.
1844 (defvar vc-log-short-style '(directory)
1845 "Whether or not to show a short log.
1846 If it contains `directory' then if the fileset contains a directory show a short log.
1847 If it contains `file' then show short logs for files.
1848 Not all VC backends support short logs!")
1850 (defun vc-print-log-internal (backend files working-revision limit)
1851 ;; Don't switch to the output buffer before running the command,
1852 ;; so that any buffer-local settings in the vc-controlled
1853 ;; buffer can be accessed by the command.
1854 (let ((dir-present nil)
1855 (vc-short-log nil)
1856 pl-return)
1857 (dolist (file files)
1858 (when (file-directory-p file)
1859 (setq dir-present t)))
1860 (setq vc-short-log
1861 (not (null (if dir-present
1862 (memq 'directory vc-log-short-style)
1863 (memq 'file vc-log-short-style)))))
1865 (setq pl-return (vc-call-backend backend 'print-log files "*vc-change-log*"
1866 vc-short-log limit))
1867 (pop-to-buffer "*vc-change-log*")
1868 (vc-exec-after
1869 `(let ((inhibit-read-only t)
1870 (vc-short-log ,vc-short-log))
1871 (vc-call-backend ',backend 'log-view-mode)
1872 (set (make-local-variable 'log-view-vc-backend) ',backend)
1873 (set (make-local-variable 'log-view-vc-fileset) ',files)
1875 (when (and ,limit (not (eq 'limit-unsupported pl-return)))
1876 (goto-char (point-max))
1877 (widget-create 'push-button
1878 :notify (lambda (&rest ignore)
1879 (vc-print-log-internal
1880 ',backend ',files ',working-revision (* 2 ,limit)))
1881 :help-echo "Show the log again, and double the number of log entries shown"
1882 "Show 2X entries")
1883 (widget-insert " ")
1884 (widget-create 'push-button
1885 :notify (lambda (&rest ignore)
1886 (vc-print-log-internal
1887 ',backend ',files ',working-revision nil))
1888 :help-echo "Show the log again, showing all entries"
1889 "Show unlimited entries")
1890 (widget-setup))
1892 (shrink-window-if-larger-than-buffer)
1893 ;; move point to the log entry for the working revision
1894 (vc-call-backend ',backend 'show-log-entry ',working-revision)
1895 (setq vc-sentinel-movepoint (point))
1896 (set-buffer-modified-p nil)))))
1898 ;;;###autoload
1899 (defun vc-print-log (&optional working-revision limit)
1900 "List the change log of the current fileset in a window.
1901 If WORKING-REVISION is non-nil, leave the point at that revision."
1902 (interactive
1903 (cond
1904 (current-prefix-arg
1905 (let ((rev (read-from-minibuffer "Log from revision (default: last revision): " nil
1906 nil nil nil))
1907 (lim (string-to-number
1908 (read-from-minibuffer
1909 "Limit display (unlimited: 0): "
1910 (format "%s" vc-log-show-limit)
1911 nil nil nil))))
1912 (when (string= rev "") (setq rev nil))
1913 (when (<= lim 0) (setq lim nil))
1914 (list rev lim)))
1916 (list nil nil))))
1917 (let* ((vc-fileset (vc-deduce-fileset t)) ;FIXME: Why t? --Stef
1918 (backend (car vc-fileset))
1919 (files (cadr vc-fileset))
1920 (working-revision (or working-revision (vc-working-revision (car files)))))
1921 (vc-print-log-internal backend files working-revision limit)))
1923 ;;;###autoload
1924 (defun vc-print-root-log (&optional limit)
1925 "List the change log of for the current VC controlled tree in a window."
1926 (interactive
1927 (cond
1928 (current-prefix-arg
1929 (let ((lim (string-to-number
1930 (read-from-minibuffer
1931 "Limit display (unlimited: 0): "
1932 (format "%s" vc-log-show-limit)
1933 nil nil nil))))
1934 (when (<= lim 0) (setq lim nil))
1935 (list lim)))
1937 (list nil))))
1938 (let ((backend
1939 (cond ((derived-mode-p 'vc-dir-mode) vc-dir-backend)
1940 (vc-mode (vc-backend buffer-file-name))))
1941 rootdir working-revision)
1942 (unless backend
1943 (error "Buffer is not version controlled"))
1944 (setq rootdir (vc-call-backend backend 'root default-directory))
1945 (setq working-revision (vc-working-revision rootdir))
1946 (vc-print-log-internal backend (list rootdir) working-revision limit)))
1948 ;;;###autoload
1949 (defun vc-revert ()
1950 "Revert working copies of the selected fileset to their repository contents.
1951 This asks for confirmation if the buffer contents are not identical
1952 to the working revision (except for keyword expansion)."
1953 (interactive)
1954 (let* ((vc-fileset (vc-deduce-fileset))
1955 (files (cadr vc-fileset)))
1956 ;; If any of the files is visited by the current buffer, make
1957 ;; sure buffer is saved. If the user says `no', abort since
1958 ;; we cannot show the changes and ask for confirmation to
1959 ;; discard them.
1960 (when (or (not files) (memq (buffer-file-name) files))
1961 (vc-buffer-sync nil))
1962 (dolist (file files)
1963 (let ((buf (get-file-buffer file)))
1964 (when (and buf (buffer-modified-p buf))
1965 (error "Please kill or save all modified buffers before reverting")))
1966 (when (vc-up-to-date-p file)
1967 (unless (yes-or-no-p (format "%s seems up-to-date. Revert anyway? " file))
1968 (error "Revert canceled"))))
1969 (when (vc-diff-internal vc-allow-async-revert vc-fileset nil nil)
1970 (unless (yes-or-no-p
1971 (format "Discard changes in %s? "
1972 (let ((str (vc-delistify files)))
1973 (if (< (length str) 50)
1975 (format "%d files" (length files))))))
1976 (error "Revert canceled"))
1977 (delete-windows-on "*vc-diff*")
1978 (kill-buffer "*vc-diff*"))
1979 (dolist (file files)
1980 (message "Reverting %s..." (vc-delistify files))
1981 (vc-revert-file file)
1982 (message "Reverting %s...done" (vc-delistify files)))))
1984 ;;;###autoload
1985 (defun vc-rollback ()
1986 "Roll back (remove) the most recent changeset committed to the repository.
1987 This may be either a file-level or a repository-level operation,
1988 depending on the underlying version-control system."
1989 (interactive)
1990 (let* ((vc-fileset (vc-deduce-fileset))
1991 (backend (car vc-fileset))
1992 (files (cadr vc-fileset))
1993 (granularity (vc-call-backend backend 'revision-granularity)))
1994 (unless (vc-find-backend-function backend 'rollback)
1995 (error "Rollback is not supported in %s" backend))
1996 (when (and (not (eq granularity 'repository)) (/= (length files) 1))
1997 (error "Rollback requires a singleton fileset or repository versioning"))
1998 ;; FIXME: latest-on-branch-p should take the fileset.
1999 (when (not (vc-call-backend backend 'latest-on-branch-p (car files)))
2000 (error "Rollback is only possible at the tip revision"))
2001 ;; If any of the files is visited by the current buffer, make
2002 ;; sure buffer is saved. If the user says `no', abort since
2003 ;; we cannot show the changes and ask for confirmation to
2004 ;; discard them.
2005 (when (or (not files) (memq (buffer-file-name) files))
2006 (vc-buffer-sync nil))
2007 (dolist (file files)
2008 (when (buffer-modified-p (get-file-buffer file))
2009 (error "Please kill or save all modified buffers before rollback"))
2010 (when (not (vc-up-to-date-p file))
2011 (error "Please revert all modified workfiles before rollback")))
2012 ;; Accumulate changes associated with the fileset
2013 (vc-setup-buffer "*vc-diff*")
2014 (not-modified)
2015 (message "Finding changes...")
2016 (let* ((tip (vc-working-revision (car files)))
2017 ;; FIXME: `previous-revision' should take the fileset.
2018 (previous (vc-call-backend backend 'previous-revision
2019 (car files) tip)))
2020 (vc-diff-internal nil vc-fileset previous tip))
2021 ;; Display changes
2022 (unless (yes-or-no-p "Discard these revisions? ")
2023 (error "Rollback canceled"))
2024 (delete-windows-on "*vc-diff*")
2025 (kill-buffer"*vc-diff*")
2026 ;; Do the actual reversions
2027 (message "Rolling back %s..." (vc-delistify files))
2028 (with-vc-properties
2029 files
2030 (vc-call-backend backend 'rollback files)
2031 `((vc-state . ,'up-to-date)
2032 (vc-checkout-time . , (nth 5 (file-attributes file)))
2033 (vc-working-revision . nil)))
2034 (dolist (f files) (vc-resynch-buffer f t t))
2035 (message "Rolling back %s...done" (vc-delistify files))))
2037 ;;;###autoload
2038 (define-obsolete-function-alias 'vc-revert-buffer 'vc-revert "23.1")
2040 ;;;###autoload
2041 (defun vc-update ()
2042 "Update the current fileset's files to their tip revisions.
2043 For each one that contains no changes, and is not locked, then this simply
2044 replaces the work file with the latest revision on its branch. If the file
2045 contains changes, and the backend supports merging news, then any recent
2046 changes from the current branch are merged into the working file."
2047 (interactive)
2048 (let* ((vc-fileset (vc-deduce-fileset))
2049 (backend (car vc-fileset))
2050 (files (cadr vc-fileset)))
2051 (save-some-buffers ; save buffers visiting files
2052 nil (lambda ()
2053 (and (buffer-modified-p)
2054 (let ((file (buffer-file-name)))
2055 (and file (member file files))))))
2056 (dolist (file files)
2057 (if (vc-up-to-date-p file)
2058 (vc-checkout file nil t)
2059 (if (eq (vc-checkout-model backend (list file)) 'locking)
2060 (if (eq (vc-state file) 'edited)
2061 (error "%s"
2062 (substitute-command-keys
2063 "File is locked--type \\[vc-revert] to discard changes"))
2064 (error "Unexpected file state (%s) -- type %s"
2065 (vc-state file)
2066 (substitute-command-keys
2067 "\\[vc-next-action] to correct")))
2068 (vc-maybe-resolve-conflicts
2069 file (vc-call-backend backend 'merge-news file)))))))
2071 (defun vc-version-backup-file (file &optional rev)
2072 "Return name of backup file for revision REV of FILE.
2073 If version backups should be used for FILE, and there exists
2074 such a backup for REV or the working revision of file, return
2075 its name; otherwise return nil."
2076 (when (vc-call make-version-backups-p file)
2077 (let ((backup-file (vc-version-backup-file-name file rev)))
2078 (if (file-exists-p backup-file)
2079 backup-file
2080 ;; there is no automatic backup, but maybe the user made one manually
2081 (setq backup-file (vc-version-backup-file-name file rev 'manual))
2082 (when (file-exists-p backup-file)
2083 backup-file)))))
2085 (defun vc-revert-file (file)
2086 "Revert FILE back to the repository working revision it was based on."
2087 (with-vc-properties
2088 (list file)
2089 (let ((backup-file (vc-version-backup-file file)))
2090 (when backup-file
2091 (copy-file backup-file file 'ok-if-already-exists 'keep-date)
2092 (vc-delete-automatic-version-backups file))
2093 (vc-call revert file backup-file))
2094 `((vc-state . up-to-date)
2095 (vc-checkout-time . ,(nth 5 (file-attributes file)))))
2096 (vc-resynch-buffer file t t))
2098 ;;;###autoload
2099 (defun vc-switch-backend (file backend)
2100 "Make BACKEND the current version control system for FILE.
2101 FILE must already be registered in BACKEND. The change is not
2102 permanent, only for the current session. This function only changes
2103 VC's perspective on FILE, it does not register or unregister it.
2104 By default, this command cycles through the registered backends.
2105 To get a prompt, use a prefix argument."
2106 (interactive
2107 (list
2108 (or buffer-file-name
2109 (error "There is no version-controlled file in this buffer"))
2110 (let ((crt-bk (vc-backend buffer-file-name))
2111 (backends nil))
2112 (unless crt-bk
2113 (error "File %s is not under version control" buffer-file-name))
2114 ;; Find the registered backends.
2115 (dolist (crt vc-handled-backends)
2116 (when (and (vc-call-backend crt 'registered buffer-file-name)
2117 (not (eq crt-bk crt)))
2118 (push crt backends)))
2119 ;; Find the next backend.
2120 (let ((def (car backends))
2121 (others backends))
2122 (cond
2123 ((null others) (error "No other backend to switch to"))
2124 (current-prefix-arg
2125 (intern
2126 (upcase
2127 (completing-read
2128 (format "Switch to backend [%s]: " def)
2129 (mapcar (lambda (b) (list (downcase (symbol-name b)))) backends)
2130 nil t nil nil (downcase (symbol-name def))))))
2131 (t def))))))
2132 (unless (eq backend (vc-backend file))
2133 (vc-file-clearprops file)
2134 (vc-file-setprop file 'vc-backend backend)
2135 ;; Force recomputation of the state
2136 (unless (vc-call-backend backend 'registered file)
2137 (vc-file-clearprops file)
2138 (error "%s is not registered in %s" file backend))
2139 (vc-mode-line file)))
2141 ;;;###autoload
2142 (defun vc-transfer-file (file new-backend)
2143 "Transfer FILE to another version control system NEW-BACKEND.
2144 If NEW-BACKEND has a higher precedence than FILE's current backend
2145 \(i.e. it comes earlier in `vc-handled-backends'), then register FILE in
2146 NEW-BACKEND, using the revision number from the current backend as the
2147 base level. If NEW-BACKEND has a lower precedence than the current
2148 backend, then commit all changes that were made under the current
2149 backend to NEW-BACKEND, and unregister FILE from the current backend.
2150 \(If FILE is not yet registered under NEW-BACKEND, register it.)"
2151 (let* ((old-backend (vc-backend file))
2152 (edited (memq (vc-state file) '(edited needs-merge)))
2153 (registered (vc-call-backend new-backend 'registered file))
2154 (move
2155 (and registered ; Never move if not registered in new-backend yet.
2156 ;; move if new-backend comes later in vc-handled-backends
2157 (or (memq new-backend (memq old-backend vc-handled-backends))
2158 (y-or-n-p "Final transfer? "))))
2159 (comment nil))
2160 (when (eq old-backend new-backend)
2161 (error "%s is the current backend of %s" new-backend file))
2162 (if registered
2163 (set-file-modes file (logior (file-modes file) 128))
2164 ;; `registered' might have switched under us.
2165 (vc-switch-backend file old-backend)
2166 (let* ((rev (vc-working-revision file))
2167 (modified-file (and edited (make-temp-file file)))
2168 (unmodified-file (and modified-file (vc-version-backup-file file))))
2169 ;; Go back to the base unmodified file.
2170 (unwind-protect
2171 (progn
2172 (when modified-file
2173 (copy-file file modified-file 'ok-if-already-exists)
2174 ;; If we have a local copy of the unmodified file, handle that
2175 ;; here and not in vc-revert-file because we don't want to
2176 ;; delete that copy -- it is still useful for OLD-BACKEND.
2177 (if unmodified-file
2178 (copy-file unmodified-file file
2179 'ok-if-already-exists 'keep-date)
2180 (when (y-or-n-p "Get base revision from master? ")
2181 (vc-revert-file file))))
2182 (vc-call-backend new-backend 'receive-file file rev))
2183 (when modified-file
2184 (vc-switch-backend file new-backend)
2185 (unless (eq (vc-checkout-model new-backend (list file)) 'implicit)
2186 (vc-checkout file t nil))
2187 (rename-file modified-file file 'ok-if-already-exists)
2188 (vc-file-setprop file 'vc-checkout-time nil)))))
2189 (when move
2190 (vc-switch-backend file old-backend)
2191 (setq comment (vc-call-backend old-backend 'comment-history file))
2192 (vc-call-backend old-backend 'unregister file))
2193 (vc-switch-backend file new-backend)
2194 (when (or move edited)
2195 (vc-file-setprop file 'vc-state 'edited)
2196 (vc-mode-line file new-backend)
2197 (vc-checkin file new-backend nil comment (stringp comment)))))
2199 (defun vc-rename-master (oldmaster newfile templates)
2200 "Rename OLDMASTER to be the master file for NEWFILE based on TEMPLATES."
2201 (let* ((dir (file-name-directory (expand-file-name oldmaster)))
2202 (newdir (or (file-name-directory newfile) ""))
2203 (newbase (file-name-nondirectory newfile))
2204 (masters
2205 ;; List of potential master files for `newfile'
2206 (mapcar
2207 (lambda (s) (vc-possible-master s newdir newbase))
2208 templates)))
2209 (when (or (file-symlink-p oldmaster)
2210 (file-symlink-p (file-name-directory oldmaster)))
2211 (error "This is unsafe in the presence of symbolic links"))
2212 (rename-file
2213 oldmaster
2214 (catch 'found
2215 ;; If possible, keep the master file in the same directory.
2216 (dolist (f masters)
2217 (when (and f (string= (file-name-directory (expand-file-name f)) dir))
2218 (throw 'found f)))
2219 ;; If not, just use the first possible place.
2220 (dolist (f masters)
2221 (and f (or (not (setq dir (file-name-directory f)))
2222 (file-directory-p dir))
2223 (throw 'found f)))
2224 (error "New file lacks a version control directory")))))
2226 ;;;###autoload
2227 (defun vc-delete-file (file)
2228 "Delete file and mark it as such in the version control system."
2229 (interactive "fVC delete file: ")
2230 (setq file (expand-file-name file))
2231 (let ((buf (get-file-buffer file))
2232 (backend (vc-backend file)))
2233 (unless backend
2234 (error "File %s is not under version control"
2235 (file-name-nondirectory file)))
2236 (unless (vc-find-backend-function backend 'delete-file)
2237 (error "Deleting files under %s is not supported in VC" backend))
2238 (when (and buf (buffer-modified-p buf))
2239 (error "Please save or undo your changes before deleting %s" file))
2240 (let ((state (vc-state file)))
2241 (when (eq state 'edited)
2242 (error "Please commit or undo your changes before deleting %s" file))
2243 (when (eq state 'conflict)
2244 (error "Please resolve the conflicts before deleting %s" file)))
2245 (unless (y-or-n-p (format "Really want to delete %s? "
2246 (file-name-nondirectory file)))
2247 (error "Abort!"))
2248 (unless (or (file-directory-p file) (null make-backup-files)
2249 (not (file-exists-p file)))
2250 (with-current-buffer (or buf (find-file-noselect file))
2251 (let ((backup-inhibited nil))
2252 (backup-buffer))))
2253 ;; Bind `default-directory' so that the command that the backend
2254 ;; runs to remove the file is invoked in the correct context.
2255 (let ((default-directory (file-name-directory file)))
2256 (vc-call-backend backend 'delete-file file))
2257 ;; If the backend hasn't deleted the file itself, let's do it for him.
2258 (when (file-exists-p file) (delete-file file))
2259 ;; Forget what VC knew about the file.
2260 (vc-file-clearprops file)
2261 ;; Make sure the buffer is deleted and the *vc-dir* buffers are
2262 ;; updated after this.
2263 (vc-resynch-buffer file nil t)))
2265 ;;;###autoload
2266 (defun vc-rename-file (old new)
2267 "Rename file OLD to NEW, and rename its master file likewise."
2268 (interactive "fVC rename file: \nFRename to: ")
2269 ;; in CL I would have said (setq new (merge-pathnames new old))
2270 (let ((old-base (file-name-nondirectory old)))
2271 (when (and (not (string= "" old-base))
2272 (string= "" (file-name-nondirectory new)))
2273 (setq new (concat new old-base))))
2274 (let ((oldbuf (get-file-buffer old)))
2275 (when (and oldbuf (buffer-modified-p oldbuf))
2276 (error "Please save files before moving them"))
2277 (when (get-file-buffer new)
2278 (error "Already editing new file name"))
2279 (when (file-exists-p new)
2280 (error "New file already exists"))
2281 (let ((state (vc-state old)))
2282 (unless (memq state '(up-to-date edited))
2283 (error "Please %s files before moving them"
2284 (if (stringp state) "check in" "update"))))
2285 (vc-call rename-file old new)
2286 (vc-file-clearprops old)
2287 ;; Move the actual file (unless the backend did it already)
2288 (when (file-exists-p old) (rename-file old new))
2289 ;; ?? Renaming a file might change its contents due to keyword expansion.
2290 ;; We should really check out a new copy if the old copy was precisely equal
2291 ;; to some checked-in revision. However, testing for this is tricky....
2292 (when oldbuf
2293 (with-current-buffer oldbuf
2294 (let ((buffer-read-only buffer-read-only))
2295 (set-visited-file-name new))
2296 (vc-mode-line new (vc-backend new))
2297 (set-buffer-modified-p nil)))))
2299 ;;;###autoload
2300 (defun vc-update-change-log (&rest args)
2301 "Find change log file and add entries from recent version control logs.
2302 Normally, find log entries for all registered files in the default
2303 directory.
2305 With prefix arg of \\[universal-argument], only find log entries for the current buffer's file.
2307 With any numeric prefix arg, find log entries for all currently visited
2308 files that are under version control. This puts all the entries in the
2309 log for the default directory, which may not be appropriate.
2311 From a program, any ARGS are assumed to be filenames for which
2312 log entries should be gathered."
2313 (interactive
2314 (cond ((consp current-prefix-arg) ;C-u
2315 (list buffer-file-name))
2316 (current-prefix-arg ;Numeric argument.
2317 (let ((files nil)
2318 (buffers (buffer-list))
2319 file)
2320 (while buffers
2321 (setq file (buffer-file-name (car buffers)))
2322 (and file (vc-backend file)
2323 (setq files (cons file files)))
2324 (setq buffers (cdr buffers)))
2325 files))
2327 ;; Don't supply any filenames to backend; this means
2328 ;; it should find all relevant files relative to
2329 ;; the default-directory.
2330 nil)))
2331 (vc-call-backend (vc-responsible-backend default-directory)
2332 'update-changelog args))
2334 ;; functions that operate on RCS revision numbers. This code should
2335 ;; also be moved into the backends. It stays for now, however, since
2336 ;; it is used in code below.
2337 (defun vc-branch-p (rev)
2338 "Return t if REV is a branch revision."
2339 (not (eq nil (string-match "\\`[0-9]+\\(\\.[0-9]+\\.[0-9]+\\)*\\'" rev))))
2341 ;;;###autoload
2342 (defun vc-branch-part (rev)
2343 "Return the branch part of a revision number REV."
2344 (let ((index (string-match "\\.[0-9]+\\'" rev)))
2345 (when index
2346 (substring rev 0 index))))
2348 (define-obsolete-function-alias
2349 'vc-default-previous-version 'vc-default-previous-revision "23.1")
2351 (defun vc-default-responsible-p (backend file)
2352 "Indicate whether BACKEND is reponsible for FILE.
2353 The default is to return nil always."
2354 nil)
2356 (defun vc-default-could-register (backend file)
2357 "Return non-nil if BACKEND could be used to register FILE.
2358 The default implementation returns t for all files."
2361 (defun vc-default-latest-on-branch-p (backend file)
2362 "Return non-nil if FILE is the latest on its branch.
2363 This default implementation always returns non-nil, which means that
2364 editing non-current revisions is not supported by default."
2367 (defun vc-default-init-revision (backend) vc-default-init-revision)
2369 (defun vc-default-find-revision (backend file rev buffer)
2370 "Provide the new `find-revision' op based on the old `checkout' op.
2371 This is only for compatibility with old backends. They should be updated
2372 to provide the `find-revision' operation instead."
2373 (let ((tmpfile (make-temp-file (expand-file-name file))))
2374 (unwind-protect
2375 (progn
2376 (vc-call-backend backend 'checkout file nil rev tmpfile)
2377 (with-current-buffer buffer
2378 (insert-file-contents-literally tmpfile)))
2379 (delete-file tmpfile))))
2381 (defun vc-default-rename-file (backend old new)
2382 (condition-case nil
2383 (add-name-to-file old new)
2384 (error (rename-file old new)))
2385 (vc-delete-file old)
2386 (with-current-buffer (find-file-noselect new)
2387 (vc-register)))
2389 (defalias 'vc-default-check-headers 'ignore)
2391 (defun vc-default-log-view-mode (backend) (log-view-mode))
2393 (defun vc-default-show-log-entry (backend rev)
2394 (with-no-warnings
2395 (log-view-goto-rev rev)))
2397 (defun vc-default-comment-history (backend file)
2398 "Return a string with all log entries stored in BACKEND for FILE."
2399 (when (vc-find-backend-function backend 'print-log)
2400 (with-current-buffer "*vc*"
2401 (vc-call-backend backend 'print-log (list file))
2402 (buffer-string))))
2404 (defun vc-default-receive-file (backend file rev)
2405 "Let BACKEND receive FILE from another version control system."
2406 (vc-call-backend backend 'register (list file) rev ""))
2408 (defun vc-default-retrieve-tag (backend dir name update)
2409 (if (string= name "")
2410 (progn
2411 (vc-file-tree-walk
2413 (lambda (f) (and
2414 (vc-up-to-date-p f)
2415 (vc-error-occurred
2416 (vc-call-backend backend 'checkout f nil "")
2417 (when update (vc-resynch-buffer f t t)))))))
2418 (let ((result (vc-tag-precondition dir)))
2419 (if (stringp result)
2420 (error "File %s is locked" result)
2421 (setq update (and (eq result 'visited) update))
2422 (vc-file-tree-walk
2424 (lambda (f) (vc-error-occurred
2425 (vc-call-backend backend 'checkout f nil name)
2426 (when update (vc-resynch-buffer f t t)))))))))
2428 (defun vc-default-revert (backend file contents-done)
2429 (unless contents-done
2430 (let ((rev (vc-working-revision file))
2431 (file-buffer (or (get-file-buffer file) (current-buffer))))
2432 (message "Checking out %s..." file)
2433 (let ((failed t)
2434 (backup-name (car (find-backup-file-name file))))
2435 (when backup-name
2436 (copy-file file backup-name 'ok-if-already-exists 'keep-date)
2437 (unless (file-writable-p file)
2438 (set-file-modes file (logior (file-modes file) 128))))
2439 (unwind-protect
2440 (let ((coding-system-for-read 'no-conversion)
2441 (coding-system-for-write 'no-conversion))
2442 (with-temp-file file
2443 (let ((outbuf (current-buffer)))
2444 ;; Change buffer to get local value of vc-checkout-switches.
2445 (with-current-buffer file-buffer
2446 (let ((default-directory (file-name-directory file)))
2447 (vc-call-backend backend 'find-revision
2448 file rev outbuf)))))
2449 (setq failed nil))
2450 (when backup-name
2451 (if failed
2452 (rename-file backup-name file 'ok-if-already-exists)
2453 (and (not vc-make-backup-files) (delete-file backup-name))))))
2454 (message "Checking out %s...done" file))))
2456 (defalias 'vc-default-revision-completion-table 'ignore)
2457 (defalias 'vc-default-mark-resolved 'ignore)
2459 (defun vc-default-dir-status-files (backend dir files default-state update-function)
2460 (funcall update-function
2461 (mapcar (lambda (file) (list file default-state)) files)))
2463 (defun vc-check-headers ()
2464 "Check if the current file has any headers in it."
2465 (interactive)
2466 (vc-call-backend (vc-backend buffer-file-name) 'check-headers))
2470 ;; These things should probably be generally available
2472 (defun vc-string-prefix-p (prefix string)
2473 (let ((lpref (length prefix)))
2474 (and (>= (length string) lpref)
2475 (eq t (compare-strings prefix nil nil string nil lpref)))))
2477 (defun vc-file-tree-walk (dirname func &rest args)
2478 "Walk recursively through DIRNAME.
2479 Invoke FUNC f ARGS on each VC-managed file f underneath it."
2480 (vc-file-tree-walk-internal (expand-file-name dirname) func args)
2481 (message "Traversing directory %s...done" dirname))
2483 (defun vc-file-tree-walk-internal (file func args)
2484 (if (not (file-directory-p file))
2485 (when (vc-backend file) (apply func file args))
2486 (message "Traversing directory %s..." (abbreviate-file-name file))
2487 (let ((dir (file-name-as-directory file)))
2488 (mapcar
2489 (lambda (f) (or
2490 (string-equal f ".")
2491 (string-equal f "..")
2492 (member f vc-directory-exclusion-list)
2493 (let ((dirf (expand-file-name f dir)))
2495 (file-symlink-p dirf) ;; Avoid possible loops.
2496 (vc-file-tree-walk-internal dirf func args)))))
2497 (directory-files dir)))))
2499 (provide 'vc)
2501 ;; arch-tag: ca82c1de-3091-4e26-af92-460abc6213a6
2502 ;;; vc.el ends here