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