1 ;;; ediff-vers.el --- version control interface to Ediff
3 ;;; Copyright (C) 1995, 96, 97, 2002 Free Software Foundation, Inc.
5 ;; Author: Michael Kifer <kifer@cs.stonybrook.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.
29 (defvar rcs-default-co-switches
)
33 (defvar cvs-cookie-handle
)
34 (defvar ediff-temp-file-prefix
)
38 (let ((load-path (cons (expand-file-name ".") load-path
)))
39 (load "pcl-cvs" 'noerror
)
41 ;; On 8+3 MS-DOS filesystems, generic-x.el is loaded
42 ;; instead of (the missing) generic-sc.el. Since the
43 ;; version of Emacs which supports MS-DOS doesn't have
44 ;; generic-sc, we simply avoid loading it.
45 (or (and (fboundp 'msdos-long-file-names
)
46 (not (msdos-long-file-names)))
47 (load "generic-sc" 'noerror
))
48 ;; (load "vc" 'noerror) ; this sometimes causes compiler error
49 (or (featurep 'ediff-init
)
50 (load "ediff-init.el" nil nil
'nosuffix
))
55 (defun ediff-vc-internal (rev1 rev2
&optional startup-hooks
)
56 ;; Run Ediff on versions of the current buffer.
57 ;; If REV2 is "" then compare current buffer with REV1.
58 ;; If the current buffer is named `F', the version is named `F.~REV~'.
59 ;; If `F.~REV~' already exists, it is used instead of being re-created.
60 (let (file1 file2 rev1buf rev2buf
)
61 (save-window-excursion
63 (vc-version-other-window rev1
)
64 (setq rev1buf
(current-buffer)
65 file1
(buffer-file-name)))
67 (or (string= rev2
"") ; use current buffer
68 (vc-version-other-window rev2
))
69 (setq rev2buf
(current-buffer)
70 file2
(buffer-file-name)))
74 (or ,(string= rev2
"") (delete-file ,file2
)))
82 (defun rcs-ediff-view-revision (&optional rev
)
83 ;; View previous RCS revision of current file.
84 ;; With prefix argument, prompts for a revision name.
85 (interactive (list (if current-prefix-arg
86 (read-string "Revision: "))))
87 (let* ((filename (buffer-file-name (current-buffer)))
88 (switches (append '("-p")
89 (if rev
(list (concat "-r" rev
)) nil
)))
90 (buff (concat (file-name-nondirectory filename
) ".~" rev
"~")))
91 (message "Working ...")
92 (setq filename
(expand-file-name filename
))
93 (with-output-to-temp-buffer buff
94 (ediff-with-current-buffer standard-output
96 (let ((output-buffer (ediff-rcs-get-output-buffer filename buff
)))
97 (delete-windows-on output-buffer
)
99 (set-buffer output-buffer
)
100 (apply 'call-process
"co" nil t nil
101 ;; -q: quiet (no diagnostics)
102 (append switches rcs-default-co-switches
103 (list "-q" filename
)))))
107 (defun ediff-rcs-get-output-buffer (file name
)
108 ;; Get a buffer for RCS output for FILE, make it writable and clean it up.
109 ;; Optional NAME is name to use instead of `*RCS-output*'.
110 ;; This is a modified version from rcs.el v1.1. I use it here to make
111 ;; Ediff immune to changes in rcs.el
112 (let* ((default-major-mode 'fundamental-mode
) ; no frills!
113 (buf (get-buffer-create name
)))
116 (setq buffer-read-only nil
117 default-directory
(file-name-directory (expand-file-name file
)))
121 (defun ediff-rcs-internal (rev1 rev2
&optional startup-hooks
)
122 ;; Run Ediff on versions of the current buffer.
123 ;; If REV2 is "" then use current buffer.
124 (let (rev2buf rev1buf
)
125 (save-window-excursion
126 (setq rev2buf
(if (string= rev2
"")
128 (rcs-ediff-view-revision rev2
))
129 rev1buf
(rcs-ediff-view-revision rev1
)))
131 ;; rcs.el doesn't create temp version files, so we don't have to delete
132 ;; anything in startup hooks to ediff-buffers
133 (ediff-buffers rev1buf rev2buf startup-hooks
'ediff-revision
)
137 ;; GENERIC-SC.el support
139 (defun generic-sc-get-latest-rev ()
140 (cond ((eq sc-mode
'CCASE
)
141 (eval "main/LATEST"))
144 (defun ediff-generic-sc-internal (rev1 rev2
&optional startup-hooks
)
145 ;; Run Ediff on versions of the current buffer.
146 ;; If REV2 is "" then compare current buffer with REV1.
147 ;; If the current buffer is named `F', the version is named `F.~REV~'.
148 ;; If `F.~REV~' already exists, it is used instead of being re-created.
149 (let (rev1buf rev2buf
)
151 (if (or (not rev1
) (string= rev1
""))
152 (setq rev1
(generic-sc-get-latest-rev)))
153 (sc-visit-previous-revision rev1
)
154 (setq rev1buf
(current-buffer)))
156 (or (string= rev2
"") ; use current buffer
157 (sc-visit-previous-revision rev2
))
158 (setq rev2buf
(current-buffer)))
159 (ediff-buffers rev1buf rev2buf startup-hooks
'ediff-revision
)))
162 ;;; Merge with Version Control
164 (defun ediff-vc-merge-internal (rev1 rev2 ancestor-rev
165 &optional startup-hooks merge-buffer-file
)
166 ;; If ANCESTOR-REV non-nil, merge with ancestor
167 (let (buf1 buf2 ancestor-buf
)
168 (save-window-excursion
170 (vc-version-other-window rev1
)
171 (setq buf1
(current-buffer)))
173 (or (string= rev2
"")
174 (vc-version-other-window rev2
))
175 (setq buf2
(current-buffer)))
178 (if (string= ancestor-rev
"")
179 (setq ancestor-rev
(vc-workfile-version buffer-file-name
)))
180 (vc-version-other-window ancestor-rev
)
181 (setq ancestor-buf
(current-buffer))))
185 (delete-file ,(buffer-file-name buf1
))
186 (or ,(string= rev2
"")
187 (delete-file ,(buffer-file-name buf2
)))
188 (or ,(string= ancestor-rev
"")
190 (delete-file ,(buffer-file-name ancestor-buf
)))
194 (ediff-merge-buffers-with-ancestor
195 buf1 buf2 ancestor-buf
196 startup-hooks
'ediff-merge-revisions-with-ancestor merge-buffer-file
)
198 buf1 buf2 startup-hooks
'ediff-merge-revisions merge-buffer-file
))
201 (defun ediff-rcs-merge-internal (rev1 rev2 ancestor-rev
203 startup-hooks merge-buffer-file
)
204 ;; If ANCESTOR-REV non-nil, merge with ancestor
205 (let (buf1 buf2 ancestor-buf
)
206 (save-window-excursion
207 (setq buf1
(rcs-ediff-view-revision rev1
)
208 buf2
(if (string= rev2
"")
210 (rcs-ediff-view-revision rev2
))
211 ancestor-buf
(if ancestor-rev
212 (if (string= ancestor-rev
"")
214 (rcs-ediff-view-revision ancestor-rev
)))))
215 ;; rcs.el doesn't create temp version files, so we don't have to delete
216 ;; anything in startup hooks to ediff-buffers
218 (ediff-merge-buffers-with-ancestor
219 buf1 buf2 ancestor-buf
220 startup-hooks
'ediff-merge-revisions-with-ancestor merge-buffer-file
)
222 buf1 buf2 startup-hooks
'ediff-merge-revisions merge-buffer-file
))))
224 (defun ediff-generic-sc-merge-internal (rev1 rev2 ancestor-rev
226 startup-hooks merge-buffer-file
)
227 ;; If ANCESTOR-REV non-nil, merge with ancestor
228 (let (buf1 buf2 ancestor-buf
)
230 (if (string= rev1
"")
231 (setq rev1
(generic-sc-get-latest-rev)))
232 (sc-visit-previous-revision rev1
)
233 (setq buf1
(current-buffer)))
235 (or (string= rev2
"")
236 (sc-visit-previous-revision rev2
))
237 (setq buf2
(current-buffer)))
240 (or (string= ancestor-rev
"")
241 (sc-visit-previous-revision ancestor-rev
))
242 (setq ancestor-buf
(current-buffer))))
244 (ediff-merge-buffers-with-ancestor
245 buf1 buf2 ancestor-buf
246 startup-hooks
'ediff-merge-revisions-with-ancestor merge-buffer-file
)
248 buf1 buf2 startup-hooks
'ediff-merge-revisions merge-buffer-file
))))
251 ;; PCL-CVS.el support
253 ;; MK: Check. This function doesn't seem to be used any more by pcvs or pcl-cvs
254 (defun cvs-run-ediff-on-file-descriptor (tin)
255 ;; This is a replacement for cvs-emerge-mode
256 ;; Runs after cvs-update.
257 ;; Ediff-merge appropriate revisions of the selected file.
258 (let* ((fileinfo (tin-cookie cvs-cookie-handle tin
))
259 (type (cvs-fileinfo->type fileinfo
))
261 (cvs-retrieve-revision-to-tmpfile fileinfo
))
263 (file-name-as-directory (cvs-fileinfo->dir fileinfo
)))
266 (or (memq type
'(MERGED CONFLICT MODIFIED
))
268 "Can only merge `Modified', `Merged' or `Conflict' files"))
270 (cond ((memq type
'(MERGED CONFLICT
))
272 (cvs-retrieve-revision-to-tmpfile
275 (cvs-fileinfo->base-revision fileinfo
)))
276 (ediff-merge-buffers-with-ancestor
277 (find-file-noselect tmp-file
)
278 (find-file-noselect (cvs-fileinfo->backup-file fileinfo
))
279 (find-file-noselect ancestor-file
)
281 'ediff-merge-revisions-with-ancestor
))
284 (find-file-noselect tmp-file
)
285 (find-file-noselect (cvs-fileinfo->full-path fileinfo
))
288 (if (stringp tmp-file
) (delete-file tmp-file
))
289 (if (stringp ancestor-file
) (delete-file ancestor-file
))))
292 ;;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun)
293 ;;; eval: (put 'ediff-with-current-buffer 'lisp-indent-hook 1)
294 ;;; eval: (put 'ediff-with-current-buffer 'edebug-form-spec '(form body))
297 (provide 'ediff-vers
)
299 ;;; ediff-vers.el ends here