(Vsearch_spaces_regexp):
[emacs.git] / lisp / vc-rcs.el
blob71bdc73e792d6d765c358a98fb44aa6a4fabb223
1 ;;; vc-rcs.el --- support for RCS version-control
3 ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 ;; 2000, 2001, 2004 Free Software Foundation, Inc.
6 ;; Author: FSF (see vc.el for full credits)
7 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
9 ;; $Id$
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
28 ;;; Commentary:
30 ;; See vc.el
32 ;;; Code:
34 ;;;
35 ;;; Customization options
36 ;;;
38 (eval-when-compile
39 (require 'cl)
40 (require 'vc))
42 (defcustom vc-rcs-release nil
43 "*The release number of your RCS installation, as a string.
44 If nil, VC itself computes this value when it is first needed."
45 :type '(choice (const :tag "Auto" nil)
46 (string :tag "Specified")
47 (const :tag "Unknown" unknown))
48 :group 'vc)
50 (defcustom vc-rcs-register-switches nil
51 "*Extra switches for registering a file in RCS.
52 A string or list of strings. These are passed to the checkin program
53 by \\[vc-rcs-register]."
54 :type '(choice (const :tag "None" nil)
55 (string :tag "Argument String")
56 (repeat :tag "Argument List"
57 :value ("")
58 string))
59 :version "21.1"
60 :group 'vc)
62 (defcustom vc-rcs-diff-switches nil
63 "*A string or list of strings specifying extra switches for rcsdiff under VC."
64 :type '(choice (const :tag "None" nil)
65 (string :tag "Argument String")
66 (repeat :tag "Argument List"
67 :value ("")
68 string))
69 :version "21.1"
70 :group 'vc)
72 (defcustom vc-rcs-header (or (cdr (assoc 'RCS vc-header-alist)) '("\$Id\$"))
73 "*Header keywords to be inserted by `vc-insert-headers'."
74 :type '(repeat string)
75 :version "21.1"
76 :group 'vc)
78 (defcustom vc-rcsdiff-knows-brief nil
79 "*Indicates whether rcsdiff understands the --brief option.
80 The value is either `yes', `no', or nil. If it is nil, VC tries
81 to use --brief and sets this variable to remember whether it worked."
82 :type '(choice (const :tag "Work out" nil) (const yes) (const no))
83 :group 'vc)
85 ;;;###autoload
86 (defcustom vc-rcs-master-templates
87 '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s")
88 "*Where to look for RCS master files.
89 For a description of possible values, see `vc-check-master-templates'."
90 :type '(choice (const :tag "Use standard RCS file names"
91 '("%sRCS/%s,v" "%s%s,v" "%sRCS/%s"))
92 (repeat :tag "User-specified"
93 (choice string
94 function)))
95 :version "21.1"
96 :group 'vc)
99 ;;;
100 ;;; State-querying functions
103 ;;; The autoload cookie below places vc-rcs-registered directly into
104 ;;; loaddefs.el, so that vc-rcs.el does not need to be loaded for
105 ;;; every file that is visited. The definition is repeated below
106 ;;; so that Help and etags can find it.
108 ;;;###autoload (defun vc-rcs-registered (f) (vc-default-registered 'RCS f))
109 (defun vc-rcs-registered (f) (vc-default-registered 'RCS f))
111 (defun vc-rcs-state (file)
112 "Implementation of `vc-state' for RCS."
113 (or (boundp 'vc-rcs-headers-result)
114 (and vc-consult-headers
115 (vc-rcs-consult-headers file)))
116 (let ((state
117 ;; vc-workfile-version might not be known; in that case the
118 ;; property is nil. vc-rcs-fetch-master-state knows how to
119 ;; handle that.
120 (vc-rcs-fetch-master-state file
121 (vc-file-getprop file
122 'vc-workfile-version))))
123 (if (not (eq state 'up-to-date))
124 state
125 (if (vc-workfile-unchanged-p file)
126 'up-to-date
127 (if (eq (vc-checkout-model file) 'locking)
128 'unlocked-changes
129 'edited)))))
131 (defun vc-rcs-state-heuristic (file)
132 "State heuristic for RCS."
133 (let (vc-rcs-headers-result)
134 (if (and vc-consult-headers
135 (setq vc-rcs-headers-result
136 (vc-rcs-consult-headers file))
137 (eq vc-rcs-headers-result 'rev-and-lock))
138 (let ((state (vc-file-getprop file 'vc-state)))
139 ;; If the headers say that the file is not locked, the
140 ;; permissions can tell us whether locking is used for
141 ;; the file or not.
142 (if (and (eq state 'up-to-date)
143 (not (vc-mistrust-permissions file)))
144 (cond
145 ((string-match ".rw..-..-." (nth 8 (file-attributes file)))
146 (vc-file-setprop file 'vc-checkout-model 'implicit)
147 (setq state
148 (if (vc-rcs-workfile-is-newer file)
149 'edited
150 'up-to-date)))
151 ((string-match ".r-..-..-." (nth 8 (file-attributes file)))
152 (vc-file-setprop file 'vc-checkout-model 'locking))))
153 state)
154 (if (not (vc-mistrust-permissions file))
155 (let* ((attributes (file-attributes file))
156 (owner-uid (nth 2 attributes))
157 (permissions (nth 8 attributes)))
158 (cond ((string-match ".r-..-..-." permissions)
159 (vc-file-setprop file 'vc-checkout-model 'locking)
160 'up-to-date)
161 ((string-match ".rw..-..-." permissions)
162 (if (eq (vc-checkout-model file) 'locking)
163 (if (file-ownership-preserved-p file)
164 'edited
165 (vc-user-login-name owner-uid))
166 (if (vc-rcs-workfile-is-newer file)
167 'edited
168 'up-to-date)))
170 ;; Strange permissions. Fall through to
171 ;; expensive state computation.
172 (vc-rcs-state file))))
173 (vc-rcs-state file)))))
175 (defun vc-rcs-workfile-version (file)
176 "RCS-specific version of `vc-workfile-version'."
177 (or (and vc-consult-headers
178 (vc-rcs-consult-headers file)
179 (vc-file-getprop file 'vc-workfile-version))
180 (progn
181 (vc-rcs-fetch-master-state file)
182 (vc-file-getprop file 'vc-workfile-version))))
184 (defun vc-rcs-latest-on-branch-p (file &optional version)
185 "Return non-nil if workfile version of FILE is the latest on its branch.
186 When VERSION is given, perform check for that version."
187 (unless version (setq version (vc-workfile-version file)))
188 (with-temp-buffer
189 (string= version
190 (if (vc-trunk-p version)
191 (progn
192 ;; Compare VERSION to the head version number.
193 (vc-insert-file (vc-name file) "^[0-9]")
194 (vc-parse-buffer "^head[ \t\n]+\\([^;]+\\);" 1))
195 ;; If we are not on the trunk, we need to examine the
196 ;; whole current branch.
197 (vc-insert-file (vc-name file) "^desc")
198 (vc-rcs-find-most-recent-rev (vc-branch-part version))))))
200 (defun vc-rcs-checkout-model (file)
201 "RCS-specific version of `vc-checkout-model'."
202 (let (result)
203 (when vc-consult-headers
204 (vc-file-setprop file 'vc-checkout-model nil)
205 (vc-rcs-consult-headers file)
206 (setq result (vc-file-getprop file 'vc-checkout-model)))
207 (or result
208 (progn (vc-rcs-fetch-master-state file)
209 (vc-file-getprop file 'vc-checkout-model)))))
211 (defun vc-rcs-workfile-unchanged-p (file)
212 "RCS-specific implementation of `vc-workfile-unchanged-p'."
213 ;; Try to use rcsdiff --brief. If rcsdiff does not understand that,
214 ;; do a double take and remember the fact for the future
215 (let* ((version (concat "-r" (vc-workfile-version file)))
216 (status (if (eq vc-rcsdiff-knows-brief 'no)
217 (vc-do-command nil 1 "rcsdiff" file version)
218 (vc-do-command nil 2 "rcsdiff" file "--brief" version))))
219 (if (eq status 2)
220 (if (not vc-rcsdiff-knows-brief)
221 (setq vc-rcsdiff-knows-brief 'no
222 status (vc-do-command nil 1 "rcsdiff" file version))
223 (error "rcsdiff failed"))
224 (if (not vc-rcsdiff-knows-brief) (setq vc-rcsdiff-knows-brief 'yes)))
225 ;; The workfile is unchanged if rcsdiff found no differences.
226 (zerop status)))
230 ;;; State-changing functions
233 (defun vc-rcs-register (file &optional rev comment)
234 "Register FILE into the RCS version-control system.
235 REV is the optional revision number for the file. COMMENT can be used
236 to provide an initial description of FILE.
238 `vc-register-switches' and `vc-rcs-register-switches' are passed to
239 the RCS command (in that order).
241 Automatically retrieve a read-only version of the file with keywords
242 expanded if `vc-keep-workfiles' is non-nil, otherwise, delete the workfile."
243 (let ((subdir (expand-file-name "RCS" (file-name-directory file))))
244 (and (not (file-exists-p subdir))
245 (not (directory-files (file-name-directory file)
246 nil ".*,v$" t))
247 (yes-or-no-p "Create RCS subdirectory? ")
248 (make-directory subdir))
249 (apply 'vc-do-command nil 0 "ci" file
250 ;; if available, use the secure registering option
251 (and (vc-rcs-release-p "5.6.4") "-i")
252 (concat (if vc-keep-workfiles "-u" "-r") rev)
253 (and comment (concat "-t-" comment))
254 (vc-switches 'RCS 'register))
255 ;; parse output to find master file name and workfile version
256 (with-current-buffer "*vc*"
257 (goto-char (point-min))
258 (let ((name (if (looking-at (concat "^\\(.*\\) <-- "
259 (file-name-nondirectory file)))
260 (match-string 1))))
261 (if (not name)
262 ;; if we couldn't find the master name,
263 ;; run vc-rcs-registered to get it
264 ;; (will be stored into the vc-name property)
265 (vc-rcs-registered file)
266 (vc-file-setprop file 'vc-name
267 (if (file-name-absolute-p name)
268 name
269 (expand-file-name
270 name
271 (file-name-directory file))))))
272 (vc-file-setprop file 'vc-workfile-version
273 (if (re-search-forward
274 "^initial revision: \\([0-9.]+\\).*\n"
275 nil t)
276 (match-string 1))))))
278 (defun vc-rcs-responsible-p (file)
279 "Return non-nil if RCS thinks it would be responsible for registering FILE."
280 ;; TODO: check for all the patterns in vc-rcs-master-templates
281 (file-directory-p (expand-file-name "RCS" (file-name-directory file))))
283 (defun vc-rcs-receive-file (file rev)
284 "Implementation of receive-file for RCS."
285 (let ((checkout-model (vc-checkout-model file)))
286 (vc-rcs-register file rev "")
287 (when (eq checkout-model 'implicit)
288 (vc-rcs-set-non-strict-locking file))
289 (vc-rcs-set-default-branch file (concat rev ".1"))))
291 (defun vc-rcs-unregister (file)
292 "Unregister FILE from RCS.
293 If this leaves the RCS subdirectory empty, ask the user
294 whether to remove it."
295 (let* ((master (vc-name file))
296 (dir (file-name-directory master))
297 (backup-info (find-backup-file-name master)))
298 (if (not backup-info)
299 (delete-file master)
300 (rename-file master (car backup-info) 'ok-if-already-exists)
301 (dolist (f (cdr backup-info)) (ignore-errors (delete-file f))))
302 (and (string= (file-name-nondirectory (directory-file-name dir)) "RCS")
303 ;; check whether RCS dir is empty, i.e. it does not
304 ;; contain any files except "." and ".."
305 (not (directory-files dir nil
306 "^\\([^.]\\|\\.[^.]\\|\\.\\.[^.]\\).*"))
307 (yes-or-no-p (format "Directory %s is empty; remove it? " dir))
308 (delete-directory dir))))
310 (defun vc-rcs-checkin (file rev comment)
311 "RCS-specific version of `vc-backend-checkin'."
312 (let ((switches (vc-switches 'RCS 'checkin)))
313 (let ((old-version (vc-workfile-version file)) new-version
314 (default-branch (vc-file-getprop file 'vc-rcs-default-branch)))
315 ;; Force branch creation if an appropriate
316 ;; default branch has been set.
317 (and (not rev)
318 default-branch
319 (string-match (concat "^" (regexp-quote old-version) "\\.")
320 default-branch)
321 (setq rev default-branch)
322 (setq switches (cons "-f" switches)))
323 (if (and (not rev) old-version)
324 (setq rev (vc-branch-part old-version)))
325 (apply 'vc-do-command nil 0 "ci" (vc-name file)
326 ;; if available, use the secure check-in option
327 (and (vc-rcs-release-p "5.6.4") "-j")
328 (concat (if vc-keep-workfiles "-u" "-r") rev)
329 (concat "-m" comment)
330 switches)
331 (vc-file-setprop file 'vc-workfile-version nil)
333 ;; determine the new workfile version
334 (set-buffer "*vc*")
335 (goto-char (point-min))
336 (when (or (re-search-forward
337 "new revision: \\([0-9.]+\\);" nil t)
338 (re-search-forward
339 "reverting to previous revision \\([0-9.]+\\)" nil t))
340 (setq new-version (match-string 1))
341 (vc-file-setprop file 'vc-workfile-version new-version))
343 ;; if we got to a different branch, adjust the default
344 ;; branch accordingly
345 (cond
346 ((and old-version new-version
347 (not (string= (vc-branch-part old-version)
348 (vc-branch-part new-version))))
349 (vc-rcs-set-default-branch file
350 (if (vc-trunk-p new-version) nil
351 (vc-branch-part new-version)))
352 ;; If this is an old RCS release, we might have
353 ;; to remove a remaining lock.
354 (if (not (vc-rcs-release-p "5.6.2"))
355 ;; exit status of 1 is also accepted.
356 ;; It means that the lock was removed before.
357 (vc-do-command nil 1 "rcs" (vc-name file)
358 (concat "-u" old-version))))))))
360 (defun vc-rcs-find-version (file rev buffer)
361 (apply 'vc-do-command
362 buffer 0 "co" (vc-name file)
363 "-q" ;; suppress diagnostic output
364 (concat "-p" rev)
365 (vc-switches 'RCS 'checkout)))
367 (defun vc-rcs-checkout (file &optional editable rev)
368 "Retrieve a copy of a saved version of FILE."
369 (let ((file-buffer (get-file-buffer file))
370 switches)
371 (message "Checking out %s..." file)
372 (save-excursion
373 ;; Change buffers to get local value of vc-checkout-switches.
374 (if file-buffer (set-buffer file-buffer))
375 (setq switches (vc-switches 'RCS 'checkout))
376 ;; Save this buffer's default-directory
377 ;; and use save-excursion to make sure it is restored
378 ;; in the same buffer it was saved in.
379 (let ((default-directory default-directory))
380 (save-excursion
381 ;; Adjust the default-directory so that the check-out creates
382 ;; the file in the right place.
383 (setq default-directory (file-name-directory file))
384 (let (new-version)
385 ;; if we should go to the head of the trunk,
386 ;; clear the default branch first
387 (and rev (string= rev "")
388 (vc-rcs-set-default-branch file nil))
389 ;; now do the checkout
390 (apply 'vc-do-command
391 nil 0 "co" (vc-name file)
392 ;; If locking is not strict, force to overwrite
393 ;; the writable workfile.
394 (if (eq (vc-checkout-model file) 'implicit) "-f")
395 (if editable "-l")
396 (if (stringp rev)
397 ;; a literal revision was specified
398 (concat "-r" rev)
399 (let ((workrev (vc-workfile-version file)))
400 (if workrev
401 (concat "-r"
402 (if (not rev)
403 ;; no revision specified:
404 ;; use current workfile version
405 workrev
406 ;; REV is t ...
407 (if (not (vc-trunk-p workrev))
408 ;; ... go to head of current branch
409 (vc-branch-part workrev)
410 ;; ... go to head of trunk
411 (vc-rcs-set-default-branch file
412 nil)
413 ""))))))
414 switches)
415 ;; determine the new workfile version
416 (with-current-buffer "*vc*"
417 (setq new-version
418 (vc-parse-buffer "^revision \\([0-9.]+\\).*\n" 1)))
419 (vc-file-setprop file 'vc-workfile-version new-version)
420 ;; if necessary, adjust the default branch
421 (and rev (not (string= rev ""))
422 (vc-rcs-set-default-branch
423 file
424 (if (vc-rcs-latest-on-branch-p file new-version)
425 (if (vc-trunk-p new-version) nil
426 (vc-branch-part new-version))
427 new-version)))))
428 (message "Checking out %s...done" file)))))
430 (defun vc-rcs-revert (file &optional contents-done)
431 "Revert FILE to the version it was based on."
432 (vc-do-command nil 0 "co" (vc-name file) "-f"
433 (concat (if (eq (vc-state file) 'edited) "-u" "-r")
434 (vc-workfile-version file))))
436 (defun vc-rcs-cancel-version (file editable)
437 "Undo the most recent checkin of FILE.
438 EDITABLE non-nil means previous version should be locked."
439 (let* ((target (vc-workfile-version file))
440 (previous (if (vc-trunk-p target) "" (vc-branch-part target)))
441 (config (current-window-configuration))
442 (done nil))
443 (vc-do-command nil 0 "rcs" (vc-name file) (concat "-o" target))
444 ;; Check out the most recent remaining version. If it fails, because
445 ;; the whole branch got deleted, do a double-take and check out the
446 ;; version where the branch started.
447 (while (not done)
448 (condition-case err
449 (progn
450 (vc-do-command nil 0 "co" (vc-name file) "-f"
451 (concat (if editable "-l" "-u") previous))
452 (setq done t))
453 (error (set-buffer "*vc*")
454 (goto-char (point-min))
455 (if (search-forward "no side branches present for" nil t)
456 (progn (setq previous (vc-branch-part previous))
457 (vc-rcs-set-default-branch file previous)
458 ;; vc-do-command popped up a window with
459 ;; the error message. Get rid of it, by
460 ;; restoring the old window configuration.
461 (set-window-configuration config))
462 ;; No, it was some other error: re-signal it.
463 (signal (car err) (cdr err))))))))
465 (defun vc-rcs-merge (file first-version &optional second-version)
466 "Merge changes into current working copy of FILE.
467 The changes are between FIRST-VERSION and SECOND-VERSION."
468 (vc-do-command nil 1 "rcsmerge" (vc-name file)
469 "-kk" ; ignore keyword conflicts
470 (concat "-r" first-version)
471 (if second-version (concat "-r" second-version))))
473 (defun vc-rcs-steal-lock (file &optional rev)
474 "Steal the lock on the current workfile for FILE and revision REV.
475 Needs RCS 5.6.2 or later for -M."
476 (vc-do-command nil 0 "rcs" (vc-name file) "-M" (concat "-u" rev))
477 ;; Do a real checkout after stealing the lock, so that we see
478 ;; expanded headers.
479 (vc-do-command nil 0 "co" (vc-name file) "-f" (concat "-l" rev)))
484 ;;; History functions
487 (defun vc-rcs-print-log (file &optional buffer)
488 "Get change log associated with FILE."
489 (vc-do-command buffer 0 "rlog" (vc-name file)))
491 (defun vc-rcs-diff (file &optional oldvers newvers buffer)
492 "Get a difference report using RCS between two versions of FILE."
493 (if (not oldvers) (setq oldvers (vc-workfile-version file)))
494 (apply 'vc-do-command (or buffer "*vc-diff*") 1 "rcsdiff" file
495 (append (list "-q"
496 (concat "-r" oldvers)
497 (and newvers (concat "-r" newvers)))
498 (vc-switches 'RCS 'diff))))
500 (defun vc-rcs-annotate-command (file buffer &optional revision)
501 "Annotate FILE, inserting the results in BUFFER.
502 Optional arg REVISION is a revision to annotate from."
503 ;; Aside from the "head revision on the trunk", the instructions for
504 ;; each revision on the trunk are an ordered list of kill and insert
505 ;; commands necessary to go from the chronologically-following
506 ;; revision to this one. That is, associated with revision N are
507 ;; edits that applied to revision N+1 would result in revision N.
509 ;; On a branch, however, (some) things are inverted: the commands
510 ;; listed are those necessary to go from the chronologically-preceding
511 ;; revision to this one. That is, associated with revision N are
512 ;; edits that applied to revision N-1 would result in revision N.
514 ;; So, to get per-line history info, we apply reverse-chronological
515 ;; edits, starting with the head revision on the trunk, all the way
516 ;; back through the initial revision (typically "1.1" or similar),
517 ;; then apply forward-chronological edits -- keeping track of which
518 ;; revision is associated with each inserted line -- until we reach
519 ;; the desired revision for display (which may be either on the trunk
520 ;; or on a branch).
521 (let* ((tree (with-temp-buffer
522 (insert-file-contents (vc-rcs-registered file))
523 (vc-rcs-parse)))
524 (revisions (cdr (assq 'revisions tree)))
525 ;; The revision N whose instructions we currently are processing.
526 (cur (cdr (assq 'head (cdr (assq 'headers tree)))))
527 ;; Alist from the parse tree for N.
528 (meta (cdr (assoc cur revisions)))
529 ;; Point and temporary string, respectively.
531 ;; "Next-branch list". Nil means the desired revision to
532 ;; display lives on the trunk. Non-nil means it lives on a
533 ;; branch, in which case the value is a list of revision pairs
534 ;; (PARENT . CHILD), the first PARENT being on the trunk, that
535 ;; links each series of revisions in the path from the initial
536 ;; revision to the desired revision to display.
537 nbls
538 ;; "Path-accumulate-predicate plus revision/date/author".
539 ;; Until set, forward-chronological edits are not accumulated.
540 ;; Once set, its value (updated every revision) is used for
541 ;; the text property `:vc-rcs-r/d/a' for inserts during
542 ;; processing of forward-chronological instructions for N.
543 ;; See internal func `r/d/a'.
544 prda
545 ;; List of forward-chronological instructions, each of the
546 ;; form: (POS . ACTION), where POS is a buffer position. If
547 ;; ACTION is a string, it is inserted, otherwise it is taken as
548 ;; the number of characters to be deleted.
549 path
550 ;; N+1. When `cur' is "", this is the initial revision.
551 pre)
552 (unless revision
553 (setq revision cur))
554 (unless (assoc revision revisions)
555 (error "No such revision: %s" revision))
556 ;; Find which branches (if any) must be included in the edits.
557 (let ((par revision)
558 bpt kids)
559 (while (setq bpt (vc-branch-part par)
560 par (vc-branch-part bpt))
561 (setq kids (cdr (assq 'branches (cdr (assoc par revisions)))))
562 ;; A branchpoint may have multiple children. Find the right one.
563 (while (not (string= bpt (vc-branch-part (car kids))))
564 (setq kids (cdr kids)))
565 (push (cons par (car kids)) nbls)))
566 ;; Start with the full text.
567 (set-buffer buffer)
568 (insert (cdr (assq 'text meta)))
569 ;; Apply reverse-chronological edits on the trunk, computing and
570 ;; accumulating forward-chronological edits after some point, for
571 ;; later.
572 (flet ((r/d/a () (vector pre
573 (cdr (assq 'date meta))
574 (cdr (assq 'author meta)))))
575 (while (when (setq pre cur cur (cdr (assq 'next meta)))
576 (not (string= "" cur)))
577 (setq
578 ;; Start accumulating the forward-chronological edits when N+1
579 ;; on the trunk is either the desired revision to display, or
580 ;; the appropriate branchpoint for it. Do this before
581 ;; updating `meta' since `r/d/a' uses N+1's `meta' value.
582 prda (when (or prda (string= (if nbls (caar nbls) revision) pre))
583 (r/d/a))
584 meta (cdr (assoc cur revisions)))
585 ;; Edits in the parse tree specify a line number (in the buffer
586 ;; *BEFORE* editing occurs) to start from, but line numbers
587 ;; change as a result of edits. To DTRT, we apply edits in
588 ;; order of descending buffer position so that edits further
589 ;; down in the buffer occur first w/o corrupting specified
590 ;; buffer positions of edits occurring towards the beginning of
591 ;; the buffer. In this way we avoid using markers. A pleasant
592 ;; property of this approach is ability to push instructions
593 ;; onto `path' directly, w/o need to maintain rev boundaries.
594 (dolist (insn (cdr (assq :insn meta)))
595 (goto-line (pop insn))
596 (setq p (point))
597 (case (pop insn)
598 (k (setq s (buffer-substring-no-properties
599 p (progn (forward-line (car insn))
600 (point))))
601 (when prda
602 (push `(,p . ,(propertize s :vc-rcs-r/d/a prda)) path))
603 (delete-region p (point)))
604 (i (setq s (car insn))
605 (when prda
606 (push `(,p . ,(length s)) path))
607 (insert s)))))
608 ;; For the initial revision, setting `:vc-rcs-r/d/a' directly is
609 ;; equivalent to pushing an insert instruction (of the entire buffer
610 ;; contents) onto `path' then erasing the buffer, but less wasteful.
611 (put-text-property (point-min) (point-max) :vc-rcs-r/d/a (r/d/a))
612 ;; Now apply the forward-chronological edits for the trunk.
613 (dolist (insn path)
614 (goto-char (pop insn))
615 (if (stringp insn)
616 (insert insn)
617 (delete-char insn)))
618 ;; Now apply the forward-chronological edits (directly from the
619 ;; parse-tree) for the branch(es), if necessary. We re-use vars
620 ;; `pre' and `meta' for the sake of internal func `r/d/a'.
621 (while nbls
622 (setq pre (cdr (pop nbls)))
623 (while (progn
624 (setq meta (cdr (assoc pre revisions))
625 prda nil)
626 (dolist (insn (cdr (assq :insn meta)))
627 (goto-line (pop insn))
628 (case (pop insn)
629 (k (delete-region
630 (point) (progn (forward-line (car insn))
631 (point))))
632 (i (insert (propertize
633 (car insn)
634 :vc-rcs-r/d/a
635 (or prda (setq prda (r/d/a))))))))
636 (prog1 (not (string= (if nbls (caar nbls) revision) pre))
637 (setq pre (cdr (assq 'next meta)))))))))
638 ;; Lastly, for each line, insert at bol nicely-formatted history info.
639 ;; We do two passes to collect summary information used to minimize
640 ;; the annotation's usage of screen real-estate: (1) Consider rendered
641 ;; width of revision plus author together as a unit; and (2) Omit
642 ;; author entirely if all authors are the same as the user.
643 (let ((ht (make-hash-table :test 'eq))
644 (me (user-login-name))
645 (maxw 0)
646 (all-me t)
647 rda w a)
648 (goto-char (point-max))
649 (while (not (bobp))
650 (forward-line -1)
651 (setq rda (get-text-property (point) :vc-rcs-r/d/a))
652 (unless (gethash rda ht)
653 (setq a (aref rda 2)
654 all-me (and all-me (string= a me)))
655 (puthash rda (setq w (+ (length (aref rda 0))
656 (length a)))
658 (setq maxw (max w maxw))))
659 (let ((padding (make-string maxw 32)))
660 (flet ((pad (w) (substring-no-properties padding w))
661 (render (rda &rest ls)
662 (propertize
663 (apply 'concat
664 (format-time-string "%Y-%m-%d" (aref rda 1))
666 (aref rda 0)
668 :vc-rcs-r/d/a rda)))
669 (maphash
670 (if all-me
671 (lambda (rda w)
672 (puthash rda (render rda (pad w) ": ") ht))
673 (lambda (rda w)
674 (puthash rda (render rda " " (pad w) " " (aref rda 2) ": ") ht)))
675 ht)))
676 (while (not (eobp))
677 (insert (gethash (get-text-property (point) :vc-rcs-r/d/a) ht))
678 (forward-line 1))))
680 (defun vc-rcs-annotate-current-time ()
681 "Return the current time, based at midnight of the current day, and
682 encoded as fractional days."
683 (vc-annotate-convert-time
684 (apply 'encode-time 0 0 0 (nthcdr 3 (decode-time (current-time))))))
686 (defun vc-rcs-annotate-time ()
687 "Return the time of the next annotation (as fraction of days)
688 systime, or nil if there is none. Also, reposition point."
689 (unless (eobp)
690 (search-forward ": ")
691 (vc-annotate-convert-time
692 (aref (get-text-property (point) :vc-rcs-r/d/a) 1))))
694 (defun vc-rcs-annotate-extract-revision-at-line ()
695 (aref (get-text-property (point) :vc-rcs-r/d/a) 0))
699 ;;; Snapshot system
702 (defun vc-rcs-assign-name (file name)
703 "Assign to FILE's latest version a given NAME."
704 (vc-do-command nil 0 "rcs" (vc-name file) (concat "-n" name ":")))
708 ;;; Miscellaneous
711 (defun vc-rcs-check-headers ()
712 "Check if the current file has any headers in it."
713 (save-excursion
714 (goto-char (point-min))
715 (re-search-forward "\\$[A-Za-z\300-\326\330-\366\370-\377]+\
716 \\(: [\t -#%-\176\240-\377]*\\)?\\$" nil t)))
718 (defun vc-rcs-clear-headers ()
719 "Implementation of vc-clear-headers for RCS."
720 (let ((case-fold-search nil))
721 (goto-char (point-min))
722 (while (re-search-forward
723 (concat "\\$\\(Author\\|Date\\|Header\\|Id\\|Locker\\|Name\\|"
724 "RCSfile\\|Revision\\|Source\\|State\\): [^$\n]+\\$")
725 nil t)
726 (replace-match "$\\1$"))))
728 (defun vc-rcs-rename-file (old new)
729 ;; Just move the master file (using vc-rcs-master-templates).
730 (vc-rename-master (vc-name old) new vc-rcs-master-templates))
734 ;;; Internal functions
737 (defun vc-rcs-workfile-is-newer (file)
738 "Return non-nil if FILE is newer than its RCS master.
739 This likely means that FILE has been changed with respect
740 to its master version."
741 (let ((file-time (nth 5 (file-attributes file)))
742 (master-time (nth 5 (file-attributes (vc-name file)))))
743 (or (> (nth 0 file-time) (nth 0 master-time))
744 (and (= (nth 0 file-time) (nth 0 master-time))
745 (> (nth 1 file-time) (nth 1 master-time))))))
747 (defun vc-rcs-find-most-recent-rev (branch)
748 "Find most recent revision on BRANCH."
749 (goto-char (point-min))
750 (let ((latest-rev -1) value)
751 (while (re-search-forward (concat "^\\(" (regexp-quote branch)
752 "\\.\\([0-9]+\\)\\)\ndate[ \t]+[0-9.]+;")
753 nil t)
754 (let ((rev (string-to-number (match-string 2))))
755 (when (< latest-rev rev)
756 (setq latest-rev rev)
757 (setq value (match-string 1)))))
758 (or value
759 (vc-branch-part branch))))
761 (defun vc-rcs-fetch-master-state (file &optional workfile-version)
762 "Compute the master file's idea of the state of FILE.
763 If a WORKFILE-VERSION is given, compute the state of that version,
764 otherwise determine the workfile version based on the master file.
765 This function sets the properties `vc-workfile-version' and
766 `vc-checkout-model' to their correct values, based on the master
767 file."
768 (with-temp-buffer
769 (if (or (not (vc-insert-file (vc-name file) "^[0-9]"))
770 (progn (goto-char (point-min))
771 (not (looking-at "^head[ \t\n]+[^;]+;$"))))
772 (error "File %s is not an RCS master file" (vc-name file)))
773 (let ((workfile-is-latest nil)
774 (default-branch (vc-parse-buffer "^branch[ \t\n]+\\([^;]*\\);" 1)))
775 (vc-file-setprop file 'vc-rcs-default-branch default-branch)
776 (unless workfile-version
777 ;; Workfile version not known yet. Determine that first. It
778 ;; is either the head of the trunk, the head of the default
779 ;; branch, or the "default branch" itself, if that is a full
780 ;; revision number.
781 (cond
782 ;; no default branch
783 ((or (not default-branch) (string= "" default-branch))
784 (setq workfile-version
785 (vc-parse-buffer "^head[ \t\n]+\\([^;]+\\);" 1))
786 (setq workfile-is-latest t))
787 ;; default branch is actually a revision
788 ((string-match "^[0-9]+\\.[0-9]+\\(\\.[0-9]+\\.[0-9]+\\)*$"
789 default-branch)
790 (setq workfile-version default-branch))
791 ;; else, search for the head of the default branch
792 (t (vc-insert-file (vc-name file) "^desc")
793 (setq workfile-version
794 (vc-rcs-find-most-recent-rev default-branch))
795 (setq workfile-is-latest t)))
796 (vc-file-setprop file 'vc-workfile-version workfile-version))
797 ;; Check strict locking
798 (goto-char (point-min))
799 (vc-file-setprop file 'vc-checkout-model
800 (if (re-search-forward ";[ \t\n]*strict;" nil t)
801 'locking 'implicit))
802 ;; Compute state of workfile version
803 (goto-char (point-min))
804 (let ((locking-user
805 (vc-parse-buffer (concat "^locks[ \t\n]+[^;]*[ \t\n]+\\([^:]+\\):"
806 (regexp-quote workfile-version)
807 "[^0-9.]")
808 1)))
809 (cond
810 ;; not locked
811 ((not locking-user)
812 (if (or workfile-is-latest
813 (vc-rcs-latest-on-branch-p file workfile-version))
814 ;; workfile version is latest on branch
815 'up-to-date
816 ;; workfile version is not latest on branch
817 'needs-patch))
818 ;; locked by the calling user
819 ((and (stringp locking-user)
820 (string= locking-user (vc-user-login-name)))
821 (if (or (eq (vc-checkout-model file) 'locking)
822 workfile-is-latest
823 (vc-rcs-latest-on-branch-p file workfile-version))
824 'edited
825 ;; Locking is not used for the file, but the owner does
826 ;; have a lock, and there is a higher version on the current
827 ;; branch. Not sure if this can occur, and if it is right
828 ;; to use `needs-merge' in this case.
829 'needs-merge))
830 ;; locked by somebody else
831 ((stringp locking-user)
832 locking-user)
834 (error "Error getting state of RCS file")))))))
836 (defun vc-rcs-consult-headers (file)
837 "Search for RCS headers in FILE, and set properties accordingly.
839 Returns: nil if no headers were found
840 'rev if a workfile revision was found
841 'rev-and-lock if revision and lock info was found"
842 (cond
843 ((not (get-file-buffer file)) nil)
844 ((let (status version locking-user)
845 (save-excursion
846 (set-buffer (get-file-buffer file))
847 (goto-char (point-min))
848 (cond
849 ;; search for $Id or $Header
850 ;; -------------------------
851 ;; The `\ 's below avoid an RCS 5.7 bug when checking in this file.
852 ((or (and (search-forward "$Id\ : " nil t)
853 (looking-at "[^ ]+ \\([0-9.]+\\) "))
854 (and (progn (goto-char (point-min))
855 (search-forward "$Header\ : " nil t))
856 (looking-at "[^ ]+ \\([0-9.]+\\) ")))
857 (goto-char (match-end 0))
858 ;; if found, store the revision number ...
859 (setq version (match-string-no-properties 1))
860 ;; ... and check for the locking state
861 (cond
862 ((looking-at
863 (concat "[0-9]+[/-][01][0-9][/-][0-3][0-9] " ; date
864 "[0-2][0-9]:[0-5][0-9]+:[0-6][0-9]+\\([+-][0-9:]+\\)? " ; time
865 "[^ ]+ [^ ]+ ")) ; author & state
866 (goto-char (match-end 0)) ; [0-6] in regexp handles leap seconds
867 (cond
868 ;; unlocked revision
869 ((looking-at "\\$")
870 (setq locking-user 'none)
871 (setq status 'rev-and-lock))
872 ;; revision is locked by some user
873 ((looking-at "\\([^ ]+\\) \\$")
874 (setq locking-user (match-string-no-properties 1))
875 (setq status 'rev-and-lock))
876 ;; everything else: false
877 (nil)))
878 ;; unexpected information in
879 ;; keyword string --> quit
880 (nil)))
881 ;; search for $Revision
882 ;; --------------------
883 ((re-search-forward (concat "\\$"
884 "Revision: \\([0-9.]+\\) \\$")
885 nil t)
886 ;; if found, store the revision number ...
887 (setq version (match-string-no-properties 1))
888 ;; and see if there's any lock information
889 (goto-char (point-min))
890 (if (re-search-forward (concat "\\$" "Locker:") nil t)
891 (cond ((looking-at " \\([^ ]+\\) \\$")
892 (setq locking-user (match-string-no-properties 1))
893 (setq status 'rev-and-lock))
894 ((looking-at " *\\$")
895 (setq locking-user 'none)
896 (setq status 'rev-and-lock))
898 (setq locking-user 'none)
899 (setq status 'rev-and-lock)))
900 (setq status 'rev)))
901 ;; else: nothing found
902 ;; -------------------
903 (t nil)))
904 (if status (vc-file-setprop file 'vc-workfile-version version))
905 (and (eq status 'rev-and-lock)
906 (vc-file-setprop file 'vc-state
907 (cond
908 ((eq locking-user 'none) 'up-to-date)
909 ((string= locking-user (vc-user-login-name)) 'edited)
910 (t locking-user)))
911 ;; If the file has headers, we don't want to query the
912 ;; master file, because that would eliminate all the
913 ;; performance gain the headers brought us. We therefore
914 ;; use a heuristic now to find out whether locking is used
915 ;; for this file. If we trust the file permissions, and the
916 ;; file is not locked, then if the file is read-only we
917 ;; assume that locking is used for the file, otherwise
918 ;; locking is not used.
919 (not (vc-mistrust-permissions file))
920 (vc-up-to-date-p file)
921 (if (string-match ".r-..-..-." (nth 8 (file-attributes file)))
922 (vc-file-setprop file 'vc-checkout-model 'locking)
923 (vc-file-setprop file 'vc-checkout-model 'implicit)))
924 status))))
926 (defun vc-release-greater-or-equal (r1 r2)
927 "Compare release numbers, represented as strings.
928 Release components are assumed cardinal numbers, not decimal fractions
929 \(5.10 is a higher release than 5.9\). Omitted fields are considered
930 lower \(5.6.7 is earlier than 5.6.7.1\). Comparison runs till the end
931 of the string is found, or a non-numeric component shows up \(5.6.7 is
932 earlier than \"5.6.7 beta\", which is probably not what you want in
933 some cases\). This code is suitable for existing RCS release numbers.
934 CVS releases are handled reasonably, too \(1.3 < 1.4* < 1.5\)."
935 (let (v1 v2 i1 i2)
936 (catch 'done
937 (or (and (string-match "^\\.?\\([0-9]+\\)" r1)
938 (setq i1 (match-end 0))
939 (setq v1 (string-to-number (match-string 1 r1)))
940 (or (and (string-match "^\\.?\\([0-9]+\\)" r2)
941 (setq i2 (match-end 0))
942 (setq v2 (string-to-number (match-string 1 r2)))
943 (if (> v1 v2) (throw 'done t)
944 (if (< v1 v2) (throw 'done nil)
945 (throw 'done
946 (vc-release-greater-or-equal
947 (substring r1 i1)
948 (substring r2 i2)))))))
949 (throw 'done t)))
950 (or (and (string-match "^\\.?\\([0-9]+\\)" r2)
951 (throw 'done nil))
952 (throw 'done t)))))
954 (defun vc-rcs-release-p (release)
955 "Return t if we have RELEASE or better."
956 (let ((installation (vc-rcs-system-release)))
957 (if (and installation
958 (not (eq installation 'unknown)))
959 (vc-release-greater-or-equal installation release))))
961 (defun vc-rcs-system-release ()
962 "Return the RCS release installed on this system, as a string.
963 Return symbol UNKNOWN if the release cannot be deducted. The user can
964 override this using variable `vc-rcs-release'.
966 If the user has not set variable `vc-rcs-release' and it is nil,
967 variable `vc-rcs-release' is set to the returned value."
968 (or vc-rcs-release
969 (setq vc-rcs-release
970 (or (and (zerop (vc-do-command nil nil "rcs" nil "-V"))
971 (with-current-buffer (get-buffer "*vc*")
972 (vc-parse-buffer "^RCS version \\([0-9.]+ *.*\\)" 1)))
973 'unknown))))
975 (defun vc-rcs-set-non-strict-locking (file)
976 (vc-do-command nil 0 "rcs" file "-U")
977 (vc-file-setprop file 'vc-checkout-model 'implicit)
978 (set-file-modes file (logior (file-modes file) 128)))
980 (defun vc-rcs-set-default-branch (file branch)
981 (vc-do-command nil 0 "rcs" (vc-name file) (concat "-b" branch))
982 (vc-file-setprop file 'vc-rcs-default-branch branch))
984 (defun vc-rcs-parse (&optional buffer)
985 "Parse current buffer, presumed to be in RCS-style masterfile format.
986 Optional arg BUFFER specifies another buffer to parse. Return an alist
987 of two elements, w/ keys `headers' and `revisions' and values in turn
988 sub-alists. For `headers', the values unless otherwise specified are
989 strings and the keys are:
991 desc -- description
992 head -- latest revision
993 branch -- the branch the \"head revision\" lies on;
994 absent if the head revision lies on the trunk
995 access -- ???
996 symbols -- sub-alist of (SYMBOL . REVISION) elements
997 locks -- if file is checked out, something like \"ttn:1.7\"
998 strict -- t if \"strict locking\" is in effect, otherwise nil
999 comment -- may be absent; typically something like \"# \" or \"; \"
1000 expand -- may be absent; ???
1002 For `revisions', the car is REVISION (string), the cdr a sub-alist,
1003 with string values (unless otherwise specified) and keys:
1005 date -- a time value (like that returned by `encode-time'); as a
1006 special case, a year value less than 100 is augmented by 1900
1007 author -- username
1008 state -- typically \"Exp\" or \"Rel\"
1009 branches -- list of revisions that begin branches from this revision
1010 next -- on the trunk: the chronologically-preceding revision, or \"\";
1011 on a branch: the chronologically-following revision, or \"\"
1012 log -- change log entry
1013 text -- for the head revision on the trunk, the body of the file;
1014 other revisions have `:insn' instead
1015 :insn -- for non-head revisions, a list of parsed instructions
1016 in one of two forms, in both cases START meaning \"first
1017 go to line START\":
1018 - `(START k COUNT)' -- kill COUNT lines
1019 - `(START i TEXT)' -- insert TEXT (a string)
1020 The list is in descending order by START.
1022 The `:insn' key is a keyword to distinguish it as a vc-rcs.el extension."
1023 (setq buffer (get-buffer (or buffer (current-buffer))))
1024 (set-buffer buffer)
1025 ;; An RCS masterfile can be viewed as containing four regular (for the
1026 ;; most part) sections: (a) the "headers", (b) the "rev headers", (c)
1027 ;; the "description" and (d) the "rev bodies", in that order. In the
1028 ;; returned alist (see docstring), elements from (b) and (d) are
1029 ;; combined pairwise to form the "revisions", while those from (a) and
1030 ;; (c) are simply combined to form the "headers".
1032 ;; Loosely speaking, each section contains a series of alternating
1033 ;; "tags" and "printed representations". In the (b) and (d), many
1034 ;; such series can appear, and a revision number on a line by itself
1035 ;; precedes the series of tags and printed representations associated
1036 ;; with it.
1038 ;; In (a) and (b), the printed representations (with the exception of
1039 ;; the `comment' tag in the headers) terminate with a semicolon, which
1040 ;; is NOT part of the "value" finally associated with the tag. All
1041 ;; other printed representations are in "@@-format"; there is an "@",
1042 ;; the middle part (to be translated into the value), another "@" and
1043 ;; a newline. Each "@@" in the middle part indicates the position of
1044 ;; a single "@" (and consequently the requirement of an additional
1045 ;; initial step when translating to the value).
1047 ;; Parser state includes vars that collect parts of the return value...
1048 (let ((desc nil) (headers nil) (revs nil)
1049 ;; ... as well as vars that support a single-pass, tag-assisted,
1050 ;; minimal-data-copying scan. Basically -- skirting around the
1051 ;; grouping by revision required in (b) and (d) -- we repeatedly
1052 ;; and context-sensitively read a tag (that MUST be present),
1053 ;; determine the bounds of the printed representation, translate
1054 ;; it into a value, and push the tag plus value onto one of the
1055 ;; collection vars. Finally, we return the parse tree
1056 ;; incorporating the values of the collection vars (see "rv").
1058 ;; A symbol or string to keep track of context (for error messages).
1059 context
1060 ;; A symbol, the current tag.
1062 ;; Region (begin and end buffer positions) of the printed
1063 ;; representation for the current tag.
1065 ;; A list of buffer positions where "@@" can be found within the
1066 ;; printed representation region. For each location, we push two
1067 ;; elements onto the list, 1+ and 2+ the location, respectively,
1068 ;; with the 2+ appearing at the head. In this way, the expression
1069 ;; `(,e ,@@-holes ,b)
1070 ;; describes regions that can be concatenated (in reverse order)
1071 ;; to "de-@@-format" the printed representation as the first step
1072 ;; to translating it into some value. See internal func `gather'.
1073 @-holes)
1074 (flet ((sw () (skip-chars-forward " \t\n")) ; i.e., `[:space:]'
1075 (at (tag) (save-excursion (eq tag (read buffer))))
1076 (to-eol () (buffer-substring-no-properties
1077 (point) (progn (forward-line 1)
1078 (1- (point)))))
1079 (to-semi () (setq b (point)
1080 e (progn (search-forward ";")
1081 (1- (point)))))
1082 (to-one@ () (setq @-holes nil
1083 b (progn (search-forward "@") (point))
1084 e (progn (while (and (search-forward "@")
1085 (= ?@ (char-after))
1086 (progn
1087 (push (point) @-holes)
1088 (forward-char 1)
1089 (push (point) @-holes))))
1090 (1- (point)))))
1091 (tok+val (set-b+e name &optional proc)
1092 (unless (eq name (setq tok (read buffer)))
1093 (error "Missing `%s' while parsing %s" name context))
1094 (sw)
1095 (funcall set-b+e)
1096 (cons tok (if proc
1097 (funcall proc)
1098 (buffer-substring-no-properties b e))))
1099 (k-semi (name &optional proc) (tok+val 'to-semi name proc))
1100 (gather () (let ((pairs `(,e ,@@-holes ,b))
1101 acc)
1102 (while pairs
1103 (push (buffer-substring-no-properties
1104 (cadr pairs) (car pairs))
1105 acc)
1106 (setq pairs (cddr pairs)))
1107 (apply 'concat acc)))
1108 (k-one@ (name &optional later) (tok+val 'to-one@ name
1109 (if later
1110 (lambda () t)
1111 'gather))))
1112 (save-excursion
1113 (goto-char (point-min))
1114 ;; headers
1115 (setq context 'headers)
1116 (flet ((hpush (name &optional proc)
1117 (push (k-semi name proc) headers)))
1118 (hpush 'head)
1119 (when (at 'branch)
1120 (hpush 'branch))
1121 (hpush 'access)
1122 (hpush 'symbols
1123 (lambda ()
1124 (mapcar (lambda (together)
1125 (let ((two (split-string together ":")))
1126 (setcar two (intern (car two)))
1127 (setcdr two (cadr two))
1128 two))
1129 (split-string
1130 (buffer-substring-no-properties b e)))))
1131 (hpush 'locks))
1132 (push `(strict . ,(when (at 'strict)
1133 (search-forward ";")
1135 headers)
1136 (when (at 'comment)
1137 (push (k-one@ 'comment) headers)
1138 (search-forward ";"))
1139 (when (at 'expand)
1140 (push (k-one@ 'expand) headers)
1141 (search-forward ";"))
1142 (setq headers (nreverse headers))
1143 ;; rev headers
1144 (sw) (setq context 'rev-headers)
1145 (while (looking-at "[0-9]")
1146 (push `(,(to-eol)
1147 ,(k-semi 'date
1148 (lambda ()
1149 (let ((ls (mapcar 'string-to-number
1150 (split-string
1151 (buffer-substring-no-properties
1152 b e)
1153 "\\."))))
1154 ;; Hack the year -- verified to be the
1155 ;; same algorithm used in RCS 5.7.
1156 (when (< (car ls) 100)
1157 (setcar ls (+ 1900 (car ls))))
1158 (apply 'encode-time (nreverse ls)))))
1159 ,@(mapcar 'k-semi '(author state))
1160 ,(k-semi 'branches
1161 (lambda ()
1162 (split-string
1163 (buffer-substring-no-properties b e))))
1164 ,(k-semi 'next))
1165 revs)
1166 (sw))
1167 (setq revs (nreverse revs))
1168 ;; desc
1169 (sw) (setq context 'desc
1170 desc (k-one@ 'desc))
1171 ;; rev bodies
1172 (let (acc
1173 ;; Element of `revs' that initially holds only header info.
1174 ;; "Pairwise combination" occurs when we add body info.
1176 ;; Components of the editing commands (aside from the actual
1177 ;; text) that comprise the `text' printed representations
1178 ;; (not including the "head" revision).
1179 cmd start act
1180 ;; Ascending (reversed) `@-holes' which the internal func
1181 ;; `incg' pops to effect incremental gathering.
1183 ;; Function to extract text (for the `a' command), either
1184 ;; `incg' or `buffer-substring-no-properties'. (This is
1185 ;; for speed; strictly speaking, it is sufficient to use
1186 ;; only the former since it behaves identically to the
1187 ;; latter in the absense of "@@".)
1188 sub)
1189 (flet ((incg (beg end) (let ((b beg) (e end) @-holes)
1190 (while (and asc (< (car asc) e))
1191 (push (pop asc) @-holes))
1192 ;; Self-deprecate when work is done.
1193 ;; Folding many dimensions into one.
1194 ;; Thanks B.Mandelbrot, for complex sum.
1195 ;; O beauteous math! --the Unvexed Bum
1196 (unless asc
1197 (setq sub 'buffer-substring-no-properties))
1198 (gather))))
1199 (while (and (sw)
1200 (not (eobp))
1201 (setq context (to-eol)
1202 rev (or (assoc context revs)
1203 (error "Rev `%s' has body but no head"
1204 context))))
1205 (push (k-one@ 'log) (cdr rev))
1206 ;; For rev body `text' tags, delay translation slightly...
1207 (push (k-one@ 'text t) (cdr rev))
1208 ;; ... until we decide which tag and value is appropriate to
1209 ;; collect. For the "head" revision, compute the value of the
1210 ;; `text' printed representation by simple `gather'. For all
1211 ;; other revisions, replace the `text' tag+value with `:insn'
1212 ;; plus value, always scanning in-place.
1213 (if (string= context (cdr (assq 'head headers)))
1214 (setcdr (cadr rev) (gather))
1215 (if @-holes
1216 (setq asc (nreverse @-holes)
1217 sub 'incg)
1218 (setq sub 'buffer-substring-no-properties))
1219 (goto-char b)
1220 (setq acc nil)
1221 (while (< (point) e)
1222 (forward-char 1)
1223 (setq cmd (char-before)
1224 start (read (current-buffer))
1225 act (read (current-buffer)))
1226 (forward-char 1)
1227 (push (case cmd
1229 ;; `d' means "delete lines".
1230 ;; For Emacs spirit, we use `k' for "kill".
1231 `(,start k ,act))
1233 ;; `a' means "append after this line" but
1234 ;; internally we normalize it so that START
1235 ;; specifies the actual line for insert, thus
1236 ;; requiring less hair in the realization algs.
1237 ;; For Emacs spirit, we use `i' for "insert".
1238 `(,(1+ start) i
1239 ,(funcall sub (point) (progn (forward-line act)
1240 (point)))))
1241 (t (error "Bad command `%c' in `text' for rev `%s'"
1242 cmd context)))
1243 acc))
1244 (goto-char (1+ e))
1245 (setcar (cdr rev) (cons :insn acc)))))))
1246 ;; rv
1247 `((headers ,desc ,@headers)
1248 (revisions ,@revs)))))
1250 (provide 'vc-rcs)
1252 ;; arch-tag: 759b4916-5b0d-431d-b647-b185b8c652cf
1253 ;;; vc-rcs.el ends here