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