1 ;;; vc-cvs.el --- non-resident support for CVS version-control -*- lexical-binding: t -*-
3 ;; Copyright (C) 1995, 1998-2014 Free Software Foundation, Inc.
5 ;; Author: FSF (see vc.el for full credits)
6 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28 (eval-when-compile (require 'vc
))
30 ;; Clear up the cache to force vc-call to check again and discover
31 ;; new functions when we reload this file.
32 (put 'CVS
'vc-functions nil
)
34 ;;; Properties of the backend.
36 (defun vc-cvs-revision-granularity () 'file
)
38 (defun vc-cvs-checkout-model (files)
39 "CVS-specific version of `vc-checkout-model'."
40 (if (getenv "CVSREAD")
42 (let* ((file (if (consp files
) (car files
) files
))
43 (attrib (file-attributes file
)))
44 (or (vc-file-getprop file
'vc-checkout-model
)
46 file
'vc-checkout-model
47 (if (and attrib
;; don't check further if FILE doesn't exist
48 ;; If the file is not writable (despite CVSREAD being
49 ;; undefined), this is probably because the file is being
50 ;; "watched" by other developers.
51 ;; (If vc-mistrust-permissions was t, we actually shouldn't
52 ;; trust this, but there is no other way to learn this from
53 ;; CVS at the moment (version 1.9).)
54 (string-match "r-..-..-." (nth 8 attrib
)))
59 ;;; Customization options
67 (defcustom vc-cvs-global-switches nil
68 "Global switches to pass to any CVS command."
69 :type
'(choice (const :tag
"None" nil
)
70 (string :tag
"Argument String")
71 (repeat :tag
"Argument List"
77 (defcustom vc-cvs-register-switches nil
78 "Switches for registering a file into CVS.
79 A string or list of strings passed to the checkin program by
80 \\[vc-register]. If nil, use the value of `vc-register-switches'.
81 If t, use no switches."
82 :type
'(choice (const :tag
"Unspecified" nil
)
84 (string :tag
"Argument String")
85 (repeat :tag
"Argument List" :value
("") string
))
89 (defcustom vc-cvs-diff-switches nil
90 "String or list of strings specifying switches for CVS diff under VC.
91 If nil, use the value of `vc-diff-switches'. If t, use no switches."
92 :type
'(choice (const :tag
"Unspecified" nil
)
94 (string :tag
"Argument String")
95 (repeat :tag
"Argument List" :value
("") string
))
99 (defcustom vc-cvs-header
'("\$Id\$")
100 "Header keywords to be inserted by `vc-insert-headers'."
101 :version
"24.1" ; no longer consult the obsolete vc-header-alist
102 :type
'(repeat string
)
105 (defcustom vc-cvs-use-edit t
106 "Non-nil means to use `cvs edit' to \"check out\" a file.
107 This is only meaningful if you don't use the implicit checkout model
108 \(i.e. if you have $CVSREAD set)."
113 (defcustom vc-cvs-stay-local
'only-file
114 "Non-nil means use local operations when possible for remote repositories.
115 This avoids slow queries over the network and instead uses heuristics
116 and past information to determine the current status of a file.
118 If value is the symbol `only-file', `vc-dir' will connect to the
119 server, but heuristics will be used to determine the status for
120 all other VC operations.
122 The value can also be a regular expression or list of regular
123 expressions to match against the host name of a repository; then VC
124 only stays local for hosts that match it. Alternatively, the value
125 can be a list of regular expressions where the first element is the
126 symbol `except'; then VC always stays local except for hosts matched
127 by these regular expressions."
128 :type
'(choice (const :tag
"Always stay local" t
)
129 (const :tag
"Only for file operations" only-file
)
130 (const :tag
"Don't stay local" nil
)
131 (list :format
"\nExamine hostname and %v"
132 :tag
"Examine hostname ..."
133 (set :format
"%v" :inline t
134 (const :format
"%t" :tag
"don't" except
))
135 (regexp :format
" stay local,\n%t: %v"
136 :tag
"if it matches")
137 (repeat :format
"%v%i\n" :inline t
(regexp :tag
"or"))))
141 (defcustom vc-cvs-sticky-date-format-string
"%c"
142 "Format string for mode-line display of sticky date.
143 Format is according to `format-time-string'. Only used if
144 `vc-cvs-sticky-tag-display' is t."
149 (defcustom vc-cvs-sticky-tag-display t
150 "Specify the mode-line display of sticky tags.
151 Value t means default display, nil means no display at all. If the
152 value is a function or macro, it is called with the sticky tag and
153 its' type as parameters, in that order. TYPE can have three different
154 values: `symbolic-name' (TAG is a string), `revision-number' (TAG is a
155 string) and `date' (TAG is a date as returned by `encode-time'). The
156 return value of the function or macro will be displayed as a string.
158 Here's an example that will display the formatted date for sticky
159 dates and the word \"Sticky\" for sticky tag names and revisions.
162 (cond ((eq type 'date) (format-time-string
163 vc-cvs-sticky-date-format-string tag))
164 ((eq type 'revision-number) \"Sticky\")
165 ((eq type 'symbolic-name) \"Sticky\")))
167 Here's an example that will abbreviate to the first character only,
168 any text before the first occurrence of `-' for sticky symbolic tags.
169 If the sticky tag is a revision number, the word \"Sticky\" is
170 displayed. Date and time is displayed for sticky dates.
173 (cond ((eq type 'date) (format-time-string \"%Y%m%d %H:%M\" tag))
174 ((eq type 'revision-number) \"Sticky\")
175 ((eq type 'symbolic-name)
178 (string-match \"\\\\([^-]*\\\\)\\\\(.*\\\\)\" tag)
179 (concat (substring (match-string 1 tag) 0 1) \":\"
180 (substring (match-string 2 tag) 1 nil)))
181 (error tag))))) ; Fall-back to given tag name.
183 See also variable `vc-cvs-sticky-date-format-string'."
184 :type
'(choice boolean function
)
189 ;;; Internal variables
194 ;;; State-querying functions
197 ;;;###autoload(defun vc-cvs-registered (f)
198 ;;;###autoload "Return non-nil if file F is registered with CVS."
199 ;;;###autoload (when (file-readable-p (expand-file-name
200 ;;;###autoload "CVS/Entries" (file-name-directory f)))
201 ;;;###autoload (load "vc-cvs" nil t)
202 ;;;###autoload (vc-cvs-registered f)))
204 (defun vc-cvs-registered (file)
205 "Check if FILE is CVS registered."
206 (let ((dirname (or (file-name-directory file
) ""))
207 (basename (file-name-nondirectory file
))
208 ;; make sure that the file name is searched case-sensitively
209 (case-fold-search nil
))
210 (if (file-readable-p (expand-file-name "CVS/Entries" dirname
))
211 (or (string= basename
"")
213 (vc-cvs-get-entries dirname
)
214 (goto-char (point-min))
215 (cond ((re-search-forward
216 (concat "^/" (regexp-quote basename
) "/[^/]") nil t
)
218 (vc-cvs-parse-entry file
)
223 (defun vc-cvs-state (file)
224 "CVS-specific version of `vc-state'."
225 (if (vc-stay-local-p file
'CVS
)
226 (let ((state (vc-file-getprop file
'vc-state
)))
227 ;; If we should stay local, use the heuristic but only if
228 ;; we don't have a more precise state already available.
229 (if (memq state
'(up-to-date edited nil
))
230 (vc-cvs-state-heuristic file
)
233 (cd (file-name-directory file
))
234 (let (process-file-side-effects)
235 (vc-cvs-command t
0 file
"status"))
236 (vc-cvs-parse-status t
))))
238 (defun vc-cvs-state-heuristic (file)
239 "CVS-specific state heuristic."
240 ;; If the file has not changed since checkout, consider it `up-to-date'.
241 ;; Otherwise consider it `edited'.
242 (let ((checkout-time (vc-file-getprop file
'vc-checkout-time
))
243 (lastmod (nth 5 (file-attributes file
))))
245 ((equal checkout-time lastmod
) 'up-to-date
)
246 ((string= (vc-working-revision file
) "0") 'added
)
247 ((null checkout-time
) 'unregistered
)
250 (defun vc-cvs-working-revision (file)
251 "CVS-specific version of `vc-working-revision'."
252 ;; There is no need to consult RCS headers under CVS, because we
253 ;; get the workfile version for free when we recognize that a file
254 ;; is registered in CVS.
255 (vc-cvs-registered file
)
256 (vc-file-getprop file
'vc-working-revision
))
258 (defun vc-cvs-mode-line-string (file)
259 "Return a string for `vc-mode-line' to put in the mode line for FILE.
260 Compared to the default implementation, this function does two things:
261 Handle the special case of a CVS file that is added but not yet
262 committed and support display of sticky tags."
263 (let* ((sticky-tag (vc-file-getprop file
'vc-cvs-sticky-tag
))
266 (let ((def-ml (vc-default-mode-line-string 'CVS file
)))
268 (get-text-property 0 'help-echo def-ml
))
271 (if (zerop (length sticky-tag
))
273 (setq help-echo
(format "%s on the '%s' branch"
274 help-echo sticky-tag
))
275 (concat string
"[" sticky-tag
"]"))
276 'help-echo help-echo
)))
280 ;;; State-changing functions
283 (autoload 'vc-switches
"vc")
285 (defun vc-cvs-register (files &optional _rev comment
)
286 "Register FILES into the CVS version-control system.
287 COMMENT can be used to provide an initial description of FILES.
288 Passes either `vc-cvs-register-switches' or `vc-register-switches'
290 ;; Register the directories if needed.
293 (and (not (vc-cvs-responsible-p file
))
294 (vc-cvs-could-register file
)
295 (push (directory-file-name (file-name-directory file
)) dirs
)))
296 (if dirs
(vc-cvs-register dirs
)))
297 (apply 'vc-cvs-command nil
0 files
299 (and comment
(string-match "[^\t\n ]" comment
)
300 (concat "-m" comment
))
301 (vc-switches 'CVS
'register
)))
303 (defun vc-cvs-responsible-p (file)
304 "Return non-nil if CVS thinks it is responsible for FILE."
305 (file-directory-p (expand-file-name "CVS"
306 (if (file-directory-p file
)
308 (file-name-directory file
)))))
310 (defun vc-cvs-could-register (file)
311 "Return non-nil if FILE could be registered in CVS.
312 This is only possible if CVS is managing FILE's directory or one of
315 (while (and (stringp dir
)
316 (not (equal dir
(setq dir
(file-name-directory dir
))))
318 (setq dir
(if (file-exists-p
319 (expand-file-name "CVS/Entries" dir
))
321 (directory-file-name dir
))))
324 ;; vc-cvs-checkin used to take a 'rev' second argument that allowed
325 ;; checking in onto a specified branch tip rather than the current
326 ;; default branch, but nothing in the entire rest of VC exercised
327 ;; this code. Removing it simplifies the backend interface for all
330 ;; Here's the setup code preserved in amber, in case the logic needs
331 ;; to be broken out into a method someday; (if rev (concat "-r" rev))
332 ;; used to be part of the switches passed to vc-cvs-command.
334 ;; (unless (or (not rev) (vc-cvs-valid-revision-number-p rev))
335 ;; (if (not (vc-cvs-valid-symbolic-tag-name-p rev))
336 ;; (error "%s is not a valid symbolic tag name" rev)
337 ;; ;; If the input revision is a valid symbolic tag name, we create it
338 ;; ;; as a branch, commit and switch to it.
339 ;; (apply 'vc-cvs-command nil 0 files "tag" "-b" (list rev))
340 ;; (apply 'vc-cvs-command nil 0 files "update" "-r" (list rev))
341 ;; (mapc (lambda (file) (vc-file-setprop file 'vc-cvs-sticky-tag rev))
344 ;; The following postamble cleaned up after the branch change:
346 ;; ;; if this was an explicit check-in (does not include creation of
347 ;; ;; a branch), remove the sticky tag.
348 ;; (if (and rev (not (vc-cvs-valid-symbolic-tag-name-p rev)))
349 ;; (vc-cvs-command nil 0 files "update" "-A"))))
352 (defun vc-cvs-checkin (files comment
)
353 "CVS-specific version of `vc-backend-checkin'."
354 (let ((status (apply 'vc-cvs-command nil
1 files
355 "ci" (concat "-m" comment
)
356 (vc-switches 'CVS
'checkin
))))
358 (goto-char (point-min))
359 (when (not (zerop status
))
360 ;; Check checkin problem.
362 ((re-search-forward "Up-to-date check failed" nil t
)
363 (mapc (lambda (file) (vc-file-setprop file
'vc-state
'needs-merge
))
365 (error "%s" (substitute-command-keys
366 (concat "Up-to-date check failed: "
367 "type \\[vc-next-action] to merge in changes"))))
369 (pop-to-buffer (current-buffer))
370 (goto-char (point-min))
371 (shrink-window-if-larger-than-buffer)
372 (error "Check-in failed"))))
373 ;; Single-file commit? Then update the revision by parsing the buffer.
374 ;; Otherwise we can't necessarily tell what goes with what; clear
375 ;; its properties so they have to be refetched.
376 (if (= (length files
) 1)
378 (car files
) 'vc-working-revision
379 (vc-parse-buffer "^\\(new\\|initial\\) revision: \\([0-9.]+\\)" 2))
380 (mapc 'vc-file-clearprops files
))
381 ;; Anyway, forget the checkout model of the file, because we might have
382 ;; guessed wrong when we found the file. After commit, we can
383 ;; tell it from the permissions of the file (see
384 ;; vc-cvs-checkout-model).
385 (mapc (lambda (file) (vc-file-setprop file
'vc-checkout-model nil
))
388 (defun vc-cvs-find-revision (file rev buffer
)
389 (apply 'vc-cvs-command
391 "-Q" ; suppress diagnostic output
393 (and rev
(not (string= rev
""))
396 (vc-switches 'CVS
'checkout
)))
398 (defun vc-cvs-checkout (file &optional editable rev
)
399 "Checkout a revision of FILE into the working area.
400 EDITABLE non-nil means that the file should be writable.
401 REV is the revision to check out."
402 (message "Checking out %s..." file
)
403 ;; Change buffers to get local value of vc-checkout-switches.
404 (with-current-buffer (or (get-file-buffer file
) (current-buffer))
405 (if (and (file-exists-p file
) (not rev
))
406 ;; If no revision was specified, just make the file writable
407 ;; if necessary (using `cvs-edit' if requested).
408 (and editable
(not (eq (vc-cvs-checkout-model (list file
)) 'implicit
))
410 (vc-cvs-command nil
0 file
"edit")
411 (set-file-modes file
(logior (file-modes file
) 128))
412 (if (equal file buffer-file-name
) (read-only-mode -
1))))
413 ;; Check out a particular revision (or recreate the file).
414 (vc-file-setprop file
'vc-working-revision nil
)
415 (apply 'vc-cvs-command nil
0 file
420 ;; default for verbose checkout: clear the
421 ;; sticky tag so that the actual update will
422 ;; get the head of the trunk
426 (vc-switches 'CVS
'checkout
)))
427 (vc-mode-line file
'CVS
))
428 (message "Checking out %s...done" file
))
430 (defun vc-cvs-delete-file (file)
431 (vc-cvs-command nil
0 file
"remove" "-f"))
433 (autoload 'vc-default-revert
"vc")
435 (defun vc-cvs-revert (file &optional contents-done
)
436 "Revert FILE to the working revision on which it was based."
437 (vc-default-revert 'CVS file contents-done
)
438 (unless (eq (vc-cvs-checkout-model (list file
)) 'implicit
)
440 (vc-cvs-command nil
0 file
"unedit")
441 ;; Make the file read-only by switching off all w-bits
442 (set-file-modes file
(logand (file-modes file
) 3950)))))
444 (defun vc-cvs-merge (file first-revision
&optional second-revision
)
445 "Merge changes into current working copy of FILE.
446 The changes are between FIRST-REVISION and SECOND-REVISION."
447 (vc-cvs-command nil
0 file
449 (concat "-j" first-revision
)
450 (concat "-j" second-revision
))
451 (vc-file-setprop file
'vc-state
'edited
)
452 (with-current-buffer (get-buffer "*vc*")
453 (goto-char (point-min))
454 (if (re-search-forward "conflicts during merge" nil t
)
456 (vc-file-setprop file
'vc-state
'conflict
)
459 (vc-file-setprop file
'vc-state
'edited
)
463 (defun vc-cvs-merge-news (file)
464 "Merge in any new changes made to FILE."
465 (message "Merging changes into %s..." file
)
466 ;; (vc-file-setprop file 'vc-working-revision nil)
467 (vc-file-setprop file
'vc-checkout-time
0)
468 (vc-cvs-command nil nil file
"update")
469 ;; Analyze the merge result reported by CVS, and set
470 ;; file properties accordingly.
471 (with-current-buffer (get-buffer "*vc*")
472 (goto-char (point-min))
473 ;; get new working revision
474 (if (re-search-forward
475 "^Merging differences between [0-9.]* and \\([0-9.]*\\) into" nil t
)
476 (vc-file-setprop file
'vc-working-revision
(match-string 1))
477 (vc-file-setprop file
'vc-working-revision nil
))
480 (if (eq (buffer-size) 0)
481 0 ;; there were no news; indicate success
482 (if (re-search-forward
483 (concat "^\\([CMUP] \\)?"
485 (substring file
(1+ (length (expand-file-name
486 "." default-directory
)))))
487 "\\( already contains the differences between \\)?")
490 ;; Merge successful, we are in sync with repository now
491 ((or (match-string 2)
492 (string= (match-string 1) "U ")
493 (string= (match-string 1) "P "))
494 (vc-file-setprop file
'vc-state
'up-to-date
)
495 (vc-file-setprop file
'vc-checkout-time
496 (nth 5 (file-attributes file
)))
497 0);; indicate success to the caller
498 ;; Merge successful, but our own changes are still in the file
499 ((string= (match-string 1) "M ")
500 (vc-file-setprop file
'vc-state
'edited
)
501 0);; indicate success to the caller
502 ;; Conflicts detected!
504 (vc-file-setprop file
'vc-state
'conflict
)
505 1);; signal the error to the caller
507 (pop-to-buffer "*vc*")
508 (error "Couldn't analyze cvs update result")))
509 (message "Merging changes into %s...done" file
))))
511 (defun vc-cvs-modify-change-comment (files rev comment
)
512 "Modify the change comments for FILES on a specified REV.
513 Will fail unless you have administrative privileges on the repo."
514 (vc-cvs-command nil
0 files
"admin" (concat "-m" rev
":" comment
)))
517 ;;; History functions
520 (declare-function vc-rcs-print-log-cleanup
"vc-rcs" ())
521 ;; Follows vc-cvs-command, which uses vc-do-command from vc-dispatcher.
522 (declare-function vc-exec-after
"vc-dispatcher" (code))
524 (defun vc-cvs-print-log (files buffer
&optional _shortlog _start-revision limit
)
525 "Print commit log associated with FILES into specified BUFFER.
526 Remaining arguments are ignored."
528 ;; It's just the catenation of the individual logs.
531 (if (vc-stay-local-p files
'CVS
) 'async
0)
533 (with-current-buffer buffer
534 (vc-run-delayed (vc-rcs-print-log-cleanup)))
535 (when limit
'limit-unsupported
))
537 (defun vc-cvs-comment-history (file)
538 "Get comment history of a file."
539 (vc-call-backend 'RCS
'comment-history file
))
541 (autoload 'vc-version-backup-file
"vc")
542 (declare-function vc-coding-system-for-diff
"vc" (file))
544 (defun vc-cvs-diff (files &optional oldvers newvers buffer
)
545 "Get a difference report using CVS between two revisions of FILE."
546 (let* (process-file-side-effects
547 (async (and (not vc-disable-async-diff
)
548 (vc-stay-local-p files
'CVS
)))
549 (invoke-cvs-diff-list nil
)
551 ;; Look through the file list and see if any files have backups
552 ;; that can be used to do a plain "diff" instead of "cvs diff".
556 (when (or (not ov
) (string-equal ov
""))
557 (setq ov
(vc-working-revision file
)))
558 (when (string-equal nv
"")
560 (let ((file-oldvers (vc-version-backup-file file ov
))
561 (file-newvers (if (not nv
)
563 (vc-version-backup-file file nv
)))
564 (coding-system-for-read (vc-coding-system-for-diff file
)))
565 (if (and file-oldvers file-newvers
)
567 ;; This used to append diff-switches and vc-diff-switches,
568 ;; which was consistent with the vc-diff-switches doc at that
569 ;; time, but not with the actual behavior of any other VC diff.
570 (apply 'vc-do-command
(or buffer
"*vc-diff*") 1 "diff" nil
571 ;; Not a CVS diff, does not use vc-cvs-diff-switches.
572 (append (vc-switches nil
'diff
)
573 (list (file-relative-name file-oldvers
)
574 (file-relative-name file-newvers
))))
576 (push file invoke-cvs-diff-list
)))))
577 (when invoke-cvs-diff-list
578 (setq status
(apply 'vc-cvs-command
(or buffer
"*vc-diff*")
580 invoke-cvs-diff-list
"diff"
581 (and oldvers
(concat "-r" oldvers
))
582 (and newvers
(concat "-r" newvers
))
583 (vc-switches 'CVS
'diff
))))
584 (if async
1 status
))) ; async diff, pessimistic assumption
586 (defconst vc-cvs-annotate-first-line-re
"^[0-9]")
588 (defun vc-cvs-annotate-process-filter (filter process string
)
589 (setq string
(concat (process-get process
'output
) string
))
590 (if (not (string-match vc-cvs-annotate-first-line-re string
))
591 ;; Still waiting for the first real line.
592 (process-put process
'output string
)
593 (remove-function (process-filter process
) #'vc-cvs-annotate-process-filter
)
594 (funcall filter process
(substring string
(match-beginning 0)))))
596 (defun vc-cvs-annotate-command (file buffer
&optional revision
)
597 "Execute \"cvs annotate\" on FILE, inserting the contents in BUFFER.
598 Optional arg REVISION is a revision to annotate from."
599 (vc-cvs-command buffer
600 (if (vc-stay-local-p file
'CVS
)
603 (if revision
(concat "-r" revision
)))
604 ;; Strip the leading few lines.
605 (let ((proc (get-buffer-process buffer
)))
607 ;; If running asynchronously, use a process filter.
608 (add-function :around
(process-filter proc
)
609 #'vc-cvs-annotate-process-filter
)
610 (with-current-buffer buffer
611 (goto-char (point-min))
612 (re-search-forward vc-cvs-annotate-first-line-re
)
613 (delete-region (point-min) (1- (point)))))))
615 (declare-function vc-annotate-convert-time
"vc-annotate" (time))
617 (defun vc-cvs-annotate-current-time ()
618 "Return the current time, based at midnight of the current day, and
619 encoded as fractional days."
620 (vc-annotate-convert-time
621 (apply 'encode-time
0 0 0 (nthcdr 3 (decode-time)))))
623 (defun vc-cvs-annotate-time ()
624 "Return the time of the next annotation (as fraction of days)
625 systime, or nil if there is none."
627 (cache (get-text-property bol
'vc-cvs-annotate-time
))
628 (inhibit-read-only t
)
629 (inhibit-modification-hooks t
))
633 "^\\S-+\\s-+\\S-+\\s-+\\([0-9]+\\)-\\(\\sw+\\)-\\([0-9]+\\)): ")
634 (let ((day (string-to-number (match-string 1)))
635 (month (cdr (assq (intern (match-string 2))
636 '((Jan .
1) (Feb .
2) (Mar .
3)
637 (Apr .
4) (May .
5) (Jun .
6)
638 (Jul .
7) (Aug .
8) (Sep .
9)
639 (Oct .
10) (Nov .
11) (Dec .
12)))))
640 (year (let ((tmp (string-to-number (match-string 3))))
641 ;; Years 0..68 are 2000..2068.
642 ;; Years 69..99 are 1969..1999.
643 (+ (cond ((> 69 tmp
) 2000)
648 bol
(1+ bol
) 'vc-cvs-annotate-time
650 ;; Position at end makes for nicer overlay result.
651 ;; Don't put actual buffer pos here, but only relative
652 ;; distance, so we don't ever move backward in the
653 ;; goto-char below, even if the text is moved.
654 (- (match-end 0) (match-beginning 0))
655 (vc-annotate-convert-time
656 (encode-time 0 0 0 day month year
))))))))
658 (goto-char (+ bol
(car cache
))) ; Fontify from here to eol.
659 (cdr cache
)))) ; days (float)
661 (defun vc-cvs-annotate-extract-revision-at-line ()
664 (if (re-search-forward "^\\([0-9]+\\.[0-9]+\\(\\.[0-9]+\\)*\\) +("
665 (line-end-position) t
)
666 (match-string-no-properties 1)
669 (defun vc-cvs-previous-revision (file rev
)
670 (vc-call-backend 'RCS
'previous-revision file rev
))
672 (defun vc-cvs-next-revision (file rev
)
673 (vc-call-backend 'RCS
'next-revision file rev
))
675 ;; FIXME: This should probably be replaced by code using cvs2cl.
676 (defun vc-cvs-update-changelog (files)
677 (vc-call-backend 'RCS
'update-changelog files
))
683 (defun vc-cvs-create-tag (dir name branchp
)
684 "Assign to DIR's current revision a given NAME.
685 If BRANCHP is non-nil, the name is created as a branch (and the current
686 workspace is immediately moved to that new branch)."
687 (vc-cvs-command nil
0 dir
"tag" "-c" (if branchp
"-b") name
)
688 (when branchp
(vc-cvs-command nil
0 dir
"update" "-r" name
)))
690 ;; Follows vc-cvs-command, which uses vc-do-command from vc-dispatcher.
691 (declare-function vc-resynch-buffer
"vc-dispatcher"
692 (file &optional keep noquery reset-vc-info
))
694 (defun vc-cvs-retrieve-tag (dir name update
)
695 "Retrieve a tag at and below DIR.
696 NAME is the name of the tag; if it is empty, do a `cvs update'.
697 If UPDATE is non-nil, then update (resynch) any affected buffers."
698 (with-current-buffer (get-buffer-create "*vc*")
699 (let ((default-directory dir
)
702 (if (or (not name
) (string= name
""))
703 (vc-cvs-command t
0 nil
"update")
704 (vc-cvs-command t
0 nil
"update" "-r" name
)
705 (setq sticky-tag name
))
707 (goto-char (point-min))
709 (if (looking-at "\\([CMUP]\\) \\(.*\\)")
710 (let* ((file (expand-file-name (match-string 2) dir
))
711 (state (match-string 1))
712 (buffer (find-buffer-visiting file
)))
715 ((or (string= state
"U")
717 (vc-file-setprop file
'vc-state
'up-to-date
)
718 (vc-file-setprop file
'vc-working-revision nil
)
719 (vc-file-setprop file
'vc-checkout-time
720 (nth 5 (file-attributes file
))))
721 ((or (string= state
"M")
723 (vc-file-setprop file
'vc-state
'edited
)
724 (vc-file-setprop file
'vc-working-revision nil
)
725 (vc-file-setprop file
'vc-checkout-time
0)))
726 (vc-file-setprop file
'vc-cvs-sticky-tag sticky-tag
)
727 (vc-resynch-buffer file t t
))))
728 (forward-line 1))))))
735 (defun vc-cvs-make-version-backups-p (file)
736 "Return non-nil if version backups should be made for FILE."
737 (vc-stay-local-p file
'CVS
))
739 (defun vc-cvs-check-headers ()
740 "Check if the current file has any headers in it."
742 (goto-char (point-min))
743 (re-search-forward "\\$[A-Za-z\300-\326\330-\366\370-\377]+\
744 \\(: [\t -#%-\176\240-\377]*\\)?\\$" nil t
)))
748 ;;; Internal functions
751 (defun vc-cvs-command (buffer okstatus files
&rest flags
)
752 "A wrapper around `vc-do-command' for use in vc-cvs.el.
753 The difference to vc-do-command is that this function always invokes `cvs',
754 and that it passes `vc-cvs-global-switches' to it before FLAGS."
755 (apply 'vc-do-command
(or buffer
"*vc*") okstatus
"cvs" files
756 (if (stringp vc-cvs-global-switches
)
757 (cons vc-cvs-global-switches flags
)
758 (append vc-cvs-global-switches
761 (defun vc-cvs-stay-local-p (file) ;Back-compatibility.
762 (vc-stay-local-p file
'CVS
))
764 (defun vc-cvs-repository-hostname (dirname)
765 "Hostname of the CVS server associated to workarea DIRNAME."
766 (let ((rootname (expand-file-name "CVS/Root" dirname
)))
767 (when (file-readable-p rootname
)
769 (let ((coding-system-for-read
770 (or file-name-coding-system
771 default-file-name-coding-system
)))
772 (vc-insert-file rootname
))
773 (goto-char (point-min))
774 (nth 2 (vc-cvs-parse-root
775 (buffer-substring (point)
776 (line-end-position))))))))
778 (defun vc-cvs-parse-uhp (path)
779 "parse user@host/path into (user@host /path)"
780 (if (string-match "\\([^/]+\\)\\(/.*\\)" path
)
781 (list (match-string 1 path
) (match-string 2 path
))
784 (defun vc-cvs-parse-root (root)
785 "Split CVS ROOT specification string into a list of fields.
786 A CVS root specification of the form
787 [:METHOD:][[USER@]HOSTNAME]:?/path/to/repository
788 is converted to a normalized record with the following structure:
789 \(METHOD USER HOSTNAME CVS-ROOT).
790 The default METHOD for a CVS root of the form
793 The default METHOD for a CVS root of the form
794 [USER@]HOSTNAME:/path/to/repository
796 For an empty string, nil is returned (invalid CVS root)."
797 ;; Split CVS root into colon separated fields (0-4).
798 ;; The `x:' makes sure, that leading colons are not lost;
799 ;; `HOST:/PATH' is then different from `:METHOD:/PATH'.
800 (let* ((root-list (cdr (split-string (concat "x:" root
) ":")))
801 (len (length root-list
))
802 ;; All syntactic varieties will get a proper METHOD.
809 (let ((uhp (vc-cvs-parse-uhp (car root-list
))))
810 (cons (if (car uhp
) "ext" "local") uhp
)))
812 ;; [USER@]HOST:PATH => method `ext'
813 (and (not (equal (car root-list
) ""))
814 (cons "ext" root-list
)))
816 ;; :METHOD:PATH or :METHOD:USER@HOSTNAME/PATH
817 (cons (cadr root-list
)
818 (vc-cvs-parse-uhp (nth 2 root-list
))))
820 ;; :METHOD:[USER@]HOST:PATH
823 (let ((method (car root-list
))
824 (uhost (or (cadr root-list
) ""))
825 (root (nth 2 root-list
))
828 (if (string-match "\\(.*\\)@\\(.*\\)" uhost
)
829 (setq user
(match-string 1 uhost
)
830 host
(match-string 2 uhost
))
835 ;; Fix windows style CVS root `:local:C:\\project\\cvs\\some\\dir'
837 (equal method
"local")
838 (setq root
(concat host
":" root
) host
))
839 ;; Normalize CVS root record
840 (list method user host root
)))))
842 ;; XXX: This does not work correctly for subdirectories. "cvs status"
843 ;; information is context sensitive, it contains lines like:
844 ;; cvs status: Examining DIRNAME
845 ;; and the file entries after that don't show the full path.
846 ;; Because of this VC directory listings only show changed files
847 ;; at the top level for CVS.
848 (defun vc-cvs-parse-status (&optional full
)
849 "Parse output of \"cvs status\" command in the current buffer.
850 Set file properties accordingly. Unless FULL is t, parse only
851 essential information. Note that this can never set the 'ignored
853 (let (file status missing
)
854 (goto-char (point-min))
855 (while (looking-at "? \\(.*\\)")
856 (setq file
(expand-file-name (match-string 1)))
857 (vc-file-setprop file
'vc-state
'unregistered
)
859 (when (re-search-forward "^File: " nil t
)
860 (when (setq missing
(looking-at "no file "))
861 (goto-char (match-end 0)))
863 ((re-search-forward "\\=\\([^ \t]+\\)" nil t
)
864 (setq file
(expand-file-name (match-string 1)))
865 (setq status
(if (re-search-forward "\\=[ \t]+Status: \\(.*\\)" nil t
)
866 (match-string 1) "Unknown"))
869 "\\(RCS Version\\|RCS Revision\\|Repository revision\\):\
870 \[\t ]+\\([0-9.]+\\)"
872 (vc-file-setprop file
'vc-latest-revision
(match-string 2)))
876 ((string-match "Up-to-date" status
)
877 (vc-file-setprop file
'vc-checkout-time
878 (nth 5 (file-attributes file
)))
880 ((string-match "Locally Modified" status
) 'edited
)
881 ((string-match "Needs Merge" status
) 'needs-merge
)
882 ((string-match "Needs \\(Checkout\\|Patch\\)" status
)
883 (if missing
'missing
'needs-update
))
884 ((string-match "Locally Added" status
) 'added
)
885 ((string-match "Locally Removed" status
) 'removed
)
886 ((string-match "File had conflicts " status
) 'conflict
)
887 ((string-match "Unknown" status
) 'unregistered
)
890 (defun vc-cvs-after-dir-status (update-function)
891 ;; Heavily inspired by vc-cvs-parse-status. AKA a quick hack.
892 ;; This needs a lot of testing.
899 (subdir default-directory
))
900 (goto-char (point-min))
902 ;; Look for either a file entry, an unregistered file, or a
905 "\\(^=+\n\\([^=c?\n].*\n\\|\n\\)+\\)\\|\\(\\(^?? .*\n\\)+\\)\\|\\(^cvs status: \\(Examining\\|nothing\\) .*\n\\)"
907 ;; FIXME: get rid of narrowing here.
908 (narrow-to-region (match-beginning 0) (match-end 0))
909 (goto-char (point-min))
911 (when (looking-at "cvs status: Examining \\(.+\\)")
912 (setq subdir
(expand-file-name (match-string 1))))
913 ;; Unregistered files
914 (while (looking-at "? \\(.*\\)")
915 (setq file
(file-relative-name
916 (expand-file-name (match-string 1) subdir
)))
917 (push (list file
'unregistered
) result
)
919 (when (looking-at "cvs status: nothing known about")
920 ;; We asked about a non existent file. The output looks like this:
922 ;; cvs status: nothing known about `lisp/v.diff'
923 ;; ===================================================================
924 ;; File: no file v.diff Status: Unknown
926 ;; Working revision: No entry for v.diff
927 ;; Repository revision: No revision control file
930 ;; Due to narrowing in this iteration we only see the "cvs
931 ;; status:" line, so just set a flag so that we can ignore the
932 ;; file in the next iteration.
933 (setq ignore-next t
))
935 (when (re-search-forward "^File: \\(no file \\)?\\(.*[^ \t]\\)[ \t]+Status: \\(.*\\)" nil t
)
936 (setq missing
(match-string 1))
937 (setq file
(file-relative-name
938 (expand-file-name (match-string 2) subdir
)))
939 (setq status-str
(match-string 3))
942 ((string-match "Up-to-date" status-str
) 'up-to-date
)
943 ((string-match "Locally Modified" status-str
) 'edited
)
944 ((string-match "Needs Merge" status-str
) 'needs-merge
)
945 ((string-match "Needs \\(Checkout\\|Patch\\)" status-str
)
946 (if missing
'missing
'needs-update
))
947 ((string-match "Locally Added" status-str
) 'added
)
948 ((string-match "Locally Removed" status-str
) 'removed
)
949 ((string-match "File had conflicts " status-str
) 'conflict
)
950 ((string-match "Unknown" status-str
) 'unregistered
)
953 (setq ignore-next nil
)
954 (unless (eq status
'up-to-date
)
955 (push (list file status
) result
))))
956 (goto-char (point-max))
958 (funcall update-function result
))
959 ;; Alternative implementation: use the "update" command instead of
960 ;; the "status" command.
961 ;; (let ((result nil)
962 ;; (translation '((?? . unregistered)
966 ;; (?P . needs-merge)
968 ;; (?U . needs-update))))
969 ;; (goto-char (point-min))
970 ;; (while (not (eobp))
971 ;; (if (looking-at "^[ACMPRU?] \\(.*\\)$")
972 ;; (push (list (match-string 1)
973 ;; (cdr (assoc (char-after) translation)))
976 ;; ((looking-at "cvs update: warning: \\(.*\\) was lost")
978 ;; ;; cvs update: warning: FILENAME was lost
980 ;; (push (list (match-string 1) 'missing) result)
981 ;; ;; Skip the "U" line
983 ;; ((looking-at "cvs update: New directory `\\(.*\\)' -- ignored")
984 ;; (push (list (match-string 1) 'unregistered) result))))
986 ;; (funcall update-function result)))
989 ;; Based on vc-cvs-dir-state-heuristic from Emacs 22.
990 ;; FIXME does not mention unregistered files.
991 (defun vc-cvs-dir-status-heuristic (dir update-function
&optional basedir
)
992 "Find the CVS state of all files in DIR, using only local information."
993 (let (file basename status result dirlist
)
995 (vc-cvs-get-entries dir
)
996 (goto-char (point-min))
998 (if (looking-at "D/\\([^/]*\\)////")
999 (push (expand-file-name (match-string 1) dir
) dirlist
)
1000 ;; CVS-removed files are not taken under VC control.
1001 (when (looking-at "/\\([^/]*\\)/[^/-]")
1002 (setq basename
(match-string 1)
1003 file
(expand-file-name basename dir
)
1004 status
(or (vc-file-getprop file
'vc-state
)
1005 (vc-cvs-parse-entry file t
)))
1006 (unless (eq status
'up-to-date
)
1007 (push (list (if basedir
1008 (file-relative-name file basedir
)
1012 (dolist (subdir dirlist
)
1013 (setq result
(append result
1014 (vc-cvs-dir-status-heuristic subdir nil
1015 (or basedir dir
)))))
1017 (funcall update-function result
))))
1019 (defun vc-cvs-dir-status (dir update-function
)
1020 "Create a list of conses (file . state) for DIR."
1021 ;; FIXME check all files in DIR instead?
1022 (let ((local (vc-stay-local-p dir
'CVS
)))
1023 (if (and local
(not (eq local
'only-file
)))
1024 (vc-cvs-dir-status-heuristic dir update-function
)
1025 (vc-cvs-command (current-buffer) 'async dir
"-f" "status")
1026 ;; Alternative implementation: use the "update" command instead of
1027 ;; the "status" command.
1028 ;; (vc-cvs-command (current-buffer) 'async
1029 ;; (file-relative-name dir)
1030 ;; "-f" "-n" "update" "-d" "-P")
1032 (vc-cvs-after-dir-status update-function
)))))
1034 (defun vc-cvs-dir-status-files (dir files _default-state update-function
)
1035 "Create a list of conses (file . state) for DIR."
1036 (apply 'vc-cvs-command
(current-buffer) 'async dir
"-f" "status" files
)
1038 (vc-cvs-after-dir-status update-function
)))
1040 (defun vc-cvs-file-to-string (file)
1041 "Read the content of FILE and return it as a string."
1044 (insert-file-contents file
)
1045 (goto-char (point-min))
1046 (buffer-substring (point) (point-max)))
1049 (defun vc-cvs-dir-extra-headers (_dir)
1050 "Extract and represent per-directory properties of a CVS working copy."
1054 (insert-file-contents "CVS/Root")
1055 (goto-char (point-min))
1056 (and (looking-at ":ext:") (delete-char 5))
1057 (concat (buffer-substring (point) (1- (point-max))) "\n"))
1062 (insert-file-contents "CVS/Repository")
1063 (goto-char (point-min))
1064 (skip-chars-forward "^\n")
1065 (concat (buffer-substring (point-min) (point)) "\n"))
1069 (concat (propertize "Repository : " 'face
'font-lock-type-face
)
1070 (propertize repo
'face
'font-lock-variable-name-face
)))
1073 (concat (propertize "Module : " 'face
'font-lock-type-face
)
1074 (propertize module
'face
'font-lock-variable-name-face
)))
1076 (if (file-readable-p "CVS/Tag")
1077 (let ((tag (vc-cvs-file-to-string "CVS/Tag")))
1079 ((string-match "\\`T" tag
)
1080 (concat (propertize "Tag : " 'face
'font-lock-type-face
)
1081 (propertize (substring tag
1)
1082 'face
'font-lock-variable-name-face
)))
1083 ((string-match "\\`D" tag
)
1084 (concat (propertize "Date : " 'face
'font-lock-type-face
)
1085 (propertize (substring tag
1)
1086 'face
'font-lock-variable-name-face
)))
1089 ;; In CVS, branch is a per-file property, not a per-directory property.
1090 ;; We can't really do this here without making dangerous assumptions.
1091 ;;(propertize "Branch: " 'face 'font-lock-type-face)
1092 ;;(propertize "ADD CODE TO PRINT THE BRANCH NAME\n"
1093 ;; 'face 'font-lock-warning-face)
1096 (defun vc-cvs-get-entries (dir)
1097 "Insert the CVS/Entries file from below DIR into the current buffer.
1098 This function ensures that the correct coding system is used for that,
1099 which may not be the one that is used for the files' contents.
1100 CVS/Entries should only be accessed through this function."
1101 (let ((coding-system-for-read (or file-name-coding-system
1102 default-file-name-coding-system
)))
1103 (vc-insert-file (expand-file-name "CVS/Entries" dir
))))
1105 (defun vc-cvs-valid-symbolic-tag-name-p (tag)
1106 "Return non-nil if TAG is a valid symbolic tag name."
1107 ;; According to the CVS manual, a valid symbolic tag must start with
1108 ;; an uppercase or lowercase letter and can contain uppercase and
1109 ;; lowercase letters, digits, `-', and `_'.
1110 (and (string-match "^[a-zA-Z]" tag
)
1111 (not (string-match "[^a-z0-9A-Z-_]" tag
))))
1113 (defun vc-cvs-valid-revision-number-p (tag)
1114 "Return non-nil if TAG is a valid revision number."
1115 (and (string-match "^[0-9]" tag
)
1116 (not (string-match "[^0-9.]" tag
))))
1118 (defun vc-cvs-parse-sticky-tag (match-type match-tag
)
1119 "Parse and return the sticky tag as a string.
1120 `match-data' is protected."
1121 (let ((data (match-data))
1123 (type (cond ((string= match-type
"D") 'date
)
1124 ((string= match-type
"T")
1125 (if (vc-cvs-valid-symbolic-tag-name-p match-tag
)
1132 ;; Sticky Date tag. Convert to a proper date value (`encode-time')
1135 "\\([0-9]+\\)\\.\\([0-9]+\\)\\.\\([0-9]+\\)\\.\\([0-9]+\\)\\.\\([0-9]+\\)\\.\\([0-9]+\\)"
1137 (let* ((year-tmp (string-to-number (match-string 1 match-tag
)))
1138 (month (string-to-number (match-string 2 match-tag
)))
1139 (day (string-to-number (match-string 3 match-tag
)))
1140 (hour (string-to-number (match-string 4 match-tag
)))
1141 (min (string-to-number (match-string 5 match-tag
)))
1142 (sec (string-to-number (match-string 6 match-tag
)))
1143 ;; Years 0..68 are 2000..2068.
1144 ;; Years 69..99 are 1969..1999.
1145 (year (+ (cond ((> 69 year-tmp
) 2000)
1146 ((> 100 year-tmp
) 1900)
1149 (setq tag
(encode-time sec min hour day month year
))))
1150 ;; Sticky Tag name or revision number
1151 ((eq type
'symbolic-name
) (setq tag match-tag
))
1152 ((eq type
'revision-number
) (setq tag match-tag
))
1153 ;; Default is no sticky tag at all
1155 (cond ((eq vc-cvs-sticky-tag-display nil
) nil
)
1156 ((eq vc-cvs-sticky-tag-display t
)
1157 (cond ((eq type
'date
) (format-time-string
1158 vc-cvs-sticky-date-format-string
1160 ((eq type
'symbolic-name
) tag
)
1161 ((eq type
'revision-number
) tag
)
1163 ((functionp vc-cvs-sticky-tag-display
)
1164 (funcall vc-cvs-sticky-tag-display tag type
))
1167 (set-match-data data
))))
1169 (defun vc-cvs-parse-entry (file &optional set-state
)
1170 "Parse a line from CVS/Entries.
1171 Compare modification time to that of the FILE, set file properties
1172 accordingly. However, `vc-state' is set only if optional arg SET-STATE
1175 ;; entry for a "locally added" file (not yet committed)
1176 ((looking-at "/[^/]+/0/")
1177 (vc-file-setprop file
'vc-checkout-time
0)
1178 (vc-file-setprop file
'vc-working-revision
"0")
1179 (if set-state
(vc-file-setprop file
'vc-state
'added
)))
1185 ;; timestamp and optional conflict field
1190 "\\(.\\|\\)" ;Sticky tag type (date or tag name, could be empty)
1191 "\\(.*\\)")) ;Sticky tag
1192 (vc-file-setprop file
'vc-working-revision
(match-string 1))
1193 (vc-file-setprop file
'vc-cvs-sticky-tag
1194 (vc-cvs-parse-sticky-tag (match-string 4)
1196 ;; Compare checkout time and modification time.
1197 ;; This is intentionally different from the algorithm that CVS uses
1198 ;; (which is based on textual comparison), because there can be problems
1199 ;; generating a time string that looks exactly like the one from CVS.
1200 (let* ((time (match-string 2))
1201 (mtime (nth 5 (file-attributes file
)))
1202 (parsed-time (progn (require 'parse-time
)
1203 (parse-time-string (concat time
" +0000")))))
1204 (cond ((and (not (string-match "\\+" time
))
1206 ;; Compare just the seconds part of the file time,
1207 ;; since CVS file time stamp resolution is just 1 second.
1208 (let ((ptime (apply 'encode-time parsed-time
)))
1209 (and (eq (car mtime
) (car ptime
))
1210 (eq (cadr mtime
) (cadr ptime
)))))
1211 (vc-file-setprop file
'vc-checkout-time mtime
)
1212 (if set-state
(vc-file-setprop file
'vc-state
'up-to-date
)))
1214 (vc-file-setprop file
'vc-checkout-time
0)
1215 (if set-state
(vc-file-setprop file
'vc-state
'edited
))))))))
1217 ;; Completion of revision names.
1218 ;; Just so I don't feel like I'm duplicating code from pcl-cvs, I'll use
1219 ;; `cvs log' so I can list all the revision numbers rather than only
1222 (defun vc-cvs-revision-table (file)
1223 (let (process-file-side-effects
1224 (default-directory (file-name-directory file
))
1227 (vc-cvs-command t nil file
"log")
1228 (goto-char (point-min))
1229 (when (re-search-forward "^symbolic names:\n" nil t
)
1230 (while (looking-at "^ \\(.*\\): \\(.*\\)")
1231 (push (cons (match-string 1) (match-string 2)) res
)
1233 (while (re-search-forward "^revision \\([0-9.]+\\)" nil t
)
1234 (push (match-string 1) res
))
1237 (defun vc-cvs-revision-completion-table (files)
1238 (letrec ((table (lazy-completion-table
1239 table
(lambda () (vc-cvs-revision-table (car files
))))))
1242 (defun vc-cvs-find-admin-dir (file)
1243 "Return the administrative directory of FILE."
1244 (vc-find-root file
"CVS"))
1246 (defun vc-cvs-ignore (file &optional _directory _remove
)
1247 "Ignore FILE under CVS."
1248 (vc-cvs-append-to-ignore (file-name-directory file
) file
))
1250 (defun vc-cvs-append-to-ignore (dir str
&optional old-dir
)
1251 "In DIR, add STR to the .cvsignore file.
1252 If OLD-DIR is non-nil, then this is a directory that we don't want
1253 to hear about anymore."
1254 (with-current-buffer
1255 (find-file-noselect (expand-file-name ".cvsignore" dir
))
1256 (when (ignore-errors
1257 (and buffer-read-only
1258 (eq 'CVS
(vc-backend buffer-file-name
))
1259 (not (vc-editable-p buffer-file-name
))))
1260 ;; CVSREAD=on special case
1261 (vc-checkout buffer-file-name t
))
1262 (goto-char (point-max))
1263 (unless (bolp) (insert "\n"))
1264 (insert str
(if old-dir
"/\n" "\n"))
1265 ;; FIXME this is a pcvs variable.
1266 (if (bound-and-true-p cvs-sort-ignore-file
)
1267 (sort-lines nil
(point-min) (point-max)))
1272 ;;; vc-cvs.el ends here