Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / vc / vc-rcs.el
blob703b46eb1136989d5f130a46e40a6923313dea8f
1 ;;; vc-rcs.el --- support for RCS version-control -*- lexical-binding:t -*-
3 ;; Copyright (C) 1992-2014 Free Software Foundation, Inc.
5 ;; Author: FSF (see vc.el for full credits)
6 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
7 ;; Package: vc
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/>.
24 ;;; Commentary:
26 ;; See vc.el
28 ;; Some features will not work with ancient RCS versions. Where
29 ;; appropriate, VC finds out which version you have, and allows or
30 ;; disallows those features.
32 ;; You can support the RCS -x option by customizing vc-rcs-master-templates.
34 ;;; Code:
36 ;;;
37 ;;; Customization options
38 ;;;
40 (eval-when-compile
41 (require 'cl-lib)
42 (require 'vc))
44 (defgroup vc-rcs nil
45 "VC RCS backend."
46 :version "24.1"
47 :group 'vc)
49 (defcustom vc-rcs-release nil
50 "The release number of your RCS installation, as a string.
51 If nil, VC itself computes this value when it is first needed."
52 :type '(choice (const :tag "Auto" nil)
53 (string :tag "Specified")
54 (const :tag "Unknown" unknown))
55 :group 'vc-rcs)
57 (defcustom vc-rcs-register-switches nil
58 "Switches for registering a file in RCS.
59 A string or list of strings passed to the checkin program by
60 \\[vc-register]. If nil, use the value of `vc-register-switches'.
61 If t, use no switches."
62 :type '(choice (const :tag "Unspecified" nil)
63 (const :tag "None" t)
64 (string :tag "Argument String")
65 (repeat :tag "Argument List" :value ("") string))
66 :version "21.1"
67 :group 'vc-rcs)
69 (defcustom vc-rcs-diff-switches nil
70 "String or list of strings specifying switches for RCS diff under VC.
71 If nil, use the value of `vc-diff-switches'. If t, use no switches."
72 :type '(choice (const :tag "Unspecified" nil)
73 (const :tag "None" t)
74 (string :tag "Argument String")
75 (repeat :tag "Argument List" :value ("") string))
76 :version "21.1"
77 :group 'vc-rcs)
79 (defcustom vc-rcs-header '("\$Id\$")
80 "Header keywords to be inserted by `vc-insert-headers'."
81 :type '(repeat string)
82 :version "24.1" ; no longer consult the obsolete vc-header-alist
83 :group 'vc-rcs)
85 (defcustom vc-rcsdiff-knows-brief nil
86 "Indicates whether rcsdiff understands the --brief option.
87 The value is either `yes', `no', or nil. If it is nil, VC tries
88 to use --brief and sets this variable to remember whether it worked."
89 :type '(choice (const :tag "Work out" nil) (const yes) (const no))
90 :group 'vc-rcs)
92 ;; This needs to be autoloaded because vc-rcs-registered uses it (via
93 ;; vc-default-registered), and vc-hooks needs to be able to check
94 ;; for a registered backend without loading every backend.
95 ;;;###autoload
96 (defcustom vc-rcs-master-templates
97 (purecopy '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s"))
98 "Where to look for RCS master files.
99 For a description of possible values, see `vc-check-master-templates'."
100 :type '(choice (const :tag "Use standard RCS file names"
101 '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s"))
102 (repeat :tag "User-specified"
103 (choice string
104 function)))
105 :version "21.1"
106 :group 'vc-rcs)
109 ;;; Properties of the backend
111 (defun vc-rcs-revision-granularity () 'file)
113 (defun vc-rcs-checkout-model (files)
114 "RCS-specific version of `vc-checkout-model'."
115 (let ((file (if (consp files) (car files) files))
116 result)
117 (when vc-consult-headers
118 (vc-file-setprop file 'vc-checkout-model nil)
119 (vc-rcs-consult-headers file)
120 (setq result (vc-file-getprop file 'vc-checkout-model)))
121 (or result
122 (progn (vc-rcs-fetch-master-state file)
123 (vc-file-getprop file 'vc-checkout-model)))))
126 ;;; State-querying functions
129 ;; The autoload cookie below places vc-rcs-registered directly into
130 ;; loaddefs.el, so that vc-rcs.el does not need to be loaded for
131 ;; every file that is visited.
132 ;;;###autoload
133 (progn
134 (defun vc-rcs-registered (f) (vc-default-registered 'RCS f)))
136 (defun vc-rcs-state (file)
137 "Implementation of `vc-state' for RCS."
138 (if (not (vc-rcs-registered file))
139 'unregistered
140 (or (boundp 'vc-rcs-headers-result)
141 (and vc-consult-headers
142 (vc-rcs-consult-headers file)))
143 (let ((state
144 ;; vc-working-revision might not be known; in that case the
145 ;; property is nil. vc-rcs-fetch-master-state knows how to
146 ;; handle that.
147 (vc-rcs-fetch-master-state file
148 (vc-file-getprop file
149 'vc-working-revision))))
150 (if (not (eq state 'up-to-date))
151 state
152 (if (vc-workfile-unchanged-p file)
153 'up-to-date
154 (if (eq (vc-rcs-checkout-model (list file)) 'locking)
155 'unlocked-changes
156 'edited))))))
158 (defun vc-rcs-state-heuristic (file)
159 "State heuristic for RCS."
160 (let (vc-rcs-headers-result)
161 (if (and vc-consult-headers
162 (setq vc-rcs-headers-result
163 (vc-rcs-consult-headers file))
164 (eq vc-rcs-headers-result 'rev-and-lock))
165 (let ((state (vc-file-getprop file 'vc-state)))
166 ;; If the headers say that the file is not locked, the
167 ;; permissions can tell us whether locking is used for
168 ;; the file or not.
169 (if (and (eq state 'up-to-date)
170 (not (vc-mistrust-permissions file))
171 (file-exists-p file))
172 (cond
173 ((string-match ".rw..-..-." (nth 8 (file-attributes file)))
174 (vc-file-setprop file 'vc-checkout-model 'implicit)
175 (setq state
176 (if (vc-rcs-workfile-is-newer file)
177 'edited
178 'up-to-date)))
179 ((string-match ".r-..-..-." (nth 8 (file-attributes file)))
180 (vc-file-setprop file 'vc-checkout-model 'locking))))
181 state)
182 (if (not (vc-mistrust-permissions file))
183 (let* ((attributes (file-attributes file 'string))
184 (owner-name (nth 2 attributes))
185 (permissions (nth 8 attributes)))
186 (cond ((and permissions (string-match ".r-..-..-." permissions))
187 (vc-file-setprop file 'vc-checkout-model 'locking)
188 'up-to-date)
189 ((and permissions (string-match ".rw..-..-." permissions))
190 (if (eq (vc-rcs-checkout-model file) 'locking)
191 (if (file-ownership-preserved-p file)
192 'edited
193 owner-name)
194 (if (vc-rcs-workfile-is-newer file)
195 'edited
196 'up-to-date)))
198 ;; Strange permissions. Fall through to
199 ;; expensive state computation.
200 (vc-rcs-state file))))
201 (vc-rcs-state file)))))
203 (autoload 'vc-expand-dirs "vc")
205 (defun vc-rcs-dir-status (dir update-function)
206 ;; FIXME: this function should be rewritten or `vc-expand-dirs'
207 ;; should be changed to take a backend parameter. Using
208 ;; `vc-expand-dirs' is not TRTD because it returns files from
209 ;; multiple backends. It should also return 'unregistered files.
211 ;; Doing individual vc-state calls is painful but there
212 ;; is no better way in RCS-land.
213 (let ((flist (vc-expand-dirs (list dir)))
214 (result nil))
215 (dolist (file flist)
216 (let ((state (vc-state file))
217 (frel (file-relative-name file)))
218 (when (and (eq (vc-backend file) 'RCS)
219 (not (eq state 'up-to-date)))
220 (push (list frel state) result))))
221 (funcall update-function result)))
223 (defun vc-rcs-working-revision (file)
224 "RCS-specific version of `vc-working-revision'."
225 (or (and vc-consult-headers
226 (vc-rcs-consult-headers file)
227 (vc-file-getprop file 'vc-working-revision))
228 (progn
229 (vc-rcs-fetch-master-state file)
230 (vc-file-getprop file 'vc-working-revision))))
232 (defun vc-rcs-latest-on-branch-p (file &optional version)
233 "Return non-nil if workfile version of FILE is the latest on its branch.
234 When VERSION is given, perform check for that version."
235 (unless version (setq version (vc-working-revision file)))
236 (with-temp-buffer
237 (string= version
238 (if (vc-rcs-trunk-p version)
239 (progn
240 ;; Compare VERSION to the head version number.
241 (vc-insert-file (vc-name file) "^[0-9]")
242 (vc-parse-buffer "^head[ \t\n]+\\([^;]+\\);" 1))
243 ;; If we are not on the trunk, we need to examine the
244 ;; whole current branch.
245 (vc-insert-file (vc-name file) "^desc")
246 (vc-rcs-find-most-recent-rev (vc-branch-part version))))))
248 (defun vc-rcs-workfile-unchanged-p (file)
249 "RCS-specific implementation of `vc-workfile-unchanged-p'."
250 ;; Try to use rcsdiff --brief. If rcsdiff does not understand that,
251 ;; do a double take and remember the fact for the future
252 (let* ((version (concat "-r" (vc-working-revision file)))
253 (status (if (eq vc-rcsdiff-knows-brief 'no)
254 (vc-do-command "*vc*" 1 "rcsdiff" file version)
255 (vc-do-command "*vc*" 2 "rcsdiff" file "--brief" version))))
256 (if (eq status 2)
257 (if (not vc-rcsdiff-knows-brief)
258 (setq vc-rcsdiff-knows-brief 'no
259 status (vc-do-command "*vc*" 1 "rcsdiff" file version))
260 (error "rcsdiff failed"))
261 (if (not vc-rcsdiff-knows-brief) (setq vc-rcsdiff-knows-brief 'yes)))
262 ;; The workfile is unchanged if rcsdiff found no differences.
263 (zerop status)))
267 ;;; State-changing functions
270 (defun vc-rcs-create-repo ()
271 "Create a new RCS repository."
272 ;; RCS is totally file-oriented, so all we have to do is make the directory.
273 (make-directory "RCS"))
275 (autoload 'vc-switches "vc")
277 (defun vc-rcs-register (files &optional rev comment)
278 "Register FILES into the RCS version-control system.
279 REV is the optional revision number for the files. COMMENT can be used
280 to provide an initial description for each FILES.
281 Passes either `vc-rcs-register-switches' or `vc-register-switches'
282 to the RCS command.
284 Automatically retrieve a read-only version of the file with keywords
285 expanded if `vc-keep-workfiles' is non-nil, otherwise, delete the workfile."
286 (let (subdir name)
287 ;; When REV is specified, we need to force using "-t-".
288 (when rev (unless comment (setq comment "")))
289 (dolist (file files)
290 (and (not (file-exists-p
291 (setq subdir (expand-file-name "RCS"
292 (file-name-directory file)))))
293 (not (directory-files (file-name-directory file)
294 nil ".*,v$" t))
295 (yes-or-no-p "Create RCS subdirectory? ")
296 (make-directory subdir))
297 (apply #'vc-do-command "*vc*" 0 "ci" file
298 ;; if available, use the secure registering option
299 (and (vc-rcs-release-p "5.6.4") "-i")
300 (concat (if vc-keep-workfiles "-u" "-r") rev)
301 (and comment (concat "-t-" comment))
302 (vc-switches 'RCS 'register))
303 ;; parse output to find master file name and workfile version
304 (with-current-buffer "*vc*"
305 (goto-char (point-min))
306 (if (not (setq name
307 (if (looking-at (concat "^\\(.*\\) <-- "
308 (file-name-nondirectory file)))
309 (match-string 1))))
310 ;; if we couldn't find the master name,
311 ;; run vc-rcs-registered to get it
312 ;; (will be stored into the vc-name property)
313 (vc-rcs-registered file)
314 (vc-file-setprop file 'vc-name
315 (if (file-name-absolute-p name)
316 name
317 (expand-file-name
318 name
319 (file-name-directory file))))))
320 (vc-file-setprop file 'vc-working-revision
321 (if (re-search-forward
322 "^initial revision: \\([0-9.]+\\).*\n"
323 nil t)
324 (match-string 1))))))
326 (defun vc-rcs-responsible-p (file)
327 "Return non-nil if RCS thinks it would be responsible for registering FILE."
328 ;; TODO: check for all the patterns in vc-rcs-master-templates
329 (file-directory-p (expand-file-name "RCS"
330 (if (file-directory-p file)
331 file
332 (file-name-directory file)))))
334 (defun vc-rcs-receive-file (file rev)
335 "Implementation of receive-file for RCS."
336 (let ((checkout-model (vc-rcs-checkout-model (list file))))
337 (vc-rcs-register file rev "")
338 (when (eq checkout-model 'implicit)
339 (vc-rcs-set-non-strict-locking file))
340 (vc-rcs-set-default-branch file (concat rev ".1"))))
342 (defun vc-rcs-unregister (file)
343 "Unregister FILE from RCS.
344 If this leaves the RCS subdirectory empty, ask the user
345 whether to remove it."
346 (let* ((master (vc-name file))
347 (dir (file-name-directory master))
348 (backup-info (find-backup-file-name master)))
349 (if (not backup-info)
350 (delete-file master)
351 (rename-file master (car backup-info) 'ok-if-already-exists)
352 (dolist (f (cdr backup-info)) (ignore-errors (delete-file f))))
353 (and (string= (file-name-nondirectory (directory-file-name dir)) "RCS")
354 ;; check whether RCS dir is empty, i.e. it does not
355 ;; contain any files except "." and ".."
356 (not (directory-files dir nil
357 "^\\([^.]\\|\\.[^.]\\|\\.\\.[^.]\\).*"))
358 (yes-or-no-p (format "Directory %s is empty; remove it? " dir))
359 (delete-directory dir))))
361 (defun vc-rcs-checkin (files rev comment)
362 "RCS-specific version of `vc-backend-checkin'."
363 (let ((switches (vc-switches 'RCS 'checkin)))
364 ;; Now operate on the files
365 (dolist (file (vc-expand-dirs files))
366 (let ((old-version (vc-working-revision file)) new-version
367 (default-branch (vc-file-getprop file 'vc-rcs-default-branch)))
368 ;; Force branch creation if an appropriate
369 ;; default branch has been set.
370 (and (not rev)
371 default-branch
372 (string-match (concat "^" (regexp-quote old-version) "\\.")
373 default-branch)
374 (setq rev default-branch)
375 (setq switches (cons "-f" switches)))
376 (if (and (not rev) old-version)
377 (setq rev (vc-branch-part old-version)))
378 (apply #'vc-do-command "*vc*" 0 "ci" (vc-name file)
379 ;; if available, use the secure check-in option
380 (and (vc-rcs-release-p "5.6.4") "-j")
381 (concat (if vc-keep-workfiles "-u" "-r") rev)
382 (concat "-m" comment)
383 switches)
384 (vc-file-setprop file 'vc-working-revision nil)
386 ;; determine the new workfile version
387 (set-buffer "*vc*")
388 (goto-char (point-min))
389 (when (or (re-search-forward
390 "new revision: \\([0-9.]+\\);" nil t)
391 (re-search-forward
392 "reverting to previous revision \\([0-9.]+\\)" nil t))
393 (setq new-version (match-string 1))
394 (vc-file-setprop file 'vc-working-revision new-version))
396 ;; if we got to a different branch, adjust the default
397 ;; branch accordingly
398 (cond
399 ((and old-version new-version
400 (not (string= (vc-branch-part old-version)
401 (vc-branch-part new-version))))
402 (vc-rcs-set-default-branch file
403 (if (vc-rcs-trunk-p new-version) nil
404 (vc-branch-part new-version)))
405 ;; If this is an old (pre-1992!) RCS release, we might have
406 ;; to remove a remaining lock.
407 (if (not (vc-rcs-release-p "5.6.2"))
408 ;; exit status of 1 is also accepted.
409 ;; It means that the lock was removed before.
410 (vc-do-command "*vc*" 1 "rcs" (vc-name file)
411 (concat "-u" old-version)))))))))
413 (defun vc-rcs-find-revision (file rev buffer)
414 (apply #'vc-do-command
415 (or buffer "*vc*") 0 "co" (vc-name file)
416 "-q" ;; suppress diagnostic output
417 (concat "-p" rev)
418 (vc-switches 'RCS 'checkout)))
420 (defun vc-rcs-checkout (file &optional editable rev)
421 "Retrieve a copy of a saved version of FILE. If FILE is a directory,
422 attempt the checkout for all registered files beneath it."
423 (if (file-directory-p file)
424 (mapc 'vc-rcs-checkout (vc-expand-dirs (list file)))
425 (let ((file-buffer (get-file-buffer file))
426 switches)
427 (message "Checking out %s..." file)
428 (save-excursion
429 ;; Change buffers to get local value of vc-checkout-switches.
430 (if file-buffer (set-buffer file-buffer))
431 (setq switches (vc-switches 'RCS 'checkout))
432 ;; Save this buffer's default-directory
433 ;; and use save-excursion to make sure it is restored
434 ;; in the same buffer it was saved in.
435 (let ((default-directory default-directory))
436 (save-excursion
437 ;; Adjust the default-directory so that the check-out creates
438 ;; the file in the right place.
439 (setq default-directory (file-name-directory file))
440 (let (new-version)
441 ;; if we should go to the head of the trunk,
442 ;; clear the default branch first
443 (and rev (string= rev "")
444 (vc-rcs-set-default-branch file nil))
445 ;; now do the checkout
446 (apply #'vc-do-command
447 "*vc*" 0 "co" (vc-name file)
448 ;; If locking is not strict, force to overwrite
449 ;; the writable workfile.
450 (if (eq (vc-rcs-checkout-model (list file)) 'implicit) "-f")
451 (if editable "-l")
452 (if (stringp rev)
453 ;; a literal revision was specified
454 (concat "-r" rev)
455 (let ((workrev (vc-working-revision file)))
456 (if workrev
457 (concat "-r"
458 (if (not rev)
459 ;; no revision specified:
460 ;; use current workfile version
461 workrev
462 ;; REV is t ...
463 (if (not (vc-rcs-trunk-p workrev))
464 ;; ... go to head of current branch
465 (vc-branch-part workrev)
466 ;; ... go to head of trunk
467 (vc-rcs-set-default-branch file
468 nil)
469 ""))))))
470 switches)
471 ;; determine the new workfile version
472 (with-current-buffer "*vc*"
473 (setq new-version
474 (vc-parse-buffer "^revision \\([0-9.]+\\).*\n" 1)))
475 (vc-file-setprop file 'vc-working-revision new-version)
476 ;; if necessary, adjust the default branch
477 (and rev (not (string= rev ""))
478 (vc-rcs-set-default-branch
479 file
480 (if (vc-rcs-latest-on-branch-p file new-version)
481 (if (vc-rcs-trunk-p new-version) nil
482 (vc-branch-part new-version))
483 new-version)))))
484 (message "Checking out %s...done" file))))))
486 (defun vc-rcs-rollback (files)
487 "Roll back, undoing the most recent checkins of FILES. Directories are
488 expanded to all registered subfiles in them."
489 (if (not files)
490 (error "RCS backend doesn't support directory-level rollback"))
491 (dolist (file (vc-expand-dirs files))
492 (let* ((discard (vc-working-revision file))
493 (previous (if (vc-rcs-trunk-p discard) "" (vc-branch-part discard)))
494 (config (current-window-configuration))
495 (done nil))
496 (if (null (yes-or-no-p (format "Remove version %s from %s history? "
497 discard file)))
498 (error "Aborted"))
499 (message "Removing revision %s from %s." discard file)
500 (vc-do-command "*vc*" 0 "rcs" (vc-name file) (concat "-o" discard))
501 ;; Check out the most recent remaining version. If it
502 ;; fails, because the whole branch got deleted, do a
503 ;; double-take and check out the version where the branch
504 ;; started.
505 (while (not done)
506 (condition-case err
507 (progn
508 (vc-do-command "*vc*" 0 "co" (vc-name file) "-f"
509 (concat "-u" previous))
510 (setq done t))
511 (error (set-buffer "*vc*")
512 (goto-char (point-min))
513 (if (search-forward "no side branches present for" nil t)
514 (progn (setq previous (vc-branch-part previous))
515 (vc-rcs-set-default-branch file previous)
516 ;; vc-do-command popped up a window with
517 ;; the error message. Get rid of it, by
518 ;; restoring the old window configuration.
519 (set-window-configuration config))
520 ;; No, it was some other error: re-signal it.
521 (signal (car err) (cdr err)))))))))
523 (defun vc-rcs-revert (file &optional _contents-done)
524 "Revert FILE to the version it was based on. If FILE is a directory,
525 revert all registered files beneath it."
526 (if (file-directory-p file)
527 (mapc 'vc-rcs-revert (vc-expand-dirs (list file)))
528 (vc-do-command "*vc*" 0 "co" (vc-name file) "-f"
529 (concat (if (eq (vc-state file) 'edited) "-u" "-r")
530 (vc-working-revision file)))))
532 (defun vc-rcs-merge (file first-version &optional second-version)
533 "Merge changes into current working copy of FILE.
534 The changes are between FIRST-VERSION and SECOND-VERSION."
535 (vc-do-command "*vc*" 1 "rcsmerge" (vc-name file)
536 "-kk" ; ignore keyword conflicts
537 (concat "-r" first-version)
538 (if second-version (concat "-r" second-version))))
540 (defun vc-rcs-steal-lock (file &optional rev)
541 "Steal the lock on the current workfile for FILE and revision REV.
542 If FILE is a directory, steal the lock on all registered files beneath it.
543 Needs RCS 5.6.2 or later for -M."
544 (if (file-directory-p file)
545 (mapc 'vc-rcs-steal-lock (vc-expand-dirs (list file)))
546 (vc-do-command "*vc*" 0 "rcs" (vc-name file) "-M" (concat "-u" rev))
547 ;; Do a real checkout after stealing the lock, so that we see
548 ;; expanded headers.
549 (vc-do-command "*vc*" 0 "co" (vc-name file) "-f" (concat "-l" rev))))
551 (defun vc-rcs-modify-change-comment (files rev comment)
552 "Modify the change comments change on FILES on a specified REV. If FILE is a
553 directory the operation is applied to all registered files beneath it."
554 (dolist (file (vc-expand-dirs files))
555 (vc-do-command "*vc*" 0 "rcs" (vc-name file)
556 (concat "-m" rev ":" comment))))
560 ;;; History functions
563 (defun vc-rcs-print-log-cleanup ()
564 (let ((inhibit-read-only t))
565 (goto-char (point-max))
566 (forward-line -1)
567 (while (looking-at "=*\n")
568 (delete-char (- (match-end 0) (match-beginning 0)))
569 (forward-line -1))
570 (goto-char (point-min))
571 (when (looking-at "[\b\t\n\v\f\r ]+")
572 (delete-char (- (match-end 0) (match-beginning 0))))))
574 (defun vc-rcs-print-log (files buffer &optional _shortlog
575 _start-revision-ignored limit)
576 "Print commit log associated with FILES into specified BUFFER.
577 Remaining arguments are ignored.
578 If FILE is a directory the operation is applied to all registered
579 files beneath it."
580 (vc-do-command (or buffer "*vc*") 0 "rlog"
581 (mapcar 'vc-name (vc-expand-dirs files)))
582 (with-current-buffer (or buffer "*vc*")
583 (vc-rcs-print-log-cleanup))
584 (when limit 'limit-unsupported))
586 (defun vc-rcs-diff (files &optional oldvers newvers buffer)
587 "Get a difference report using RCS between two sets of files."
588 (apply #'vc-do-command (or buffer "*vc-diff*")
589 1 ;; Always go synchronous, the repo is local
590 "rcsdiff" (vc-expand-dirs files)
591 (append (list "-q"
592 (and oldvers (concat "-r" oldvers))
593 (and newvers (concat "-r" newvers)))
594 (vc-switches 'RCS 'diff))))
596 (defun vc-rcs-find-admin-dir (file)
597 "Return the administrative directory of FILE."
598 (vc-find-root file "RCS"))
600 (defun vc-rcs-comment-history (file)
601 "Return a string with all log entries stored in BACKEND for FILE."
602 (with-current-buffer "*vc*"
603 ;; Has to be written this way, this function is used by the CVS backend too
604 (vc-call-backend (vc-backend file) 'print-log (list file))
605 ;; Remove cruft
606 (let ((separator (concat "^-+\nrevision [0-9.]+\ndate: .*\n"
607 "\\(branches: .*;\n\\)?"
608 "\\(\\*\\*\\* empty log message \\*\\*\\*\n\\)?")))
609 (goto-char (point-max)) (forward-line -1)
610 (while (looking-at "=*\n")
611 (delete-char (- (match-end 0) (match-beginning 0)))
612 (forward-line -1))
613 (goto-char (point-min))
614 (if (looking-at "[\b\t\n\v\f\r ]+")
615 (delete-char (- (match-end 0) (match-beginning 0))))
616 (goto-char (point-min))
617 (re-search-forward separator nil t)
618 (delete-region (point-min) (point))
619 (while (re-search-forward separator nil t)
620 (delete-region (match-beginning 0) (match-end 0))))
621 ;; Return the de-crufted comment list
622 (buffer-string)))
624 (defun vc-rcs-annotate-command (file buffer &optional revision)
625 "Annotate FILE, inserting the results in BUFFER.
626 Optional arg REVISION is a revision to annotate from."
627 (vc-setup-buffer buffer)
628 ;; Aside from the "head revision on the trunk", the instructions for
629 ;; each revision on the trunk are an ordered list of kill and insert
630 ;; commands necessary to go from the chronologically-following
631 ;; revision to this one. That is, associated with revision N are
632 ;; edits that applied to revision N+1 would result in revision N.
634 ;; On a branch, however, (some) things are inverted: the commands
635 ;; listed are those necessary to go from the chronologically-preceding
636 ;; revision to this one. That is, associated with revision N are
637 ;; edits that applied to revision N-1 would result in revision N.
639 ;; So, to get per-line history info, we apply reverse-chronological
640 ;; edits, starting with the head revision on the trunk, all the way
641 ;; back through the initial revision (typically "1.1" or similar),
642 ;; then apply forward-chronological edits -- keeping track of which
643 ;; revision is associated with each inserted line -- until we reach
644 ;; the desired revision for display (which may be either on the trunk
645 ;; or on a branch).
646 (let* ((tree (with-temp-buffer
647 (insert-file-contents (vc-rcs-registered file))
648 (vc-rcs-parse)))
649 (revisions (cdr (assq 'revisions tree)))
650 ;; The revision N whose instructions we currently are processing.
651 (cur (cdr (assq 'head (cdr (assq 'headers tree)))))
652 ;; Alist from the parse tree for N.
653 (meta (cdr (assoc cur revisions)))
654 ;; Point and temporary string, respectively.
656 ;; "Next-branch list". Nil means the desired revision to
657 ;; display lives on the trunk. Non-nil means it lives on a
658 ;; branch, in which case the value is a list of revision pairs
659 ;; (PARENT . CHILD), the first PARENT being on the trunk, that
660 ;; links each series of revisions in the path from the initial
661 ;; revision to the desired revision to display.
662 nbls
663 ;; "Path-accumulate-predicate plus revision/date/author".
664 ;; Until set, forward-chronological edits are not accumulated.
665 ;; Once set, its value (updated every revision) is used for
666 ;; the text property `:vc-rcs-r/d/a' for inserts during
667 ;; processing of forward-chronological instructions for N.
668 ;; See internal func `r/d/a'.
669 prda
670 ;; List of forward-chronological instructions, each of the
671 ;; form: (POS . ACTION), where POS is a buffer position. If
672 ;; ACTION is a string, it is inserted, otherwise it is taken as
673 ;; the number of characters to be deleted.
674 path
675 ;; N+1. When `cur' is "", this is the initial revision.
676 pre)
677 (unless revision
678 (setq revision cur))
679 (unless (assoc revision revisions)
680 (error "No such revision: %s" revision))
681 ;; Find which branches (if any) must be included in the edits.
682 (let ((par revision)
683 bpt kids)
684 (while (setq bpt (vc-branch-part par)
685 par (vc-branch-part bpt))
686 (setq kids (cdr (assq 'branches (cdr (assoc par revisions)))))
687 ;; A branchpoint may have multiple children. Find the right one.
688 (while (not (string= bpt (vc-branch-part (car kids))))
689 (setq kids (cdr kids)))
690 (push (cons par (car kids)) nbls)))
691 ;; Start with the full text.
692 (set-buffer buffer)
693 (insert (cdr (assq 'text meta)))
694 ;; Apply reverse-chronological edits on the trunk, computing and
695 ;; accumulating forward-chronological edits after some point, for
696 ;; later.
697 (cl-flet ((r/d/a () (vector pre
698 (cdr (assq 'date meta))
699 (cdr (assq 'author meta)))))
700 (while (when (setq pre cur cur (cdr (assq 'next meta)))
701 (not (string= "" cur)))
702 (setq
703 ;; Start accumulating the forward-chronological edits when N+1
704 ;; on the trunk is either the desired revision to display, or
705 ;; the appropriate branchpoint for it. Do this before
706 ;; updating `meta' since `r/d/a' uses N+1's `meta' value.
707 prda (when (or prda (string= (if nbls (caar nbls) revision) pre))
708 (r/d/a))
709 meta (cdr (assoc cur revisions)))
710 ;; Edits in the parse tree specify a line number (in the buffer
711 ;; *BEFORE* editing occurs) to start from, but line numbers
712 ;; change as a result of edits. To DTRT, we apply edits in
713 ;; order of descending buffer position so that edits further
714 ;; down in the buffer occur first w/o corrupting specified
715 ;; buffer positions of edits occurring towards the beginning of
716 ;; the buffer. In this way we avoid using markers. A pleasant
717 ;; property of this approach is ability to push instructions
718 ;; onto `path' directly, w/o need to maintain rev boundaries.
719 (dolist (insn (cdr (assq :insn meta)))
720 (goto-char (point-min))
721 (forward-line (1- (pop insn)))
722 (setq p (point))
723 (pcase (pop insn)
724 (`k (setq s (buffer-substring-no-properties
725 p (progn (forward-line (car insn))
726 (point))))
727 (when prda
728 (push `(,p . ,(propertize s :vc-rcs-r/d/a prda)) path))
729 (delete-region p (point)))
730 (`i (setq s (car insn))
731 (when prda
732 (push `(,p . ,(length s)) path))
733 (insert s)))))
734 ;; For the initial revision, setting `:vc-rcs-r/d/a' directly is
735 ;; equivalent to pushing an insert instruction (of the entire buffer
736 ;; contents) onto `path' then erasing the buffer, but less wasteful.
737 (put-text-property (point-min) (point-max) :vc-rcs-r/d/a (r/d/a))
738 ;; Now apply the forward-chronological edits for the trunk.
739 (dolist (insn path)
740 (goto-char (pop insn))
741 (if (stringp insn)
742 (insert insn)
743 (delete-char insn)))
744 ;; Now apply the forward-chronological edits (directly from the
745 ;; parse-tree) for the branch(es), if necessary. We re-use vars
746 ;; `pre' and `meta' for the sake of internal func `r/d/a'.
747 (while nbls
748 (setq pre (cdr (pop nbls)))
749 (while (progn
750 (setq meta (cdr (assoc pre revisions))
751 prda nil)
752 (dolist (insn (cdr (assq :insn meta)))
753 (goto-char (point-min))
754 (forward-line (1- (pop insn)))
755 (pcase (pop insn)
756 (`k (delete-region
757 (point) (progn (forward-line (car insn))
758 (point))))
759 (`i (insert (propertize
760 (car insn)
761 :vc-rcs-r/d/a
762 (or prda (setq prda (r/d/a))))))))
763 (prog1 (not (string= (if nbls (caar nbls) revision) pre))
764 (setq pre (cdr (assq 'next meta)))))))))
765 ;; Lastly, for each line, insert at bol nicely-formatted history info.
766 ;; We do two passes to collect summary information used to minimize
767 ;; the annotation's usage of screen real-estate: (1) Consider rendered
768 ;; width of revision plus author together as a unit; and (2) Omit
769 ;; author entirely if all authors are the same as the user.
770 (let ((ht (make-hash-table :test 'eq))
771 (me (user-login-name))
772 (maxw 0)
773 (all-me t)
774 rda w a)
775 (goto-char (point-max))
776 (while (not (bobp))
777 (forward-line -1)
778 (setq rda (get-text-property (point) :vc-rcs-r/d/a))
779 (unless (gethash rda ht)
780 (setq a (aref rda 2)
781 all-me (and all-me (string= a me)))
782 (puthash rda (setq w (+ (length (aref rda 0))
783 (length a)))
785 (setq maxw (max w maxw))))
786 (let ((padding (make-string maxw 32)))
787 (cl-flet ((pad (w) (substring-no-properties padding w))
788 (render (rda &rest ls)
789 (propertize
790 (apply #'concat
791 (format-time-string "%Y-%m-%d" (aref rda 1))
793 (aref rda 0)
795 :vc-annotate-prefix t
796 :vc-rcs-r/d/a rda)))
797 (maphash
798 (if all-me
799 (lambda (rda w)
800 (puthash rda (render rda (pad w) ": ") ht))
801 (lambda (rda w)
802 (puthash rda (render rda " " (pad w) " " (aref rda 2) ": ") ht)))
803 ht)))
804 (while (not (eobp))
805 (insert (gethash (get-text-property (point) :vc-rcs-r/d/a) ht))
806 (forward-line 1))))
808 (declare-function vc-annotate-convert-time "vc-annotate" (time))
810 (defun vc-rcs-annotate-current-time ()
811 "Return the current time, based at midnight of the current day, and
812 encoded as fractional days."
813 (vc-annotate-convert-time
814 (apply #'encode-time 0 0 0 (nthcdr 3 (decode-time (current-time))))))
816 (defun vc-rcs-annotate-time ()
817 "Return the time of the next annotation (as fraction of days)
818 systime, or nil if there is none. Also, reposition point."
819 (unless (eobp)
820 (prog1 (vc-annotate-convert-time
821 (aref (get-text-property (point) :vc-rcs-r/d/a) 1))
822 (goto-char (next-single-property-change (point) :vc-annotate-prefix)))))
824 (defun vc-rcs-annotate-extract-revision-at-line ()
825 (aref (get-text-property (point) :vc-rcs-r/d/a) 0))
829 ;;; Tag system
832 (autoload 'vc-tag-precondition "vc")
833 (declare-function vc-file-tree-walk "vc" (dirname func &rest args))
835 (defun vc-rcs-create-tag (dir name branchp)
836 (when branchp
837 (error "RCS backend does not support module branches"))
838 (let ((result (vc-tag-precondition dir)))
839 (if (stringp result)
840 (error "File %s is not up-to-date" result)
841 (vc-file-tree-walk
843 (lambda (f)
844 (vc-do-command "*vc*" 0 "rcs" (vc-name f) (concat "-n" name ":")))))))
848 ;;; Miscellaneous
851 (defun vc-rcs-trunk-p (rev)
852 "Return t if REV is a revision on the trunk."
853 (not (eq nil (string-match "\\`[0-9]+\\.[0-9]+\\'" rev))))
855 (defun vc-rcs-minor-part (rev)
856 "Return the minor revision number of a revision number REV."
857 (string-match "[0-9]+\\'" rev)
858 (substring rev (match-beginning 0) (match-end 0)))
860 (defun vc-rcs-previous-revision (_file rev)
861 "Return the revision number immediately preceding REV for FILE,
862 or nil if there is no previous revision. This default
863 implementation works for MAJOR.MINOR-style revision numbers as
864 used by RCS and CVS."
865 (let ((branch (vc-branch-part rev))
866 (minor-num (string-to-number (vc-rcs-minor-part rev))))
867 (when branch
868 (if (> minor-num 1)
869 ;; revision does probably not start a branch or release
870 (concat branch "." (number-to-string (1- minor-num)))
871 (if (vc-rcs-trunk-p rev)
872 ;; we are at the beginning of the trunk --
873 ;; don't know anything to return here
875 ;; we are at the beginning of a branch --
876 ;; return revision of starting point
877 (vc-branch-part branch))))))
879 (defun vc-rcs-next-revision (file rev)
880 "Return the revision number immediately following REV for FILE,
881 or nil if there is no next revision. This default implementation
882 works for MAJOR.MINOR-style revision numbers as used by RCS
883 and CVS."
884 (when (not (string= rev (vc-working-revision file)))
885 (let ((branch (vc-branch-part rev))
886 (minor-num (string-to-number (vc-rcs-minor-part rev))))
887 (concat branch "." (number-to-string (1+ minor-num))))))
889 ;; Note that most GNU/Linux distributions seem to supply rcs2log in a
890 ;; standard bin directory. Eg both Red Hat and Debian include it in
891 ;; their cvs packages. It's not obvious why Emacs still needs to
892 ;; provide it as well...
893 (defvar vc-rcs-rcs2log-program
894 (let (exe)
895 (cond ((file-executable-p
896 (setq exe (expand-file-name "rcs2log" exec-directory)))
897 exe)
898 ;; In the unlikely event that someone is running an
899 ;; uninstalled Emacs and wants to do something RCS-related.
900 ((file-executable-p
901 (setq exe (expand-file-name "lib-src/rcs2log" source-directory)))
902 exe)
903 (t "rcs2log")))
904 "Path to the `rcs2log' program (normally in `exec-directory').")
906 (autoload 'vc-buffer-sync "vc-dispatcher")
908 (defun vc-rcs-update-changelog (files)
909 "Default implementation of update-changelog.
910 Uses `rcs2log' which only works for RCS and CVS."
911 ;; FIXME: We (c|sh)ould add support for cvs2cl
912 (let ((odefault default-directory)
913 (changelog (find-change-log))
914 ;; Presumably not portable to non-Unixy systems, along with rcs2log:
915 (tempfile (make-temp-file
916 (expand-file-name "vc"
917 (or small-temporary-file-directory
918 temporary-file-directory))))
919 (login-name (or user-login-name
920 (format "uid%d" (number-to-string (user-uid)))))
921 (full-name (or add-log-full-name
922 (user-full-name)
923 (user-login-name)
924 (format "uid%d" (number-to-string (user-uid)))))
925 (mailing-address (or add-log-mailing-address
926 user-mail-address)))
927 (find-file-other-window changelog)
928 (barf-if-buffer-read-only)
929 (vc-buffer-sync)
930 (undo-boundary)
931 (goto-char (point-min))
932 (push-mark)
933 (message "Computing change log entries...")
934 (message "Computing change log entries... %s"
935 (unwind-protect
936 (progn
937 (setq default-directory odefault)
938 (if (eq 0 (apply #'call-process vc-rcs-rcs2log-program
939 nil (list t tempfile) nil
940 "-c" changelog
941 "-u" (concat login-name
942 "\t" full-name
943 "\t" mailing-address)
944 (mapcar
945 (lambda (f)
946 (file-relative-name
947 (expand-file-name f odefault)))
948 files)))
949 "done"
950 (pop-to-buffer (get-buffer-create "*vc*"))
951 (erase-buffer)
952 (insert-file-contents tempfile)
953 "failed"))
954 (setq default-directory (file-name-directory changelog))
955 (delete-file tempfile)))))
957 (defun vc-rcs-check-headers ()
958 "Check if the current file has any headers in it."
959 (save-excursion
960 (goto-char (point-min))
961 (re-search-forward "\\$[A-Za-z\300-\326\330-\366\370-\377]+\
962 \\(: [\t -#%-\176\240-\377]*\\)?\\$" nil t)))
964 (defun vc-rcs-clear-headers ()
965 "Implementation of vc-clear-headers for RCS."
966 (let ((case-fold-search nil))
967 (goto-char (point-min))
968 (while (re-search-forward
969 (concat "\\$\\(Author\\|Date\\|Header\\|Id\\|Locker\\|Name\\|"
970 "RCSfile\\|Revision\\|Source\\|State\\): [^$\n]+\\$")
971 nil t)
972 (replace-match "$\\1$"))))
974 (autoload 'vc-rename-master "vc")
976 (defun vc-rcs-rename-file (old new)
977 ;; Just move the master file (using vc-rcs-master-templates).
978 (vc-rename-master (vc-name old) new vc-rcs-master-templates))
980 (defun vc-rcs-find-file-hook ()
981 ;; If the file is locked by some other user, make
982 ;; the buffer read-only. Like this, even root
983 ;; cannot modify a file that someone else has locked.
984 (and (stringp (vc-state buffer-file-name 'RCS))
985 (setq buffer-read-only t)))
989 ;;; Internal functions
992 (defun vc-rcs-workfile-is-newer (file)
993 "Return non-nil if FILE is newer than its RCS master.
994 This likely means that FILE has been changed with respect
995 to its master version."
996 (let ((file-time (nth 5 (file-attributes file)))
997 (master-time (nth 5 (file-attributes (vc-name file)))))
998 (or (> (nth 0 file-time) (nth 0 master-time))
999 (and (= (nth 0 file-time) (nth 0 master-time))
1000 (> (nth 1 file-time) (nth 1 master-time))))))
1002 (defun vc-rcs-find-most-recent-rev (branch)
1003 "Find most recent revision on BRANCH."
1004 (goto-char (point-min))
1005 (let ((latest-rev -1) value)
1006 (while (re-search-forward (concat "^\\(" (regexp-quote branch)
1007 "\\.\\([0-9]+\\)\\)\ndate[ \t]+[0-9.]+;")
1008 nil t)
1009 (let ((rev (string-to-number (match-string 2))))
1010 (when (< latest-rev rev)
1011 (setq latest-rev rev)
1012 (setq value (match-string 1)))))
1013 (or value
1014 (vc-branch-part branch))))
1016 (defun vc-rcs-fetch-master-state (file &optional working-revision)
1017 "Compute the master file's idea of the state of FILE.
1018 If a WORKING-REVISION is given, compute the state of that version,
1019 otherwise determine the workfile version based on the master file.
1020 This function sets the properties `vc-working-revision' and
1021 `vc-checkout-model' to their correct values, based on the master
1022 file."
1023 (with-temp-buffer
1024 (if (or (not (vc-insert-file (vc-name file) "^[0-9]"))
1025 (progn (goto-char (point-min))
1026 (not (looking-at "^head[ \t\n]+[^;]+;$"))))
1027 (error "File %s is not an RCS master file" (vc-name file)))
1028 (let ((workfile-is-latest nil)
1029 (default-branch (vc-parse-buffer "^branch[ \t\n]+\\([^;]*\\);" 1)))
1030 (vc-file-setprop file 'vc-rcs-default-branch default-branch)
1031 (unless working-revision
1032 ;; Workfile version not known yet. Determine that first. It
1033 ;; is either the head of the trunk, the head of the default
1034 ;; branch, or the "default branch" itself, if that is a full
1035 ;; revision number.
1036 (cond
1037 ;; no default branch
1038 ((or (not default-branch) (string= "" default-branch))
1039 (setq working-revision
1040 (vc-parse-buffer "^head[ \t\n]+\\([^;]+\\);" 1))
1041 (setq workfile-is-latest t))
1042 ;; default branch is actually a revision
1043 ((string-match "^[0-9]+\\.[0-9]+\\(\\.[0-9]+\\.[0-9]+\\)*$"
1044 default-branch)
1045 (setq working-revision default-branch))
1046 ;; else, search for the head of the default branch
1047 (t (vc-insert-file (vc-name file) "^desc")
1048 (setq working-revision
1049 (vc-rcs-find-most-recent-rev default-branch))
1050 (setq workfile-is-latest t)))
1051 (vc-file-setprop file 'vc-working-revision working-revision))
1052 ;; Check strict locking
1053 (goto-char (point-min))
1054 (vc-file-setprop file 'vc-checkout-model
1055 (if (re-search-forward ";[ \t\n]*strict;" nil t)
1056 'locking 'implicit))
1057 ;; Compute state of workfile version
1058 (goto-char (point-min))
1059 (let ((locking-user
1060 (vc-parse-buffer (concat "^locks[ \t\n]+[^;]*[ \t\n]+\\([^:]+\\):"
1061 (regexp-quote working-revision)
1062 "[^0-9.]")
1063 1)))
1064 (cond
1065 ;; not locked
1066 ((not locking-user)
1067 (if (or workfile-is-latest
1068 (vc-rcs-latest-on-branch-p file working-revision))
1069 ;; workfile version is latest on branch
1070 'up-to-date
1071 ;; workfile version is not latest on branch
1072 'needs-update))
1073 ;; locked by the calling user
1074 ((and (stringp locking-user)
1075 (string= locking-user (vc-user-login-name file)))
1076 ;; Don't call `vc-rcs-checkout-model' to avoid inf-looping.
1077 (if (or (eq (vc-file-getprop file 'vc-checkout-model) 'locking)
1078 workfile-is-latest
1079 (vc-rcs-latest-on-branch-p file working-revision))
1080 'edited
1081 ;; Locking is not used for the file, but the owner does
1082 ;; have a lock, and there is a higher version on the current
1083 ;; branch. Not sure if this can occur, and if it is right
1084 ;; to use `needs-merge' in this case.
1085 'needs-merge))
1086 ;; locked by somebody else
1087 ((stringp locking-user)
1088 locking-user)
1090 (error "Error getting state of RCS file")))))))
1092 (defun vc-rcs-consult-headers (file)
1093 "Search for RCS headers in FILE, and set properties accordingly.
1095 Returns: nil if no headers were found
1096 'rev if a workfile revision was found
1097 'rev-and-lock if revision and lock info was found"
1098 (cond
1099 ((not (get-file-buffer file)) nil)
1100 ((let (status version locking-user)
1101 (with-current-buffer (get-file-buffer file)
1102 (save-excursion
1103 (goto-char (point-min))
1104 (cond
1105 ;; search for $Id or $Header
1106 ;; -------------------------
1107 ;; The `\ 's below avoid an RCS 5.7 bug when checking in this file.
1108 ((or (and (search-forward "$Id\ : " nil t)
1109 (looking-at "[^ ]+ \\([0-9.]+\\) "))
1110 (and (progn (goto-char (point-min))
1111 (search-forward "$Header\ : " nil t))
1112 (looking-at "[^ ]+ \\([0-9.]+\\) ")))
1113 (goto-char (match-end 0))
1114 ;; if found, store the revision number ...
1115 (setq version (match-string-no-properties 1))
1116 ;; ... and check for the locking state
1117 (cond
1118 ((looking-at
1119 (concat "[0-9]+[/-][01][0-9][/-][0-3][0-9] " ; date
1120 "[0-2][0-9]:[0-5][0-9]+:[0-6][0-9]+\\([+-][0-9:]+\\)? " ; time
1121 "[^ ]+ [^ ]+ ")) ; author & state
1122 (goto-char (match-end 0)) ; [0-6] in regexp handles leap seconds
1123 (cond
1124 ;; unlocked revision
1125 ((looking-at "\\$")
1126 (setq locking-user 'none)
1127 (setq status 'rev-and-lock))
1128 ;; revision is locked by some user
1129 ((looking-at "\\([^ ]+\\) \\$")
1130 (setq locking-user (match-string-no-properties 1))
1131 (setq status 'rev-and-lock))
1132 ;; everything else: false
1133 (nil)))
1134 ;; unexpected information in
1135 ;; keyword string --> quit
1136 (nil)))
1137 ;; search for $Revision
1138 ;; --------------------
1139 ((re-search-forward (concat "\\$"
1140 "Revision: \\([0-9.]+\\) \\$")
1141 nil t)
1142 ;; if found, store the revision number ...
1143 (setq version (match-string-no-properties 1))
1144 ;; and see if there's any lock information
1145 (goto-char (point-min))
1146 (if (re-search-forward (concat "\\$" "Locker:") nil t)
1147 (cond ((looking-at " \\([^ ]+\\) \\$")
1148 (setq locking-user (match-string-no-properties 1))
1149 (setq status 'rev-and-lock))
1150 ((looking-at " *\\$")
1151 (setq locking-user 'none)
1152 (setq status 'rev-and-lock))
1154 (setq locking-user 'none)
1155 (setq status 'rev-and-lock)))
1156 (setq status 'rev)))
1157 ;; else: nothing found
1158 ;; -------------------
1159 (t nil))))
1160 (if status (vc-file-setprop file 'vc-working-revision version))
1161 (and (eq status 'rev-and-lock)
1162 (vc-file-setprop file 'vc-state
1163 (cond
1164 ((eq locking-user 'none) 'up-to-date)
1165 ((string= locking-user (vc-user-login-name file))
1166 'edited)
1167 (t locking-user)))
1168 ;; If the file has headers, we don't want to query the
1169 ;; master file, because that would eliminate all the
1170 ;; performance gain the headers brought us. We therefore
1171 ;; use a heuristic now to find out whether locking is used
1172 ;; for this file. If we trust the file permissions, and the
1173 ;; file is not locked, then if the file is read-only we
1174 ;; assume that locking is used for the file, otherwise
1175 ;; locking is not used.
1176 (not (vc-mistrust-permissions file))
1177 (vc-up-to-date-p file)
1178 (if (string-match ".r-..-..-." (nth 8 (file-attributes file)))
1179 (vc-file-setprop file 'vc-checkout-model 'locking)
1180 (vc-file-setprop file 'vc-checkout-model 'implicit)))
1181 status))))
1183 (defun vc-release-greater-or-equal (r1 r2)
1184 "Compare release numbers, represented as strings.
1185 Release components are assumed cardinal numbers, not decimal fractions
1186 \(5.10 is a higher release than 5.9\). Omitted fields are considered
1187 lower \(5.6.7 is earlier than 5.6.7.1\). Comparison runs till the end
1188 of the string is found, or a non-numeric component shows up \(5.6.7 is
1189 earlier than \"5.6.7 beta\", which is probably not what you want in
1190 some cases\). This code is suitable for existing RCS release numbers.
1191 CVS releases are handled reasonably, too \(1.3 < 1.4* < 1.5\)."
1192 (let (v1 v2 i1 i2)
1193 (catch 'done
1194 (or (and (string-match "^\\.?\\([0-9]+\\)" r1)
1195 (setq i1 (match-end 0))
1196 (setq v1 (string-to-number (match-string 1 r1)))
1197 (or (and (string-match "^\\.?\\([0-9]+\\)" r2)
1198 (setq i2 (match-end 0))
1199 (setq v2 (string-to-number (match-string 1 r2)))
1200 (if (> v1 v2) (throw 'done t)
1201 (if (< v1 v2) (throw 'done nil)
1202 (throw 'done
1203 (vc-release-greater-or-equal
1204 (substring r1 i1)
1205 (substring r2 i2)))))))
1206 (throw 'done t)))
1207 (or (and (string-match "^\\.?\\([0-9]+\\)" r2)
1208 (throw 'done nil))
1209 (throw 'done t)))))
1211 (defun vc-rcs-release-p (release)
1212 "Return t if we have RELEASE or better."
1213 (let ((installation (vc-rcs-system-release)))
1214 (if (and installation
1215 (not (eq installation 'unknown)))
1216 (vc-release-greater-or-equal installation release))))
1218 (defun vc-rcs-system-release ()
1219 "Return the RCS release installed on this system, as a string.
1220 Return symbol `unknown' if the release cannot be deducted. The user can
1221 override this using variable `vc-rcs-release'.
1223 If the user has not set variable `vc-rcs-release' and it is nil,
1224 variable `vc-rcs-release' is set to the returned value."
1225 (or vc-rcs-release
1226 (setq vc-rcs-release
1227 (or (and (zerop (vc-do-command "*vc*" nil "rcs" nil "-V"))
1228 (with-current-buffer (get-buffer "*vc*")
1229 (vc-parse-buffer "^RCS version \\([0-9.]+ *.*\\)" 1)))
1230 'unknown))))
1232 (defun vc-rcs-set-non-strict-locking (file)
1233 (vc-do-command "*vc*" 0 "rcs" file "-U")
1234 (vc-file-setprop file 'vc-checkout-model 'implicit)
1235 (set-file-modes file (logior (file-modes file) 128)))
1237 (defun vc-rcs-set-default-branch (file branch)
1238 (vc-do-command "*vc*" 0 "rcs" (vc-name file) (concat "-b" branch))
1239 (vc-file-setprop file 'vc-rcs-default-branch branch))
1241 (defun vc-rcs-parse (&optional buffer)
1242 "Parse current buffer, presumed to be in RCS-style masterfile format.
1243 Optional arg BUFFER specifies another buffer to parse. Return an alist
1244 of two elements, w/ keys `headers' and `revisions' and values in turn
1245 sub-alists. For `headers', the values unless otherwise specified are
1246 strings and the keys are:
1248 desc -- description
1249 head -- latest revision
1250 branch -- the branch the \"head revision\" lies on;
1251 absent if the head revision lies on the trunk
1252 access -- ???
1253 symbols -- sub-alist of (SYMBOL . REVISION) elements
1254 locks -- if file is checked out, something like \"ttn:1.7\"
1255 strict -- t if \"strict locking\" is in effect, otherwise nil
1256 comment -- may be absent; typically something like \"# \" or \"; \"
1257 expand -- may be absent; ???
1259 For `revisions', the car is REVISION (string), the cdr a sub-alist,
1260 with string values (unless otherwise specified) and keys:
1262 date -- a time value (like that returned by `encode-time'); as a
1263 special case, a year value less than 100 is augmented by 1900
1264 author -- username
1265 state -- typically \"Exp\" or \"Rel\"
1266 branches -- list of revisions that begin branches from this revision
1267 next -- on the trunk: the chronologically-preceding revision, or \"\";
1268 on a branch: the chronologically-following revision, or \"\"
1269 log -- change log entry
1270 text -- for the head revision on the trunk, the body of the file;
1271 other revisions have `:insn' instead
1272 :insn -- for non-head revisions, a list of parsed instructions
1273 in one of two forms, in both cases START meaning \"first
1274 go to line START\":
1275 - `(START k COUNT)' -- kill COUNT lines
1276 - `(START i TEXT)' -- insert TEXT (a string)
1277 The list is in descending order by START.
1279 The `:insn' key is a keyword to distinguish it as a vc-rcs.el extension."
1280 (setq buffer (get-buffer (or buffer (current-buffer))))
1281 (set-buffer buffer)
1282 ;; An RCS masterfile can be viewed as containing four regular (for the
1283 ;; most part) sections: (a) the "headers", (b) the "rev headers", (c)
1284 ;; the "description" and (d) the "rev bodies", in that order. In the
1285 ;; returned alist (see docstring), elements from (b) and (d) are
1286 ;; combined pairwise to form the "revisions", while those from (a) and
1287 ;; (c) are simply combined to form the "headers".
1289 ;; Loosely speaking, each section contains a series of alternating
1290 ;; "tags" and "printed representations". In the (b) and (d), many
1291 ;; such series can appear, and a revision number on a line by itself
1292 ;; precedes the series of tags and printed representations associated
1293 ;; with it.
1295 ;; In (a) and (b), the printed representations (with the exception of
1296 ;; the `comment' tag in the headers) terminate with a semicolon, which
1297 ;; is NOT part of the "value" finally associated with the tag. All
1298 ;; other printed representations are in "@@-format"; there is an "@",
1299 ;; the middle part (to be translated into the value), another "@" and
1300 ;; a newline. Each "@@" in the middle part indicates the position of
1301 ;; a single "@" (and consequently the requirement of an additional
1302 ;; initial step when translating to the value).
1304 ;; Parser state includes vars that collect parts of the return value...
1305 (let ((desc nil) (headers nil) (revs nil)
1306 ;; ... as well as vars that support a single-pass, tag-assisted,
1307 ;; minimal-data-copying scan. Basically -- skirting around the
1308 ;; grouping by revision required in (b) and (d) -- we repeatedly
1309 ;; and context-sensitively read a tag (that MUST be present),
1310 ;; determine the bounds of the printed representation, translate
1311 ;; it into a value, and push the tag plus value onto one of the
1312 ;; collection vars. Finally, we return the parse tree
1313 ;; incorporating the values of the collection vars (see "rv").
1315 ;; A symbol or string to keep track of context (for error messages).
1316 context
1317 ;; A symbol, the current tag.
1319 ;; Region (begin and end buffer positions) of the printed
1320 ;; representation for the current tag.
1322 ;; A list of buffer positions where "@@" can be found within the
1323 ;; printed representation region. For each location, we push two
1324 ;; elements onto the list, 1+ and 2+ the location, respectively,
1325 ;; with the 2+ appearing at the head. In this way, the expression
1326 ;; `(,e ,@@-holes ,b)
1327 ;; describes regions that can be concatenated (in reverse order)
1328 ;; to "de-@@-format" the printed representation as the first step
1329 ;; to translating it into some value. See internal func `gather'.
1330 @-holes)
1331 (cl-flet*
1332 ((sw () (skip-chars-forward " \t\n")) ; i.e., `[:space:]'
1333 (at (tag) (save-excursion (eq tag (read buffer))))
1334 (to-eol () (buffer-substring-no-properties
1335 (point) (progn (forward-line 1)
1336 (1- (point)))))
1337 (to-semi () (setq b (point)
1338 e (progn (search-forward ";")
1339 (1- (point)))))
1340 (to-one@ () (setq @-holes nil
1341 b (progn (search-forward "@") (point))
1342 e (progn (while (and (search-forward "@")
1343 (= ?@ (char-after)))
1344 (push (point) @-holes)
1345 (forward-char 1)
1346 (push (point) @-holes))
1347 (1- (point)))))
1348 (tok+val (set-b+e name &optional proc)
1349 (unless (eq name (setq tok (read buffer)))
1350 (error "Missing `%s' while parsing %s" name context))
1351 (sw)
1352 (funcall set-b+e)
1353 (cons tok (if proc
1354 (funcall proc)
1355 (buffer-substring-no-properties b e))))
1356 (k-semi (name &optional proc) (tok+val #'to-semi name proc))
1357 (gather (b e @-holes)
1358 (let ((pairs `(,e ,@@-holes ,b))
1359 acc)
1360 (while pairs
1361 (push (buffer-substring-no-properties
1362 (cadr pairs) (car pairs))
1363 acc)
1364 (setq pairs (cddr pairs)))
1365 (apply #'concat acc)))
1366 (gather1 () (gather b e @-holes))
1367 (k-one@ (name &optional later)
1368 (tok+val #'to-one@ name (if later (lambda () t) #'gather1))))
1369 (save-excursion
1370 (goto-char (point-min))
1371 ;; headers
1372 (setq context 'headers)
1373 (cl-flet ((hpush (name &optional proc)
1374 (push (k-semi name proc) headers)))
1375 (hpush 'head)
1376 (when (at 'branch)
1377 (hpush 'branch))
1378 (hpush 'access)
1379 (hpush 'symbols
1380 (lambda ()
1381 (mapcar (lambda (together)
1382 (let ((two (split-string together ":")))
1383 (setcar two (intern (car two)))
1384 (setcdr two (cadr two))
1385 two))
1386 (split-string
1387 (buffer-substring-no-properties b e)))))
1388 (hpush 'locks))
1389 (push `(strict . ,(when (at 'strict)
1390 (search-forward ";")
1392 headers)
1393 (when (at 'comment)
1394 (push (k-one@ 'comment) headers)
1395 (search-forward ";"))
1396 (when (at 'expand)
1397 (push (k-one@ 'expand) headers)
1398 (search-forward ";"))
1399 (setq headers (nreverse headers))
1400 ;; rev headers
1401 (sw) (setq context 'rev-headers)
1402 (while (looking-at "[0-9]")
1403 (push `(,(to-eol)
1404 ,(k-semi 'date
1405 (lambda ()
1406 (let ((ls (mapcar 'string-to-number
1407 (split-string
1408 (buffer-substring-no-properties
1409 b e)
1410 "\\."))))
1411 ;; Hack the year -- verified to be the
1412 ;; same algorithm used in RCS 5.7.
1413 (when (< (car ls) 100)
1414 (setcar ls (+ 1900 (car ls))))
1415 (apply #'encode-time (nreverse ls)))))
1416 ,@(mapcar #'k-semi '(author state))
1417 ,(k-semi 'branches
1418 (lambda ()
1419 (split-string
1420 (buffer-substring-no-properties b e))))
1421 ,(k-semi 'next))
1422 revs)
1423 (sw))
1424 (setq revs (nreverse revs))
1425 ;; desc
1426 (sw) (setq context 'desc
1427 desc (k-one@ 'desc))
1428 ;; rev bodies
1429 (let (acc
1430 ;; Element of `revs' that initially holds only header info.
1431 ;; "Pairwise combination" occurs when we add body info.
1433 ;; Components of the editing commands (aside from the actual
1434 ;; text) that comprise the `text' printed representations
1435 ;; (not including the "head" revision).
1436 cmd start act
1437 ;; Ascending (reversed) `@-holes' which the internal func
1438 ;; `incg' pops to effect incremental gathering.
1440 ;; Function to extract text (for the `a' command), either
1441 ;; `incg' or `buffer-substring-no-properties'. (This is
1442 ;; for speed; strictly speaking, it is sufficient to use
1443 ;; only the former since it behaves identically to the
1444 ;; latter in the absence of "@@".)
1445 sub)
1446 (cl-flet ((incg (beg end)
1447 (let ((b beg) (e end) @-holes)
1448 (while (and asc (< (car asc) e))
1449 (push (pop asc) @-holes)
1450 (push (pop asc) @-holes))
1451 ;; Self-deprecate when work is done.
1452 ;; Folding many dimensions into one.
1453 ;; Thanks B.Mandelbrot, for complex sum.
1454 ;; O beauteous math! --the Unvexed Bum
1455 (unless asc
1456 (setq sub #'buffer-substring-no-properties))
1457 (gather b e @-holes))))
1458 (while (and (sw)
1459 (not (eobp))
1460 (setq context (to-eol)
1461 rev (or (assoc context revs)
1462 (error "Rev `%s' has body but no head"
1463 context))))
1464 (push (k-one@ 'log) (cdr rev))
1465 ;; For rev body `text' tags, delay translation slightly...
1466 (push (k-one@ 'text t) (cdr rev))
1467 ;; ... until we decide which tag and value is appropriate to
1468 ;; collect. For the "head" revision, compute the value of the
1469 ;; `text' printed representation by simple `gather'. For all
1470 ;; other revisions, replace the `text' tag+value with `:insn'
1471 ;; plus value, always scanning in-place.
1472 (if (string= context (cdr (assq 'head headers)))
1473 (setcdr (cadr rev) (gather b e @-holes))
1474 (if @-holes
1475 (setq asc (nreverse @-holes)
1476 sub #'incg)
1477 (setq sub #'buffer-substring-no-properties))
1478 (goto-char b)
1479 (setq acc nil)
1480 (while (< (point) e)
1481 (forward-char 1)
1482 (setq cmd (char-before)
1483 start (read (current-buffer))
1484 act (read (current-buffer)))
1485 (forward-char 1)
1486 (push (pcase cmd
1488 ;; `d' means "delete lines".
1489 ;; For Emacs spirit, we use `k' for "kill".
1490 `(,start k ,act))
1492 ;; `a' means "append after this line" but
1493 ;; internally we normalize it so that START
1494 ;; specifies the actual line for insert, thus
1495 ;; requiring less hair in the realization algs.
1496 ;; For Emacs spirit, we use `i' for "insert".
1497 `(,(1+ start) i
1498 ,(funcall sub (point) (progn (forward-line act)
1499 (point)))))
1500 (_ (error "Bad command `%c' in `text' for rev `%s'"
1501 cmd context)))
1502 acc))
1503 (goto-char (1+ e))
1504 (setcar (cdr rev) (cons :insn acc)))))))
1505 ;; rv
1506 `((headers ,desc ,@headers)
1507 (revisions ,@revs)))))
1509 (provide 'vc-rcs)
1511 ;;; vc-rcs.el ends here