1 ;;; ediff-vers.el --- version control interface to Ediff
3 ;;; Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
5 ;; Author: Michael Kifer <kifer@cs.sunysb.edu>
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
28 (defvar rcs-default-co-switches
)
32 (defvar cvs-cookie-handle
)
33 (defvar ediff-temp-file-prefix
)
37 (load "pcl-cvs" 'noerror
)
39 (load "generic-sc" 'noerror
)
40 (load "vc" 'noerror
)))
44 (defun ediff-vc-internal (rev1 rev2
&optional startup-hooks
)
45 ;; Run Ediff on versions of the current buffer.
46 ;; If REV2 is "" then compare current buffer with REV1.
47 ;; If the current buffer is named `F', the version is named `F.~REV~'.
48 ;; If `F.~REV~' already exists, it is used instead of being re-created.
49 (let (file1 file2 rev1buf rev2buf
)
50 (save-window-excursion
52 (vc-version-other-window rev1
)
53 (setq rev1buf
(current-buffer)
54 file1
(buffer-file-name)))
56 (or (string= rev2
"") ; use current buffer
57 (vc-version-other-window rev2
))
58 (setq rev2buf
(current-buffer)
59 file2
(buffer-file-name)))
63 (or ,(string= rev2
"") (delete-file ,file2
)))
71 (defun rcs-ediff-view-revision (&optional rev
)
72 ;; View previous RCS revision of current file.
73 ;; With prefix argument, prompts for a revision name.
74 (interactive (list (if current-prefix-arg
75 (read-string "Revision: "))))
76 (let* ((filename (buffer-file-name (current-buffer)))
77 (switches (append '("-p")
78 (if rev
(list (concat "-r" rev
)) nil
)))
79 (buff (concat (file-name-nondirectory filename
) ".~" rev
"~")))
80 (message "Working ...")
81 (setq filename
(expand-file-name filename
))
82 (with-output-to-temp-buffer buff
83 (ediff-with-current-buffer standard-output
85 (let ((output-buffer (ediff-rcs-get-output-buffer filename buff
)))
86 (delete-windows-on output-buffer
)
88 (set-buffer output-buffer
)
89 (apply 'call-process
"co" nil t nil
90 ;; -q: quiet (no diagnostics)
91 (append switches rcs-default-co-switches
92 (list "-q" filename
)))))
96 (defun ediff-rcs-get-output-buffer (file name
)
97 ;; Get a buffer for RCS output for FILE, make it writable and clean it up.
98 ;; Optional NAME is name to use instead of `*RCS-output*'.
99 ;; This is a modified version from rcs.el v1.1. I use it here to make
100 ;; Ediff immune to changes in rcs.el
101 (let* ((default-major-mode 'fundamental-mode
) ; no frills!
102 (buf (get-buffer-create name
)))
105 (setq buffer-read-only nil
106 default-directory
(file-name-directory (expand-file-name file
)))
110 (defun ediff-rcs-internal (rev1 rev2
&optional startup-hooks
)
111 ;; Run Ediff on versions of the current buffer.
112 ;; If REV2 is "" then use current buffer.
113 (let (rev2buf rev1buf
)
114 (save-window-excursion
115 (setq rev2buf
(if (string= rev2
"")
117 (rcs-ediff-view-revision rev2
))
118 rev1buf
(rcs-ediff-view-revision rev1
)))
120 ;; rcs.el doesn't create temp version files, so we don't have to delete
121 ;; anything in startup hooks to ediff-buffers
122 (ediff-buffers rev1buf rev2buf startup-hooks
'ediff-revision
)
126 ;; GENERIC-SC.el support
128 (defun generic-sc-get-latest-rev ()
129 (cond ((eq sc-mode
'CCASE
)
130 (eval "main/LATEST"))
133 (defun ediff-generic-sc-internal (rev1 rev2
&optional startup-hooks
)
134 ;; Run Ediff on versions of the current buffer.
135 ;; If REV2 is "" then compare current buffer with REV1.
136 ;; If the current buffer is named `F', the version is named `F.~REV~'.
137 ;; If `F.~REV~' already exists, it is used instead of being re-created.
138 (let (rev1buf rev2buf
)
140 (if (or (not rev1
) (string= rev1
""))
141 (setq rev1
(generic-sc-get-latest-rev)))
142 (sc-visit-previous-revision rev1
)
143 (setq rev1buf
(current-buffer)))
145 (or (string= rev2
"") ; use current buffer
146 (sc-visit-previous-revision rev2
))
147 (setq rev2buf
(current-buffer)))
148 (ediff-buffers rev1buf rev2buf startup-hooks
'ediff-revision
)))
151 ;;; Merge with Version Control
153 (defun ediff-vc-merge-internal (rev1 rev2 ancestor-rev
154 &optional startup-hooks merge-buffer-file
)
155 ;; If ANCESTOR-REV non-nil, merge with ancestor
156 (let (buf1 buf2 ancestor-buf
)
157 (save-window-excursion
159 (vc-version-other-window rev1
)
160 (setq buf1
(current-buffer)))
162 (or (string= rev2
"")
163 (vc-version-other-window rev2
))
164 (setq buf2
(current-buffer)))
167 (if (string= ancestor-rev
"")
168 (setq ancestor-rev
(vc-workfile-version buffer-file-name
)))
169 (vc-version-other-window ancestor-rev
)
170 (setq ancestor-buf
(current-buffer))))
174 (delete-file ,(buffer-file-name buf1
))
175 (or ,(string= rev2
"")
176 (delete-file ,(buffer-file-name buf2
)))
177 (or ,(string= ancestor-rev
"")
179 (delete-file ,(buffer-file-name ancestor-buf
)))
183 (ediff-merge-buffers-with-ancestor
184 buf1 buf2 ancestor-buf
185 startup-hooks
'ediff-merge-revisions-with-ancestor merge-buffer-file
)
187 buf1 buf2 startup-hooks
'ediff-merge-revisions merge-buffer-file
))
190 (defun ediff-rcs-merge-internal (rev1 rev2 ancestor-rev
192 startup-hooks merge-buffer-file
)
193 ;; If ANCESTOR-REV non-nil, merge with ancestor
194 (let (buf1 buf2 ancestor-buf
)
195 (save-window-excursion
196 (setq buf1
(rcs-ediff-view-revision rev1
)
197 buf2
(if (string= rev2
"")
199 (rcs-ediff-view-revision rev2
))
200 ancestor-buf
(if ancestor-rev
201 (if (string= ancestor-rev
"")
203 (rcs-ediff-view-revision ancestor-rev
)))))
204 ;; rcs.el doesn't create temp version files, so we don't have to delete
205 ;; anything in startup hooks to ediff-buffers
207 (ediff-merge-buffers-with-ancestor
208 buf1 buf2 ancestor-buf
209 startup-hooks
'ediff-merge-revisions-with-ancestor merge-buffer-file
)
211 buf1 buf2 startup-hooks
'ediff-merge-revisions merge-buffer-file
))))
213 (defun ediff-generic-sc-merge-internal (rev1 rev2 ancestor-rev
215 startup-hooks merge-buffer-file
)
216 ;; If ANCESTOR-REV non-nil, merge with ancestor
217 (let (buf1 buf2 ancestor-buf
)
219 (if (string= rev1
"")
220 (setq rev1
(generic-sc-get-latest-rev)))
221 (sc-visit-previous-revision rev1
)
222 (setq buf1
(current-buffer)))
224 (or (string= rev2
"")
225 (sc-visit-previous-revision rev2
))
226 (setq buf2
(current-buffer)))
229 (or (string= ancestor-rev
"")
230 (sc-visit-previous-revision ancestor-rev
))
231 (setq ancestor-buf
(current-buffer))))
233 (ediff-merge-buffers-with-ancestor
234 buf1 buf2 ancestor-buf
235 startup-hooks
'ediff-merge-revisions-with-ancestor merge-buffer-file
)
237 buf1 buf2 startup-hooks
'ediff-merge-revisions merge-buffer-file
))))
240 ;; PCL-CVS.el support
243 (defun cvs-run-ediff-on-file-descriptor (tin)
244 ;; This is a replacement for cvs-emerge-mode
245 ;; Runs after cvs-update.
246 ;; Ediff-merge appropriate revisions of the selected file.
247 (let* ((fileinfo (tin-cookie cvs-cookie-handle tin
))
248 (type (cvs-fileinfo->type fileinfo
))
250 (cvs-retrieve-revision-to-tmpfile fileinfo
))
252 (file-name-as-directory (cvs-fileinfo->dir fileinfo
)))
255 (or (memq type
'(MERGED CONFLICT MODIFIED
))
257 "Can only merge `Modified', `Merged' or `Conflict' files"))
259 (cond ((memq type
'(MERGED CONFLICT
))
261 (cvs-retrieve-revision-to-tmpfile
264 (cvs-fileinfo->base-revision fileinfo
)))
265 (ediff-merge-buffers-with-ancestor
266 (find-file-noselect tmp-file
)
267 (find-file-noselect (cvs-fileinfo->backup-file fileinfo
))
268 (find-file-noselect ancestor-file
)
270 'ediff-merge-revisions-with-ancestor
))
273 (find-file-noselect tmp-file
)
274 (find-file-noselect (cvs-fileinfo->full-path fileinfo
))
277 (if (stringp tmp-file
) (delete-file tmp-file
))
278 (if (stringp ancestor-file
) (delete-file ancestor-file
))))
281 ;;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun)
282 ;;; eval: (put 'ediff-with-current-buffer 'lisp-indent-hook 1)
283 ;;; eval: (put 'ediff-with-current-buffer 'edebug-form-spec '(form body))
286 (provide 'ediff-vers
)
288 ;;; ediff-vers.el ends here