Update copyright year to 2015
[emacs.git] / lisp / vc / vc-rcs.el
blobd575530c98b2468166baa7f4ee3e8fd397033a00
1 ;;; vc-rcs.el --- support for RCS version-control -*- lexical-binding:t -*-
3 ;; Copyright (C) 1992-2015 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-rcs-workfile-unchanged-p file)
153 'up-to-date
154 (if (eq (vc-rcs-checkout-model (list file)) 'locking)
155 'unlocked-changes
156 'edited))))))
158 (autoload 'vc-expand-dirs "vc")
160 (defun vc-rcs-dir-status-files (dir files update-function)
161 (if (not files) (setq files (vc-expand-dirs (list dir) 'RCS)))
162 (let ((result nil))
163 (dolist (file files)
164 (let ((state (vc-state file))
165 (frel (file-relative-name file)))
166 (when (and (eq (vc-backend file) 'RCS)
167 (not (eq state 'up-to-date)))
168 (push (list frel state) result))))
169 (funcall update-function result)))
171 (defun vc-rcs-working-revision (file)
172 "RCS-specific version of `vc-working-revision'."
173 (or (and vc-consult-headers
174 (vc-rcs-consult-headers file)
175 (vc-file-getprop file 'vc-working-revision))
176 (progn
177 (vc-rcs-fetch-master-state file)
178 (vc-file-getprop file 'vc-working-revision))))
180 (autoload 'vc-master-name "vc-filewise")
182 (defun vc-rcs-latest-on-branch-p (file &optional version)
183 "Return non-nil if workfile version of FILE is the latest on its branch.
184 When VERSION is given, perform check for that version."
185 (unless version (setq version (vc-working-revision file)))
186 (with-temp-buffer
187 (string= version
188 (if (vc-rcs-trunk-p version)
189 (progn
190 ;; Compare VERSION to the head version number.
191 (vc-insert-file (vc-master-name file) "^[0-9]")
192 (vc-parse-buffer "^head[ \t\n]+\\([^;]+\\);" 1))
193 ;; If we are not on the trunk, we need to examine the
194 ;; whole current branch.
195 (vc-insert-file (vc-master-name file) "^desc")
196 (vc-rcs-find-most-recent-rev (vc-branch-part version))))))
198 (defun vc-rcs-workfile-unchanged-p (file)
199 "Has FILE remained unchanged since last checkout?"
200 ;; Try to use rcsdiff --brief. If rcsdiff does not understand that,
201 ;; do a double take and remember the fact for the future
202 (let* ((version (concat "-r" (vc-working-revision file)))
203 (status (if (eq vc-rcsdiff-knows-brief 'no)
204 (vc-do-command "*vc*" 1 "rcsdiff" file version)
205 (vc-do-command "*vc*" 2 "rcsdiff" file "--brief" version))))
206 (if (eq status 2)
207 (if (not vc-rcsdiff-knows-brief)
208 (setq vc-rcsdiff-knows-brief 'no
209 status (vc-do-command "*vc*" 1 "rcsdiff" file version))
210 (error "rcsdiff failed"))
211 (if (not vc-rcsdiff-knows-brief) (setq vc-rcsdiff-knows-brief 'yes)))
212 ;; The workfile is unchanged if rcsdiff found no differences.
213 (zerop status)))
217 ;;; State-changing functions
220 (defun vc-rcs-create-repo ()
221 "Create a new RCS repository."
222 ;; RCS is totally file-oriented, so all we have to do is make the directory.
223 (make-directory "RCS"))
225 (autoload 'vc-switches "vc")
227 (defun vc-rcs-register (files &optional comment)
228 "Register FILES into the RCS version-control system.
229 Automatically retrieve a read-only version of the file with keywords expanded.
230 COMMENT can be used to provide an initial description for each FILES.
231 Passes either `vc-rcs-register-switches' or `vc-register-switches'
232 to the RCS command."
233 (let (subdir name)
234 (dolist (file files)
235 (and (not (file-exists-p
236 (setq subdir (expand-file-name "RCS"
237 (file-name-directory file)))))
238 (not (directory-files (file-name-directory file)
239 nil ".*,v$" t))
240 (yes-or-no-p "Create RCS subdirectory? ")
241 (make-directory subdir))
242 (apply #'vc-do-command "*vc*" 0 "ci" file
243 ;; if available, use the secure registering option
244 (and (vc-rcs-release-p "5.6.4") "-i")
245 "-u"
246 (and comment (concat "-t-" comment))
247 (vc-switches 'RCS 'register))
248 ;; parse output to find master file name and workfile version
249 (with-current-buffer "*vc*"
250 (goto-char (point-min))
251 (if (not (setq name
252 (if (looking-at (concat "^\\(.*\\) <-- "
253 (file-name-nondirectory file)))
254 (match-string 1))))
255 ;; if we couldn't find the master name,
256 ;; run vc-rcs-registered to get it
257 ;; (will be stored into the vc-master-name property)
258 (vc-rcs-registered file)
259 (vc-file-setprop file 'vc-master-name
260 (if (file-name-absolute-p name)
261 name
262 (expand-file-name
263 name
264 (file-name-directory file))))))
265 (vc-file-setprop file 'vc-working-revision
266 (if (re-search-forward
267 "^initial revision: \\([0-9.]+\\).*\n"
268 nil t)
269 (match-string 1))))))
271 (defun vc-rcs-responsible-p (file)
272 "Return non-nil if RCS thinks it would be responsible for registering FILE."
273 ;; TODO: check for all the patterns in vc-rcs-master-templates
274 (file-directory-p (expand-file-name "RCS"
275 (if (file-directory-p file)
276 file
277 (file-name-directory file)))))
279 (defun vc-rcs-receive-file (file rev)
280 "Implementation of receive-file for RCS."
281 (let ((checkout-model (vc-rcs-checkout-model (list file))))
282 (vc-rcs-register file "")
283 (when (eq checkout-model 'implicit)
284 (vc-rcs-set-non-strict-locking file))
285 (vc-rcs-set-default-branch file (concat rev ".1"))))
287 (defun vc-rcs-unregister (file)
288 "Unregister FILE from RCS.
289 If this leaves the RCS subdirectory empty, ask the user
290 whether to remove it."
291 (let* ((master (vc-master-name file))
292 (dir (file-name-directory master))
293 (backup-info (find-backup-file-name master)))
294 (if (not backup-info)
295 (delete-file master)
296 (rename-file master (car backup-info) 'ok-if-already-exists)
297 (dolist (f (cdr backup-info)) (ignore-errors (delete-file f))))
298 (and (string= (file-name-nondirectory (directory-file-name dir)) "RCS")
299 ;; check whether RCS dir is empty, i.e. it does not
300 ;; contain any files except "." and ".."
301 (not (directory-files dir nil
302 "^\\([^.]\\|\\.[^.]\\|\\.\\.[^.]\\).*"))
303 (yes-or-no-p (format "Directory %s is empty; remove it? " dir))
304 (delete-directory dir))))
306 ;; It used to be possible to pass in a value for the variable rev, but
307 ;; nothing in the rest of VC used this capability. Removing it makes the
308 ;; backend interface simpler for all modes.
310 (defun vc-rcs-checkin (files comment)
311 "RCS-specific version of `vc-backend-checkin'."
312 (let (rev (switches (vc-switches 'RCS 'checkin)))
313 ;; Now operate on the files
314 (dolist (file (vc-expand-dirs files 'RCS))
315 (let ((old-version (vc-working-revision file)) new-version
316 (default-branch (vc-file-getprop file 'vc-rcs-default-branch)))
317 ;; Force branch creation if an appropriate
318 ;; default branch has been set.
319 (and default-branch
320 (string-match (concat "^" (regexp-quote old-version) "\\.")
321 default-branch)
322 (setq rev default-branch)
323 (setq switches (cons "-f" switches)))
324 (if old-version
325 (setq rev (vc-branch-part old-version))
326 (error "can't find current branch"))
327 (apply #'vc-do-command "*vc*" 0 "ci" (vc-master-name file)
328 ;; if available, use the secure check-in option
329 (and (vc-rcs-release-p "5.6.4") "-j")
330 (concat "-u" rev)
331 (concat "-m" comment)
332 switches)
333 (vc-file-setprop file 'vc-working-revision nil)
335 ;; determine the new workfile version
336 (set-buffer "*vc*")
337 (goto-char (point-min))
338 (when (or (re-search-forward
339 "new revision: \\([0-9.]+\\);" nil t)
340 (re-search-forward
341 "reverting to previous revision \\([0-9.]+\\)" nil t))
342 (setq new-version (match-string 1))
343 (vc-file-setprop file 'vc-working-revision new-version))
345 ;; if we got to a different branch, adjust the default
346 ;; branch accordingly
347 (cond
348 ((and old-version new-version
349 (not (string= (vc-branch-part old-version)
350 (vc-branch-part new-version))))
351 (vc-rcs-set-default-branch file
352 (if (vc-rcs-trunk-p new-version) nil
353 (vc-branch-part new-version)))
354 ;; If this is an old (pre-1992!) RCS release, we might have
355 ;; to remove a remaining lock.
356 (if (not (vc-rcs-release-p "5.6.2"))
357 ;; exit status of 1 is also accepted.
358 ;; It means that the lock was removed before.
359 (vc-do-command "*vc*" 1 "rcs" (vc-master-name file)
360 (concat "-u" old-version)))))))))
362 (defun vc-rcs-find-revision (file rev buffer)
363 (apply #'vc-do-command
364 (or buffer "*vc*") 0 "co" (vc-master-name file)
365 "-q" ;; suppress diagnostic output
366 (concat "-p" rev)
367 (vc-switches 'RCS 'checkout)))
369 (defun vc-rcs-checkout (file &optional rev)
370 "Retrieve a copy of a saved version of FILE. If FILE is a directory,
371 attempt the checkout for all registered files beneath it."
372 (if (file-directory-p file)
373 (mapc 'vc-rcs-checkout (vc-expand-dirs (list file) 'RCS))
374 (let ((file-buffer (get-file-buffer file))
375 switches)
376 (message "Checking out %s..." file)
377 (save-excursion
378 ;; Change buffers to get local value of vc-checkout-switches.
379 (if file-buffer (set-buffer file-buffer))
380 (setq switches (vc-switches 'RCS 'checkout))
381 ;; Save this buffer's default-directory
382 ;; and use save-excursion to make sure it is restored
383 ;; in the same buffer it was saved in.
384 (let ((default-directory default-directory))
385 (save-excursion
386 ;; Adjust the default-directory so that the check-out creates
387 ;; the file in the right place.
388 (setq default-directory (file-name-directory file))
389 (let (new-version)
390 ;; if we should go to the head of the trunk,
391 ;; clear the default branch first
392 (and rev (string= rev "")
393 (vc-rcs-set-default-branch file nil))
394 ;; now do the checkout
395 (apply #'vc-do-command
396 "*vc*" 0 "co" (vc-master-name file)
397 ;; If locking is not strict, force to overwrite
398 ;; the writable workfile.
399 (if (eq (vc-rcs-checkout-model (list file)) 'implicit) "-f")
400 "-l"
401 (if (stringp rev)
402 ;; a literal revision was specified
403 (concat "-r" rev)
404 (let ((workrev (vc-working-revision file)))
405 (if workrev
406 (concat "-r"
407 (if (not rev)
408 ;; no revision specified:
409 ;; use current workfile version
410 workrev
411 ;; REV is t ...
412 (if (not (vc-rcs-trunk-p workrev))
413 ;; ... go to head of current branch
414 (vc-branch-part workrev)
415 ;; ... go to head of trunk
416 (vc-rcs-set-default-branch file
417 nil)
418 ""))))))
419 switches)
420 ;; determine the new workfile version
421 (with-current-buffer "*vc*"
422 (setq new-version
423 (vc-parse-buffer "^revision \\([0-9.]+\\).*\n" 1)))
424 (vc-file-setprop file 'vc-working-revision new-version)
425 ;; if necessary, adjust the default branch
426 (and rev (not (string= rev ""))
427 (vc-rcs-set-default-branch
428 file
429 (if (vc-rcs-latest-on-branch-p file new-version)
430 (if (vc-rcs-trunk-p new-version) nil
431 (vc-branch-part new-version))
432 new-version)))))
433 (message "Checking out %s...done" file))))))
435 (defun vc-rcs-revert (file &optional _contents-done)
436 "Revert FILE to the version it was based on. If FILE is a directory,
437 revert all registered files beneath it."
438 (if (file-directory-p file)
439 (mapc 'vc-rcs-revert (vc-expand-dirs (list file) 'RCS))
440 (vc-do-command "*vc*" 0 "co" (vc-master-name file) "-f"
441 (concat (if (eq (vc-state file) 'edited) "-u" "-r")
442 (vc-working-revision file)))))
444 (defun vc-rcs-merge-file (file)
445 "Accept a file merge request, prompting for revisions."
446 (let* ((first-revision
447 (vc-read-revision
448 (concat "Merge " file " from branch or revision: ")
449 (list file)
450 'RCS))
451 second-revision)
452 (cond
453 ((string= first-revision "")
454 (error "A starting RCS revision is required"))
456 (if (not (vc-branch-p first-revision))
457 (setq second-revision
458 (vc-read-revision
459 "Second RCS revision: "
460 (list file) 'RCS nil
461 (concat (vc-branch-part first-revision) ".")))
462 ;; We want to merge an entire branch. Set revisions
463 ;; accordingly, so that vc-rcs-merge understands us.
464 (setq second-revision first-revision)
465 ;; first-revision must be the starting point of the branch
466 (setq first-revision (vc-branch-part first-revision)))))
467 (vc-rcs-merge file first-revision second-revision)))
469 (defun vc-rcs-merge (file first-version &optional second-version)
470 "Merge changes into current working copy of FILE.
471 The changes are between FIRST-VERSION and SECOND-VERSION."
472 (vc-do-command "*vc*" 1 "rcsmerge" (vc-master-name file)
473 "-kk" ; ignore keyword conflicts
474 (concat "-r" first-version)
475 (if second-version (concat "-r" second-version))))
477 (defun vc-rcs-steal-lock (file &optional rev)
478 "Steal the lock on the current workfile for FILE and revision REV.
479 If FILE is a directory, steal the lock on all registered files beneath it.
480 Needs RCS 5.6.2 or later for -M."
481 (if (file-directory-p file)
482 (mapc 'vc-rcs-steal-lock (vc-expand-dirs (list file) 'RCS))
483 (vc-do-command "*vc*" 0 "rcs" (vc-master-name file) "-M" (concat "-u" rev))
484 ;; Do a real checkout after stealing the lock, so that we see
485 ;; expanded headers.
486 (vc-do-command "*vc*" 0 "co" (vc-master-name file) "-f" (concat "-l" rev))
487 ;; Must clear any headers here because they wouldn't
488 ;; show that the file is locked now.
489 (let* ((filename (or file buffer-file-name))
490 (visited (find-buffer-visiting filename)))
491 (if visited
492 (let ((context (vc-buffer-context)))
493 ;; save-excursion may be able to relocate point and mark
494 ;; properly. If it fails, vc-restore-buffer-context
495 ;; will give it a second try.
496 (save-excursion
497 (vc-rcs-clear-headers))
498 (vc-restore-buffer-context context))
499 (set-buffer (find-file-noselect filename))
500 (vc-rcs-clear-headers)
501 (kill-buffer filename)))))
503 (defun vc-rcs-modify-change-comment (files rev comment)
504 "Modify the change comments change on FILES on a specified REV. If FILE is a
505 directory the operation is applied to all registered files beneath it."
506 (dolist (file (vc-expand-dirs files 'RCS))
507 (vc-do-command "*vc*" 0 "rcs" (vc-master-name file)
508 (concat "-m" rev ":" comment))))
512 ;;; History functions
515 (defun vc-rcs-print-log-cleanup ()
516 (let ((inhibit-read-only t))
517 (goto-char (point-max))
518 (forward-line -1)
519 (while (looking-at "=*\n")
520 (delete-char (- (match-end 0) (match-beginning 0)))
521 (forward-line -1))
522 (goto-char (point-min))
523 (when (looking-at "[\b\t\n\v\f\r ]+")
524 (delete-char (- (match-end 0) (match-beginning 0))))))
526 (defun vc-rcs-print-log (files buffer &optional _shortlog
527 _start-revision-ignored limit)
528 "Print commit log associated with FILES into specified BUFFER.
529 Remaining arguments are ignored.
530 If FILE is a directory the operation is applied to all registered
531 files beneath it."
532 (vc-do-command (or buffer "*vc*") 0 "rlog"
533 (mapcar 'vc-master-name (vc-expand-dirs files 'RCS)))
534 (with-current-buffer (or buffer "*vc*")
535 (vc-rcs-print-log-cleanup))
536 (when limit 'limit-unsupported))
538 (defun vc-rcs-diff (files &optional oldvers newvers buffer async)
539 "Get a difference report using RCS between two sets of files."
540 (apply #'vc-do-command (or buffer "*vc-diff*")
541 (if async 'async 1)
542 "rcsdiff" (vc-expand-dirs files 'RCS)
543 (append (list "-q"
544 (and oldvers (concat "-r" oldvers))
545 (and newvers (concat "-r" newvers)))
546 (vc-switches 'RCS 'diff))))
548 (defun vc-rcs-find-admin-dir (file)
549 "Return the administrative directory of FILE."
550 (vc-find-root file "RCS"))
552 (defun vc-rcs-comment-history (file)
553 "Return a string with all log entries stored in BACKEND for FILE."
554 (with-current-buffer "*vc*"
555 ;; Has to be written this way, this function is used by the CVS backend too
556 (vc-call-backend (vc-backend file) 'print-log (list file))
557 ;; Remove cruft
558 (let ((separator (concat "^-+\nrevision [0-9.]+\ndate: .*\n"
559 "\\(branches: .*;\n\\)?"
560 "\\(\\*\\*\\* empty log message \\*\\*\\*\n\\)?")))
561 (goto-char (point-max)) (forward-line -1)
562 (while (looking-at "=*\n")
563 (delete-char (- (match-end 0) (match-beginning 0)))
564 (forward-line -1))
565 (goto-char (point-min))
566 (if (looking-at "[\b\t\n\v\f\r ]+")
567 (delete-char (- (match-end 0) (match-beginning 0))))
568 (goto-char (point-min))
569 (re-search-forward separator nil t)
570 (delete-region (point-min) (point))
571 (while (re-search-forward separator nil t)
572 (delete-region (match-beginning 0) (match-end 0))))
573 ;; Return the de-crufted comment list
574 (buffer-string)))
576 (defun vc-rcs-annotate-command (file buffer &optional revision)
577 "Annotate FILE, inserting the results in BUFFER.
578 Optional arg REVISION is a revision to annotate from."
579 (vc-setup-buffer buffer)
580 ;; Aside from the "head revision on the trunk", the instructions for
581 ;; each revision on the trunk are an ordered list of kill and insert
582 ;; commands necessary to go from the chronologically-following
583 ;; revision to this one. That is, associated with revision N are
584 ;; edits that applied to revision N+1 would result in revision N.
586 ;; On a branch, however, (some) things are inverted: the commands
587 ;; listed are those necessary to go from the chronologically-preceding
588 ;; revision to this one. That is, associated with revision N are
589 ;; edits that applied to revision N-1 would result in revision N.
591 ;; So, to get per-line history info, we apply reverse-chronological
592 ;; edits, starting with the head revision on the trunk, all the way
593 ;; back through the initial revision (typically "1.1" or similar),
594 ;; then apply forward-chronological edits -- keeping track of which
595 ;; revision is associated with each inserted line -- until we reach
596 ;; the desired revision for display (which may be either on the trunk
597 ;; or on a branch).
598 (let* ((tree (with-temp-buffer
599 (insert-file-contents (vc-rcs-registered file))
600 (vc-rcs-parse)))
601 (revisions (cdr (assq 'revisions tree)))
602 ;; The revision N whose instructions we currently are processing.
603 (cur (cdr (assq 'head (cdr (assq 'headers tree)))))
604 ;; Alist from the parse tree for N.
605 (meta (cdr (assoc cur revisions)))
606 ;; Point and temporary string, respectively.
608 ;; "Next-branch list". Nil means the desired revision to
609 ;; display lives on the trunk. Non-nil means it lives on a
610 ;; branch, in which case the value is a list of revision pairs
611 ;; (PARENT . CHILD), the first PARENT being on the trunk, that
612 ;; links each series of revisions in the path from the initial
613 ;; revision to the desired revision to display.
614 nbls
615 ;; "Path-accumulate-predicate plus revision/date/author".
616 ;; Until set, forward-chronological edits are not accumulated.
617 ;; Once set, its value (updated every revision) is used for
618 ;; the text property `:vc-rcs-r/d/a' for inserts during
619 ;; processing of forward-chronological instructions for N.
620 ;; See internal func `r/d/a'.
621 prda
622 ;; List of forward-chronological instructions, each of the
623 ;; form: (POS . ACTION), where POS is a buffer position. If
624 ;; ACTION is a string, it is inserted, otherwise it is taken as
625 ;; the number of characters to be deleted.
626 path
627 ;; N+1. When `cur' is "", this is the initial revision.
628 pre)
629 (unless revision
630 (setq revision cur))
631 (unless (assoc revision revisions)
632 (error "No such revision: %s" revision))
633 ;; Find which branches (if any) must be included in the edits.
634 (let ((par revision)
635 bpt kids)
636 (while (setq bpt (vc-branch-part par)
637 par (vc-branch-part bpt))
638 (setq kids (cdr (assq 'branches (cdr (assoc par revisions)))))
639 ;; A branchpoint may have multiple children. Find the right one.
640 (while (not (string= bpt (vc-branch-part (car kids))))
641 (setq kids (cdr kids)))
642 (push (cons par (car kids)) nbls)))
643 ;; Start with the full text.
644 (set-buffer buffer)
645 (insert (cdr (assq 'text meta)))
646 ;; Apply reverse-chronological edits on the trunk, computing and
647 ;; accumulating forward-chronological edits after some point, for
648 ;; later.
649 (cl-flet ((r/d/a () (vector pre
650 (cdr (assq 'date meta))
651 (cdr (assq 'author meta)))))
652 (while (when (setq pre cur cur (cdr (assq 'next meta)))
653 (not (string= "" cur)))
654 (setq
655 ;; Start accumulating the forward-chronological edits when N+1
656 ;; on the trunk is either the desired revision to display, or
657 ;; the appropriate branchpoint for it. Do this before
658 ;; updating `meta' since `r/d/a' uses N+1's `meta' value.
659 prda (when (or prda (string= (if nbls (caar nbls) revision) pre))
660 (r/d/a))
661 meta (cdr (assoc cur revisions)))
662 ;; Edits in the parse tree specify a line number (in the buffer
663 ;; *BEFORE* editing occurs) to start from, but line numbers
664 ;; change as a result of edits. To DTRT, we apply edits in
665 ;; order of descending buffer position so that edits further
666 ;; down in the buffer occur first w/o corrupting specified
667 ;; buffer positions of edits occurring towards the beginning of
668 ;; the buffer. In this way we avoid using markers. A pleasant
669 ;; property of this approach is ability to push instructions
670 ;; onto `path' directly, w/o need to maintain rev boundaries.
671 (dolist (insn (cdr (assq :insn meta)))
672 (goto-char (point-min))
673 (forward-line (1- (pop insn)))
674 (setq p (point))
675 (pcase (pop insn)
676 (`k (setq s (buffer-substring-no-properties
677 p (progn (forward-line (car insn))
678 (point))))
679 (when prda
680 (push `(,p . ,(propertize s :vc-rcs-r/d/a prda)) path))
681 (delete-region p (point)))
682 (`i (setq s (car insn))
683 (when prda
684 (push `(,p . ,(length s)) path))
685 (insert s)))))
686 ;; For the initial revision, setting `:vc-rcs-r/d/a' directly is
687 ;; equivalent to pushing an insert instruction (of the entire buffer
688 ;; contents) onto `path' then erasing the buffer, but less wasteful.
689 (put-text-property (point-min) (point-max) :vc-rcs-r/d/a (r/d/a))
690 ;; Now apply the forward-chronological edits for the trunk.
691 (dolist (insn path)
692 (goto-char (pop insn))
693 (if (stringp insn)
694 (insert insn)
695 (delete-char insn)))
696 ;; Now apply the forward-chronological edits (directly from the
697 ;; parse-tree) for the branch(es), if necessary. We re-use vars
698 ;; `pre' and `meta' for the sake of internal func `r/d/a'.
699 (while nbls
700 (setq pre (cdr (pop nbls)))
701 (while (progn
702 (setq meta (cdr (assoc pre revisions))
703 prda nil)
704 (dolist (insn (cdr (assq :insn meta)))
705 (goto-char (point-min))
706 (forward-line (1- (pop insn)))
707 (pcase (pop insn)
708 (`k (delete-region
709 (point) (progn (forward-line (car insn))
710 (point))))
711 (`i (insert (propertize
712 (car insn)
713 :vc-rcs-r/d/a
714 (or prda (setq prda (r/d/a))))))))
715 (prog1 (not (string= (if nbls (caar nbls) revision) pre))
716 (setq pre (cdr (assq 'next meta)))))))))
717 ;; Lastly, for each line, insert at bol nicely-formatted history info.
718 ;; We do two passes to collect summary information used to minimize
719 ;; the annotation's usage of screen real-estate: (1) Consider rendered
720 ;; width of revision plus author together as a unit; and (2) Omit
721 ;; author entirely if all authors are the same as the user.
722 (let ((ht (make-hash-table :test 'eq))
723 (me (user-login-name))
724 (maxw 0)
725 (all-me t)
726 rda w a)
727 (goto-char (point-max))
728 (while (not (bobp))
729 (forward-line -1)
730 (setq rda (get-text-property (point) :vc-rcs-r/d/a))
731 (unless (gethash rda ht)
732 (setq a (aref rda 2)
733 all-me (and all-me (string= a me)))
734 (puthash rda (setq w (+ (length (aref rda 0))
735 (length a)))
737 (setq maxw (max w maxw))))
738 (let ((padding (make-string maxw 32)))
739 (cl-flet ((pad (w) (substring-no-properties padding w))
740 (render (rda &rest ls)
741 (propertize
742 (apply #'concat
743 (format-time-string "%Y-%m-%d" (aref rda 1))
745 (aref rda 0)
747 :vc-annotate-prefix t
748 :vc-rcs-r/d/a rda)))
749 (maphash
750 (if all-me
751 (lambda (rda w)
752 (puthash rda (render rda (pad w) ": ") ht))
753 (lambda (rda w)
754 (puthash rda (render rda " " (pad w) " " (aref rda 2) ": ") ht)))
755 ht)))
756 (while (not (eobp))
757 (insert (gethash (get-text-property (point) :vc-rcs-r/d/a) ht))
758 (forward-line 1))))
760 (declare-function vc-annotate-convert-time "vc-annotate" (time))
762 (defun vc-rcs-annotate-current-time ()
763 "Return the current time, based at midnight of the current day, and
764 encoded as fractional days."
765 (vc-annotate-convert-time
766 (apply #'encode-time 0 0 0 (nthcdr 3 (decode-time)))))
768 (defun vc-rcs-annotate-time ()
769 "Return the time of the next annotation (as fraction of days)
770 systime, or nil if there is none. Also, reposition point."
771 (unless (eobp)
772 (prog1 (vc-annotate-convert-time
773 (aref (get-text-property (point) :vc-rcs-r/d/a) 1))
774 (goto-char (next-single-property-change (point) :vc-annotate-prefix)))))
776 (defun vc-rcs-annotate-extract-revision-at-line ()
777 (aref (get-text-property (point) :vc-rcs-r/d/a) 0))
781 ;;; Tag system
784 (autoload 'vc-tag-precondition "vc")
785 (declare-function vc-file-tree-walk "vc" (dirname func &rest args))
787 (defun vc-rcs-create-tag (dir name branchp)
788 (when branchp
789 (error "RCS backend does not support module branches"))
790 (let ((result (vc-tag-precondition dir)))
791 (if (stringp result)
792 (error "File %s is not up-to-date" result)
793 (vc-file-tree-walk
795 (lambda (f)
796 (vc-do-command "*vc*" 0 "rcs" (vc-master-name f) (concat "-n" name ":")))))))
800 ;;; Miscellaneous
803 (defun vc-rcs-trunk-p (rev)
804 "Return t if REV is a revision on the trunk."
805 (not (eq nil (string-match "\\`[0-9]+\\.[0-9]+\\'" rev))))
807 (defun vc-rcs-minor-part (rev)
808 "Return the minor revision number of a revision number REV."
809 (string-match "[0-9]+\\'" rev)
810 (substring rev (match-beginning 0) (match-end 0)))
812 (defun vc-rcs-previous-revision (_file rev)
813 "Return the revision number immediately preceding REV for FILE,
814 or nil if there is no previous revision. This default
815 implementation works for MAJOR.MINOR-style revision numbers as
816 used by RCS and CVS."
817 (let ((branch (vc-branch-part rev))
818 (minor-num (string-to-number (vc-rcs-minor-part rev))))
819 (when branch
820 (if (> minor-num 1)
821 ;; revision does probably not start a branch or release
822 (concat branch "." (number-to-string (1- minor-num)))
823 (if (vc-rcs-trunk-p rev)
824 ;; we are at the beginning of the trunk --
825 ;; don't know anything to return here
827 ;; we are at the beginning of a branch --
828 ;; return revision of starting point
829 (vc-branch-part branch))))))
831 (defun vc-rcs-next-revision (file rev)
832 "Return the revision number immediately following REV for FILE,
833 or nil if there is no next revision. This default implementation
834 works for MAJOR.MINOR-style revision numbers as used by RCS
835 and CVS."
836 (when (not (string= rev (vc-working-revision file)))
837 (let ((branch (vc-branch-part rev))
838 (minor-num (string-to-number (vc-rcs-minor-part rev))))
839 (concat branch "." (number-to-string (1+ minor-num))))))
841 ;; You might think that this should be distributed with RCS, but
842 ;; apparently not. CVS sometimes provides a version of it.
843 ;; http://lists.gnu.org/archive/html/emacs-devel/2014-05/msg00288.html
844 (defvar vc-rcs-rcs2log-program
845 (let (exe)
846 (cond ((file-executable-p
847 (setq exe (expand-file-name "rcs2log" exec-directory)))
848 exe)
849 ;; In the unlikely event that someone is running an
850 ;; uninstalled Emacs and wants to do something RCS-related.
851 ((file-executable-p
852 (setq exe (expand-file-name "lib-src/rcs2log" source-directory)))
853 exe)
854 (t "rcs2log")))
855 "Path to the `rcs2log' program (normally in `exec-directory').")
857 (autoload 'vc-buffer-sync "vc-dispatcher")
859 (defun vc-rcs-update-changelog (files)
860 "Default implementation of update-changelog.
861 Uses `rcs2log' which only works for RCS and CVS."
862 ;; FIXME: We (c|sh)ould add support for cvs2cl
863 (let ((odefault default-directory)
864 (changelog (find-change-log))
865 ;; Presumably not portable to non-Unixy systems, along with rcs2log:
866 (tempfile (make-temp-file
867 (expand-file-name "vc"
868 (or small-temporary-file-directory
869 temporary-file-directory))))
870 (login-name (or user-login-name
871 (format "uid%d" (number-to-string (user-uid)))))
872 (full-name (or add-log-full-name
873 (user-full-name)
874 (user-login-name)
875 (format "uid%d" (number-to-string (user-uid)))))
876 (mailing-address (or add-log-mailing-address
877 user-mail-address)))
878 (find-file-other-window changelog)
879 (barf-if-buffer-read-only)
880 (vc-buffer-sync)
881 (undo-boundary)
882 (goto-char (point-min))
883 (push-mark)
884 (message "Computing change log entries...")
885 (message "Computing change log entries... %s"
886 (unwind-protect
887 (progn
888 (setq default-directory odefault)
889 (if (eq 0 (apply #'call-process vc-rcs-rcs2log-program
890 nil (list t tempfile) nil
891 "-c" changelog
892 "-u" (concat login-name
893 "\t" full-name
894 "\t" mailing-address)
895 (mapcar
896 (lambda (f)
897 (file-relative-name
898 (expand-file-name f odefault)))
899 files)))
900 "done"
901 (pop-to-buffer (get-buffer-create "*vc*"))
902 (erase-buffer)
903 (insert-file-contents tempfile)
904 "failed"))
905 (setq default-directory (file-name-directory changelog))
906 (delete-file tempfile)))))
908 (defun vc-rcs-check-headers ()
909 "Check if the current file has any headers in it."
910 (save-excursion
911 (goto-char (point-min))
912 (re-search-forward "\\$[A-Za-z\300-\326\330-\366\370-\377]+\
913 \\(: [\t -#%-\176\240-\377]*\\)?\\$" nil t)))
915 (defun vc-rcs-clear-headers ()
916 "Clear RCS header value parts."
917 (let ((case-fold-search nil))
918 (goto-char (point-min))
919 (while (re-search-forward
920 (concat "\\$\\(Author\\|Date\\|Header\\|Id\\|Locker\\|Name\\|"
921 "RCSfile\\|Revision\\|Source\\|State\\): [^$\n]+\\$")
922 nil t)
923 (replace-match "$\\1$"))))
925 (autoload 'vc-rename-master "vc-filewise")
927 (defun vc-rcs-rename-file (old new)
928 ;; Just move the master file (using vc-rcs-master-templates).
929 (vc-rename-master (vc-master-name old) new vc-rcs-master-templates))
931 (defun vc-rcs-find-file-hook ()
932 ;; If the file is locked by some other user, make
933 ;; the buffer read-only. Like this, even root
934 ;; cannot modify a file that someone else has locked.
935 (and (stringp (vc-state buffer-file-name 'RCS))
936 (setq buffer-read-only t)))
940 ;;; Internal functions
943 (defun vc-rcs-workfile-is-newer (file)
944 "Return non-nil if FILE is newer than its RCS master.
945 This likely means that FILE has been changed with respect
946 to its master version."
947 (let ((file-time (nth 5 (file-attributes file)))
948 (master-time (nth 5 (file-attributes (vc-master-name file)))))
949 (or (> (nth 0 file-time) (nth 0 master-time))
950 (and (= (nth 0 file-time) (nth 0 master-time))
951 (> (nth 1 file-time) (nth 1 master-time))))))
953 (defun vc-rcs-find-most-recent-rev (branch)
954 "Find most recent revision on BRANCH."
955 (goto-char (point-min))
956 (let ((latest-rev -1) value)
957 (while (re-search-forward (concat "^\\(" (regexp-quote branch)
958 "\\.\\([0-9]+\\)\\)\ndate[ \t]+[0-9.]+;")
959 nil t)
960 (let ((rev (string-to-number (match-string 2))))
961 (when (< latest-rev rev)
962 (setq latest-rev rev)
963 (setq value (match-string 1)))))
964 (or value
965 (vc-branch-part branch))))
967 (defun vc-rcs-fetch-master-state (file &optional working-revision)
968 "Compute the master file's idea of the state of FILE.
969 If a WORKING-REVISION is given, compute the state of that version,
970 otherwise determine the workfile version based on the master file.
971 This function sets the properties `vc-working-revision' and
972 `vc-checkout-model' to their correct values, based on the master
973 file."
974 (with-temp-buffer
975 (if (or (not (vc-insert-file (vc-master-name file) "^[0-9]"))
976 (progn (goto-char (point-min))
977 (not (looking-at "^head[ \t\n]+[^;]+;$"))))
978 (error "File %s is not an RCS master file" (vc-master-name file)))
979 (let ((workfile-is-latest nil)
980 (default-branch (vc-parse-buffer "^branch[ \t\n]+\\([^;]*\\);" 1)))
981 (vc-file-setprop file 'vc-rcs-default-branch default-branch)
982 (unless working-revision
983 ;; Workfile version not known yet. Determine that first. It
984 ;; is either the head of the trunk, the head of the default
985 ;; branch, or the "default branch" itself, if that is a full
986 ;; revision number.
987 (cond
988 ;; no default branch
989 ((or (not default-branch) (string= "" default-branch))
990 (setq working-revision
991 (vc-parse-buffer "^head[ \t\n]+\\([^;]+\\);" 1))
992 (setq workfile-is-latest t))
993 ;; default branch is actually a revision
994 ((string-match "^[0-9]+\\.[0-9]+\\(\\.[0-9]+\\.[0-9]+\\)*$"
995 default-branch)
996 (setq working-revision default-branch))
997 ;; else, search for the head of the default branch
998 (t (vc-insert-file (vc-master-name file) "^desc")
999 (setq working-revision
1000 (vc-rcs-find-most-recent-rev default-branch))
1001 (setq workfile-is-latest t)))
1002 (vc-file-setprop file 'vc-working-revision working-revision))
1003 ;; Check strict locking
1004 (goto-char (point-min))
1005 (vc-file-setprop file 'vc-checkout-model
1006 (if (re-search-forward ";[ \t\n]*strict;" nil t)
1007 'locking 'implicit))
1008 ;; Compute state of workfile version
1009 (goto-char (point-min))
1010 (let ((locking-user
1011 (vc-parse-buffer (concat "^locks[ \t\n]+[^;]*[ \t\n]+\\([^:]+\\):"
1012 (regexp-quote working-revision)
1013 "[^0-9.]")
1014 1)))
1015 (cond
1016 ;; not locked
1017 ((not locking-user)
1018 (if (or workfile-is-latest
1019 (vc-rcs-latest-on-branch-p file working-revision))
1020 ;; workfile version is latest on branch
1021 'up-to-date
1022 ;; workfile version is not latest on branch
1023 'needs-update))
1024 ;; locked by the calling user
1025 ((and (stringp locking-user)
1026 (string= locking-user (vc-user-login-name file)))
1027 ;; Don't call `vc-rcs-checkout-model' to avoid inf-looping.
1028 (if (or (eq (vc-file-getprop file 'vc-checkout-model) 'locking)
1029 workfile-is-latest
1030 (vc-rcs-latest-on-branch-p file working-revision))
1031 'edited
1032 ;; Locking is not used for the file, but the owner does
1033 ;; have a lock, and there is a higher version on the current
1034 ;; branch. Not sure if this can occur, and if it is right
1035 ;; to use `needs-merge' in this case.
1036 'needs-merge))
1037 ;; locked by somebody else
1038 ((stringp locking-user)
1039 locking-user)
1041 (error "Error getting state of RCS file")))))))
1043 (defun vc-rcs-consult-headers (file)
1044 "Search for RCS headers in FILE, and set properties accordingly.
1046 Returns: nil if no headers were found
1047 'rev if a workfile revision was found
1048 'rev-and-lock if revision and lock info was found"
1049 (cond
1050 ((not (get-file-buffer file)) nil)
1051 ((let (status version)
1052 (with-current-buffer (get-file-buffer file)
1053 (save-excursion
1054 (goto-char (point-min))
1055 (cond
1056 ;; search for $Id or $Header
1057 ;; -------------------------
1058 ;; The `\ 's below avoid an RCS 5.7 bug when checking in this file.
1059 ((or (and (search-forward "$Id\ : " nil t)
1060 (looking-at "[^ ]+ \\([0-9.]+\\) "))
1061 (and (progn (goto-char (point-min))
1062 (search-forward "$Header\ : " nil t))
1063 (looking-at "[^ ]+ \\([0-9.]+\\) ")))
1064 (goto-char (match-end 0))
1065 ;; if found, store the revision number ...
1066 (setq version (match-string-no-properties 1))
1067 ;; ... and check for the locking state
1068 (cond
1069 ((looking-at
1070 (concat "[0-9]+[/-][01][0-9][/-][0-3][0-9] " ; date
1071 "[0-2][0-9]:[0-5][0-9]+:[0-6][0-9]+\\([+-][0-9:]+\\)? " ; time
1072 "[^ ]+ [^ ]+ ")) ; author & state
1073 (goto-char (match-end 0)) ; [0-6] in regexp handles leap seconds
1074 (cond
1075 ;; unlocked revision
1076 ((looking-at "\\$")
1077 ;;(setq locking-user 'none)
1078 (setq status 'rev-and-lock))
1079 ;; revision is locked by some user
1080 ((looking-at "\\([^ ]+\\) \\$")
1081 ;;(setq locking-user (match-string-no-properties 1))
1082 (setq status 'rev-and-lock))
1083 ;; everything else: false
1084 (nil)))
1085 ;; unexpected information in
1086 ;; keyword string --> quit
1087 (nil)))
1088 ;; search for $Revision
1089 ;; --------------------
1090 ((re-search-forward (concat "\\$"
1091 "Revision: \\([0-9.]+\\) \\$")
1092 nil t)
1093 ;; if found, store the revision number ...
1094 (setq version (match-string-no-properties 1))
1095 ;; and see if there's any lock information
1096 (goto-char (point-min))
1097 (if (re-search-forward (concat "\\$" "Locker:") nil t)
1098 (cond ((looking-at " \\([^ ]+\\) \\$")
1099 ;;(setq locking-user (match-string-no-properties 1))
1100 (setq status 'rev-and-lock))
1101 ((looking-at " *\\$")
1102 ;;(setq locking-user 'none)
1103 (setq status 'rev-and-lock))
1105 ;;(setq locking-user 'none)
1106 (setq status 'rev-and-lock)))
1107 (setq status 'rev)))
1108 ;; else: nothing found
1109 ;; -------------------
1110 (t nil))))
1111 (if status (vc-file-setprop file 'vc-working-revision version))
1112 status))))
1114 (defun vc-release-greater-or-equal (r1 r2)
1115 "Compare release numbers, represented as strings.
1116 Release components are assumed cardinal numbers, not decimal fractions
1117 \(5.10 is a higher release than 5.9\). Omitted fields are considered
1118 lower \(5.6.7 is earlier than 5.6.7.1\). Comparison runs till the end
1119 of the string is found, or a non-numeric component shows up \(5.6.7 is
1120 earlier than \"5.6.7 beta\", which is probably not what you want in
1121 some cases\). This code is suitable for existing RCS release numbers.
1122 CVS releases are handled reasonably, too \(1.3 < 1.4* < 1.5\)."
1123 (let (v1 v2 i1 i2)
1124 (catch 'done
1125 (or (and (string-match "^\\.?\\([0-9]+\\)" r1)
1126 (setq i1 (match-end 0))
1127 (setq v1 (string-to-number (match-string 1 r1)))
1128 (or (and (string-match "^\\.?\\([0-9]+\\)" r2)
1129 (setq i2 (match-end 0))
1130 (setq v2 (string-to-number (match-string 1 r2)))
1131 (if (> v1 v2) (throw 'done t)
1132 (if (< v1 v2) (throw 'done nil)
1133 (throw 'done
1134 (vc-release-greater-or-equal
1135 (substring r1 i1)
1136 (substring r2 i2)))))))
1137 (throw 'done t)))
1138 (or (and (string-match "^\\.?\\([0-9]+\\)" r2)
1139 (throw 'done nil))
1140 (throw 'done t)))))
1142 (defun vc-rcs-release-p (release)
1143 "Return t if we have RELEASE or better."
1144 (let ((installation (vc-rcs-system-release)))
1145 (if (and installation
1146 (not (eq installation 'unknown)))
1147 (vc-release-greater-or-equal installation release))))
1149 (defun vc-rcs-system-release ()
1150 "Return the RCS release installed on this system, as a string.
1151 Return symbol `unknown' if the release cannot be deducted. The user can
1152 override this using variable `vc-rcs-release'.
1154 If the user has not set variable `vc-rcs-release' and it is nil,
1155 variable `vc-rcs-release' is set to the returned value."
1156 (or vc-rcs-release
1157 (setq vc-rcs-release
1158 (or (and (zerop (vc-do-command "*vc*" nil "rcs" nil "-V"))
1159 (with-current-buffer (get-buffer "*vc*")
1160 (vc-parse-buffer "^RCS version \\([0-9.]+ *.*\\)" 1)))
1161 'unknown))))
1163 (defun vc-rcs-set-non-strict-locking (file)
1164 (vc-do-command "*vc*" 0 "rcs" file "-U")
1165 (vc-file-setprop file 'vc-checkout-model 'implicit)
1166 (set-file-modes file (logior (file-modes file) 128)))
1168 (defun vc-rcs-set-default-branch (file branch)
1169 (vc-do-command "*vc*" 0 "rcs" (vc-master-name file) (concat "-b" branch))
1170 (vc-file-setprop file 'vc-rcs-default-branch branch))
1172 (defun vc-rcs-parse (&optional buffer)
1173 "Parse current buffer, presumed to be in RCS-style masterfile format.
1174 Optional arg BUFFER specifies another buffer to parse. Return an alist
1175 of two elements, w/ keys `headers' and `revisions' and values in turn
1176 sub-alists. For `headers', the values unless otherwise specified are
1177 strings and the keys are:
1179 desc -- description
1180 head -- latest revision
1181 branch -- the branch the \"head revision\" lies on;
1182 absent if the head revision lies on the trunk
1183 access -- ???
1184 symbols -- sub-alist of (SYMBOL . REVISION) elements
1185 locks -- if file is checked out, something like \"ttn:1.7\"
1186 strict -- t if \"strict locking\" is in effect, otherwise nil
1187 comment -- may be absent; typically something like \"# \" or \"; \"
1188 expand -- may be absent; ???
1190 For `revisions', the car is REVISION (string), the cdr a sub-alist,
1191 with string values (unless otherwise specified) and keys:
1193 date -- a time value (like that returned by `encode-time'); as a
1194 special case, a year value less than 100 is augmented by 1900
1195 author -- username
1196 state -- typically \"Exp\" or \"Rel\"
1197 branches -- list of revisions that begin branches from this revision
1198 next -- on the trunk: the chronologically-preceding revision, or \"\";
1199 on a branch: the chronologically-following revision, or \"\"
1200 log -- change log entry
1201 text -- for the head revision on the trunk, the body of the file;
1202 other revisions have `:insn' instead
1203 :insn -- for non-head revisions, a list of parsed instructions
1204 in one of two forms, in both cases START meaning \"first
1205 go to line START\":
1206 - `(START k COUNT)' -- kill COUNT lines
1207 - `(START i TEXT)' -- insert TEXT (a string)
1208 The list is in descending order by START.
1210 The `:insn' key is a keyword to distinguish it as a vc-rcs.el extension."
1211 (setq buffer (get-buffer (or buffer (current-buffer))))
1212 (set-buffer buffer)
1213 ;; An RCS masterfile can be viewed as containing four regular (for the
1214 ;; most part) sections: (a) the "headers", (b) the "rev headers", (c)
1215 ;; the "description" and (d) the "rev bodies", in that order. In the
1216 ;; returned alist (see docstring), elements from (b) and (d) are
1217 ;; combined pairwise to form the "revisions", while those from (a) and
1218 ;; (c) are simply combined to form the "headers".
1220 ;; Loosely speaking, each section contains a series of alternating
1221 ;; "tags" and "printed representations". In the (b) and (d), many
1222 ;; such series can appear, and a revision number on a line by itself
1223 ;; precedes the series of tags and printed representations associated
1224 ;; with it.
1226 ;; In (a) and (b), the printed representations (with the exception of
1227 ;; the `comment' tag in the headers) terminate with a semicolon, which
1228 ;; is NOT part of the "value" finally associated with the tag. All
1229 ;; other printed representations are in "@@-format"; there is an "@",
1230 ;; the middle part (to be translated into the value), another "@" and
1231 ;; a newline. Each "@@" in the middle part indicates the position of
1232 ;; a single "@" (and consequently the requirement of an additional
1233 ;; initial step when translating to the value).
1235 ;; Parser state includes vars that collect parts of the return value...
1236 (let ((desc nil) (headers nil) (revs nil)
1237 ;; ... as well as vars that support a single-pass, tag-assisted,
1238 ;; minimal-data-copying scan. Basically -- skirting around the
1239 ;; grouping by revision required in (b) and (d) -- we repeatedly
1240 ;; and context-sensitively read a tag (that MUST be present),
1241 ;; determine the bounds of the printed representation, translate
1242 ;; it into a value, and push the tag plus value onto one of the
1243 ;; collection vars. Finally, we return the parse tree
1244 ;; incorporating the values of the collection vars (see "rv").
1246 ;; A symbol or string to keep track of context (for error messages).
1247 context
1248 ;; A symbol, the current tag.
1250 ;; Region (begin and end buffer positions) of the printed
1251 ;; representation for the current tag.
1253 ;; A list of buffer positions where "@@" can be found within the
1254 ;; printed representation region. For each location, we push two
1255 ;; elements onto the list, 1+ and 2+ the location, respectively,
1256 ;; with the 2+ appearing at the head. In this way, the expression
1257 ;; `(,e ,@@-holes ,b)
1258 ;; describes regions that can be concatenated (in reverse order)
1259 ;; to "de-@@-format" the printed representation as the first step
1260 ;; to translating it into some value. See internal func `gather'.
1261 @-holes)
1262 (cl-flet*
1263 ((sw () (skip-chars-forward " \t\n")) ; i.e., `[:space:]'
1264 (at (tag) (save-excursion (eq tag (read buffer))))
1265 (to-eol () (buffer-substring-no-properties
1266 (point) (progn (forward-line 1)
1267 (1- (point)))))
1268 (to-semi () (setq b (point)
1269 e (progn (search-forward ";")
1270 (1- (point)))))
1271 (to-one@ () (setq @-holes nil
1272 b (progn (search-forward "@") (point))
1273 e (progn (while (and (search-forward "@")
1274 (= ?@ (char-after)))
1275 (push (point) @-holes)
1276 (forward-char 1)
1277 (push (point) @-holes))
1278 (1- (point)))))
1279 (tok+val (set-b+e name &optional proc)
1280 (unless (eq name (setq tok (read buffer)))
1281 (error "Missing `%s' while parsing %s" name context))
1282 (sw)
1283 (funcall set-b+e)
1284 (cons tok (if proc
1285 (funcall proc)
1286 (buffer-substring-no-properties b e))))
1287 (k-semi (name &optional proc) (tok+val #'to-semi name proc))
1288 (gather (b e @-holes)
1289 (let ((pairs `(,e ,@@-holes ,b))
1290 acc)
1291 (while pairs
1292 (push (buffer-substring-no-properties
1293 (cadr pairs) (car pairs))
1294 acc)
1295 (setq pairs (cddr pairs)))
1296 (apply #'concat acc)))
1297 (gather1 () (gather b e @-holes))
1298 (k-one@ (name &optional later)
1299 (tok+val #'to-one@ name (if later (lambda () t) #'gather1))))
1300 (save-excursion
1301 (goto-char (point-min))
1302 ;; headers
1303 (setq context 'headers)
1304 (cl-flet ((hpush (name &optional proc)
1305 (push (k-semi name proc) headers)))
1306 (hpush 'head)
1307 (when (at 'branch)
1308 (hpush 'branch))
1309 (hpush 'access)
1310 (hpush 'symbols
1311 (lambda ()
1312 (mapcar (lambda (together)
1313 (let ((two (split-string together ":")))
1314 (setcar two (intern (car two)))
1315 (setcdr two (cadr two))
1316 two))
1317 (split-string
1318 (buffer-substring-no-properties b e)))))
1319 (hpush 'locks))
1320 (push `(strict . ,(when (at 'strict)
1321 (search-forward ";")
1323 headers)
1324 (when (at 'comment)
1325 (push (k-one@ 'comment) headers)
1326 (search-forward ";"))
1327 (when (at 'expand)
1328 (push (k-one@ 'expand) headers)
1329 (search-forward ";"))
1330 (setq headers (nreverse headers))
1331 ;; rev headers
1332 (sw) (setq context 'rev-headers)
1333 (while (looking-at "[0-9]")
1334 (push `(,(to-eol)
1335 ,(k-semi 'date
1336 (lambda ()
1337 (let ((ls (mapcar 'string-to-number
1338 (split-string
1339 (buffer-substring-no-properties
1340 b e)
1341 "\\."))))
1342 ;; Hack the year -- verified to be the
1343 ;; same algorithm used in RCS 5.7.
1344 (when (< (car ls) 100)
1345 (setcar ls (+ 1900 (car ls))))
1346 (apply #'encode-time (nreverse ls)))))
1347 ,@(mapcar #'k-semi '(author state))
1348 ,(k-semi 'branches
1349 (lambda ()
1350 (split-string
1351 (buffer-substring-no-properties b e))))
1352 ,(k-semi 'next))
1353 revs)
1354 (sw))
1355 (setq revs (nreverse revs))
1356 ;; desc
1357 (sw) (setq context 'desc
1358 desc (k-one@ 'desc))
1359 ;; rev bodies
1360 (let (acc
1361 ;; Element of `revs' that initially holds only header info.
1362 ;; "Pairwise combination" occurs when we add body info.
1364 ;; Components of the editing commands (aside from the actual
1365 ;; text) that comprise the `text' printed representations
1366 ;; (not including the "head" revision).
1367 cmd start act
1368 ;; Ascending (reversed) `@-holes' which the internal func
1369 ;; `incg' pops to effect incremental gathering.
1371 ;; Function to extract text (for the `a' command), either
1372 ;; `incg' or `buffer-substring-no-properties'. (This is
1373 ;; for speed; strictly speaking, it is sufficient to use
1374 ;; only the former since it behaves identically to the
1375 ;; latter in the absence of "@@".)
1376 sub)
1377 (cl-flet ((incg (beg end)
1378 (let ((b beg) (e end) @-holes)
1379 (while (and asc (< (car asc) e))
1380 (push (pop asc) @-holes)
1381 (push (pop asc) @-holes))
1382 ;; Self-deprecate when work is done.
1383 ;; Folding many dimensions into one.
1384 ;; Thanks B.Mandelbrot, for complex sum.
1385 ;; O beauteous math! --the Unvexed Bum
1386 (unless asc
1387 (setq sub #'buffer-substring-no-properties))
1388 (gather b e @-holes))))
1389 (while (and (sw)
1390 (not (eobp))
1391 (setq context (to-eol)
1392 rev (or (assoc context revs)
1393 (error "Rev `%s' has body but no head"
1394 context))))
1395 (push (k-one@ 'log) (cdr rev))
1396 ;; For rev body `text' tags, delay translation slightly...
1397 (push (k-one@ 'text t) (cdr rev))
1398 ;; ... until we decide which tag and value is appropriate to
1399 ;; collect. For the "head" revision, compute the value of the
1400 ;; `text' printed representation by simple `gather'. For all
1401 ;; other revisions, replace the `text' tag+value with `:insn'
1402 ;; plus value, always scanning in-place.
1403 (if (string= context (cdr (assq 'head headers)))
1404 (setcdr (cadr rev) (gather b e @-holes))
1405 (if @-holes
1406 (setq asc (nreverse @-holes)
1407 sub #'incg)
1408 (setq sub #'buffer-substring-no-properties))
1409 (goto-char b)
1410 (setq acc nil)
1411 (while (< (point) e)
1412 (forward-char 1)
1413 (setq cmd (char-before)
1414 start (read (current-buffer))
1415 act (read (current-buffer)))
1416 (forward-char 1)
1417 (push (pcase cmd
1419 ;; `d' means "delete lines".
1420 ;; For Emacs spirit, we use `k' for "kill".
1421 `(,start k ,act))
1423 ;; `a' means "append after this line" but
1424 ;; internally we normalize it so that START
1425 ;; specifies the actual line for insert, thus
1426 ;; requiring less hair in the realization algs.
1427 ;; For Emacs spirit, we use `i' for "insert".
1428 `(,(1+ start) i
1429 ,(funcall sub (point) (progn (forward-line act)
1430 (point)))))
1431 (_ (error "Bad command `%c' in `text' for rev `%s'"
1432 cmd context)))
1433 acc))
1434 (goto-char (1+ e))
1435 (setcar (cdr rev) (cons :insn acc)))))))
1436 ;; rv
1437 `((headers ,desc ,@headers)
1438 (revisions ,@revs)))))
1440 (provide 'vc-rcs)
1442 ;;; vc-rcs.el ends here