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