0
|
1 ;;; ediff-diff.el --- diff-related utilities
|
|
2
|
82
|
3 ;; Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
|
0
|
4
|
|
5 ;; Author: Michael Kifer <kifer@cs.sunysb.edu>
|
|
6
|
|
7 ;; This file is part of GNU Emacs.
|
|
8
|
|
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)
|
|
12 ;; any later version.
|
|
13
|
|
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.
|
|
18
|
|
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.
|
|
23
|
|
24 ;;; Code:
|
|
25
|
80
|
26 (provide 'ediff-diff)
|
|
27
|
|
28 ;; compiler pacifier
|
|
29 (defvar ediff-default-variant)
|
|
30
|
|
31 (eval-when-compile
|
82
|
32 (let ((load-path (cons (expand-file-name ".") load-path)))
|
80
|
33 (or (featurep 'ediff-init)
|
|
34 (load "ediff-init.el" nil nil 'nosuffix))
|
|
35 (or (featurep 'ediff-util)
|
|
36 (load "ediff-util.el" nil nil 'nosuffix))
|
|
37 ))
|
|
38 ;; end pacifier
|
|
39
|
0
|
40 (require 'ediff-init)
|
|
41
|
134
|
42 (defgroup ediff-diff nil
|
|
43 "Diff related utilities"
|
|
44 :prefix "ediff-"
|
|
45 :group 'ediff)
|
0
|
46
|
134
|
47
|
|
48 (defcustom ediff-shell
|
0
|
49 (cond ((eq system-type 'emx) "cmd") ; OS/2
|
|
50 ((memq system-type '(ms-dos windows-nt windows-95))
|
|
51 shell-file-name) ; no standard name on MS-DOS
|
|
52 ((memq system-type '(vax-vms axp-vms)) "*dcl*") ; VMS
|
|
53 (t "sh")) ; UNIX
|
|
54 "*The shell used to run diff and patch. If user's .profile or
|
|
55 .cshrc files are set up correctly, any shell will do. However, some people
|
|
56 set $prompt or other things incorrectly, which leads to undesirable output
|
|
57 messages. These may cause Ediff to fail. In such a case, set ediff-shell
|
134
|
58 to a shell that you are not using or, better, fix your shell's startup file."
|
|
59 :type 'string
|
|
60 :group 'ediff-diff)
|
0
|
61
|
|
62
|
134
|
63 (defcustom ediff-diff-program "diff"
|
|
64 "*Program to use for generating the differential of the two files."
|
|
65 :type 'string
|
|
66 :group 'ediff-diff)
|
|
67 (defcustom ediff-diff-options ""
|
0
|
68 "*Options to pass to `ediff-diff-program'.
|
|
69 If diff\(1\) is used as `ediff-diff-program', then the most useful options are
|
|
70 `-w', to ignore space, and `-i', to ignore case of letters.
|
|
71 At present, the option `-c' is ignored, since Ediff doesn't understand this
|
134
|
72 type of output."
|
|
73 :type 'string
|
|
74 :group 'ediff-diff)
|
0
|
75
|
134
|
76 (defcustom ediff-custom-diff-program ediff-diff-program
|
0
|
77 "*Program to use for generating custom diff output for saving it in a file.
|
134
|
78 This output is not used by Ediff internally."
|
|
79 :type 'string
|
|
80 :group 'ediff-diff)
|
|
81 (defcustom ediff-custom-diff-options "-c"
|
|
82 "*Options to pass to `ediff-custom-diff-program'."
|
|
83 :type 'string
|
|
84 :group 'ediff-diff)
|
0
|
85
|
|
86 ;;; Support for diff3
|
|
87
|
|
88 (defvar ediff-match-diff3-line "^====\\(.?\\)$"
|
|
89 "Pattern to match lines produced by diff3 that describe differences.")
|
134
|
90 (defcustom ediff-diff3-program "diff3"
|
0
|
91 "*Program to be used for three-way comparison.
|
134
|
92 Must produce output compatible with Unix's diff3 program."
|
|
93 :type 'string
|
|
94 :group 'ediff-diff)
|
|
95 (defcustom ediff-diff3-options ""
|
|
96 "*Options to pass to `ediff-diff3-program'."
|
|
97 :type 'string
|
|
98 :group 'ediff-diff)
|
|
99 (defcustom ediff-diff3-ok-lines-regexp
|
0
|
100 "^\\([1-3]:\\|====\\| \\|.*Warning *:\\|.*No newline\\|.*missing newline\\|^\C-m$\\)"
|
|
101 "*Regexp that matches normal output lines from `ediff-diff3-program'.
|
134
|
102 Lines that do not match are assumed to be error messages."
|
|
103 :type 'regexp
|
|
104 :group 'ediff-diff)
|
0
|
105
|
|
106 ;; keeps the status of the current diff in 3-way jobs.
|
|
107 ;; the status can be =diff(A), =diff(B), or =diff(A+B)
|
|
108 (ediff-defvar-local ediff-diff-status "" "")
|
|
109
|
|
110
|
|
111 ;;; Fine differences
|
|
112
|
|
113 (ediff-defvar-local ediff-auto-refine (if (ediff-has-face-support-p) 'on 'nix)
|
|
114 "If `on', Ediff auto-highlights fine diffs for the current diff region.
|
|
115 If `off', auto-highlighting is not used. If `nix', no fine diffs are shown
|
|
116 at all, unless the user force-refines the region by hitting `*'.
|
|
117
|
|
118 This variable can be set either in .emacs or toggled interactively.
|
|
119 Use `setq-default' if setting it in .emacs")
|
|
120
|
|
121 (ediff-defvar-local ediff-ignore-similar-regions nil
|
|
122 "*If t, skip over difference regions that differ only in the white space and line breaks.
|
|
123 This variable can be set either in .emacs or toggled interactively.
|
|
124 Use `setq-default' if setting it in .emacs")
|
|
125
|
|
126 (ediff-defvar-local ediff-auto-refine-limit 1400
|
|
127 "*Auto-refine only the regions of this size \(in bytes\) or less.")
|
|
128
|
|
129 ;;; General
|
|
130
|
|
131 (defvar ediff-diff-ok-lines-regexp
|
|
132 "^\\([0-9,]+[acd][0-9,]+$\\|[<>] \\|---\\|.*Warning *:\\|.*No +newline\\|.*missing +newline\\|^\C-m$\\)"
|
|
133 "Regexp that matches normal output lines from `ediff-diff-program'.
|
|
134 This is mostly lifted from Emerge, except that Ediff also considers
|
|
135 warnings and `Missing newline'-type messages to be normal output.
|
|
136 Lines that do not match are assumed to be error messages.")
|
|
137
|
|
138 (defvar ediff-match-diff-line (let ((x "\\([0-9]+\\)\\(\\|,\\([0-9]+\\)\\)"))
|
|
139 (concat "^" x "\\([acd]\\)" x "$"))
|
|
140 "Pattern to match lines produced by diff that describe differences.")
|
|
141
|
|
142 (ediff-defvar-local ediff-setup-diff-regions-function nil
|
|
143 "value is a function symbol depending on the kind of job is to be done.
|
|
144 For 2-way jobs and for ediff-merge, it should be `ediff-setup-diff-regions'.
|
|
145 For jobs requiring diff3, it should be `ediff-setup-diff-regions3'.
|
|
146
|
|
147 The function should take three mandatory arguments, file-A, file-B, and
|
|
148 file-C. It may ignore file C for diff2 jobs. It should also take
|
|
149 one optional arguments, diff-number to refine.")
|
|
150
|
|
151
|
|
152 ;;; Functions
|
|
153
|
|
154 ;; Generate the difference vector and overlays for the two files
|
|
155 ;; With optional arg REG-TO-REFINE, refine this region.
|
|
156 ;; File-C argument is not used here. It is there just because
|
|
157 ;; ediff-setup-diff-regions is called via a funcall to
|
|
158 ;; ediff-setup-diff-regions-function, which can also have the value
|
|
159 ;; ediff-setup-diff-regions3, which takes 4 arguments.
|
|
160 (defun ediff-setup-diff-regions (file-A file-B file-C)
|
|
161 ;;; ;; Force all minibuffers to display ediff's messages.
|
|
162 ;;; ;; When xemacs implements minibufferless frames, this won't be necessary
|
|
163 ;;; (if ediff-xemacs-p (setq synchronize-minibuffers t))
|
|
164
|
|
165 ;; create, if it doesn't exist
|
|
166 (or (ediff-buffer-live-p ediff-diff-buffer)
|
|
167 (setq ediff-diff-buffer
|
|
168 (get-buffer-create (ediff-unique-buffer-name "*ediff-diff" "*"))))
|
|
169 (ediff-make-diff2-buffer ediff-diff-buffer file-A file-B)
|
|
170 (ediff-prepare-error-list ediff-diff-ok-lines-regexp ediff-diff-buffer)
|
|
171 (ediff-convert-diffs-to-overlays
|
|
172 (ediff-extract-diffs
|
|
173 ediff-diff-buffer ediff-word-mode ediff-narrow-bounds)))
|
|
174
|
|
175 ;; Run the diff program on FILE1 and FILE2 and put the output in DIFF-BUFFER
|
|
176 ;; Return the size of DIFF-BUFFER
|
|
177 (defun ediff-make-diff2-buffer (diff-buffer file1 file2)
|
78
|
178 (let ((file1-size (ediff-file-size file1))
|
|
179 (file2-size (ediff-file-size file2)))
|
|
180 (cond ((not (numberp file1-size))
|
|
181 (message "Can't find file: %s"
|
|
182 (ediff-abbreviate-file-name file1))
|
|
183 (sit-for 2)
|
|
184 ;; 1 is an error exit code
|
|
185 1)
|
|
186 ((not (numberp file2-size))
|
|
187 (message "Can't find file: %s"
|
|
188 (ediff-abbreviate-file-name file2))
|
|
189 (sit-for 2)
|
|
190 ;; 1 is an error exit code
|
|
191 1)
|
|
192 ((< file1-size 0)
|
|
193 (message "Can't diff remote files: %s"
|
|
194 (ediff-abbreviate-file-name file1))
|
|
195 (sit-for 2)
|
|
196 ;; 1 is an error exit code
|
|
197 1)
|
|
198 ((< file2-size 0)
|
|
199 (message "Can't diff remote file: %s"
|
|
200 (ediff-abbreviate-file-name file2))
|
|
201 (sit-for 2)
|
0
|
202 (message "")
|
78
|
203 ;; 1 is an error exit code
|
|
204 1)
|
|
205 (t (message "Computing differences between %s and %s ..."
|
|
206 (file-name-nondirectory file1)
|
|
207 (file-name-nondirectory file2))
|
|
208 ;; this erases the diff buffer automatically
|
|
209 (ediff-exec-process ediff-diff-program
|
|
210 diff-buffer
|
|
211 'synchronize
|
|
212 ediff-diff-options file1 file2)
|
|
213 ;;(message "Computing differences ... done")
|
|
214 (message "")
|
|
215 (ediff-eval-in-buffer diff-buffer
|
|
216 (buffer-size))))))
|
0
|
217
|
|
218
|
|
219
|
|
220 ;; If file-A/B/C is nil, do 2-way comparison with the non-nil buffers
|
|
221 ;; This function works for diff3 and diff2 jobs
|
|
222 (defun ediff-setup-fine-diff-regions (file-A file-B file-C reg-num)
|
|
223 (or (ediff-buffer-live-p ediff-fine-diff-buffer)
|
|
224 (setq ediff-fine-diff-buffer
|
|
225 (get-buffer-create
|
|
226 (ediff-unique-buffer-name "*ediff-fine-diff" "*"))))
|
|
227
|
|
228 (let (diff3-job diff-program diff-options ok-regexp diff-list)
|
|
229 (setq diff3-job ediff-3way-job
|
|
230 diff-program (if diff3-job ediff-diff3-program ediff-diff-program)
|
|
231 diff-options (if diff3-job ediff-diff3-options ediff-diff-options)
|
|
232 ok-regexp (if diff3-job
|
|
233 ediff-diff3-ok-lines-regexp
|
|
234 ediff-diff-ok-lines-regexp))
|
|
235
|
|
236 (ediff-message-if-verbose "Refining difference region %d ..." (1+ reg-num))
|
|
237 (ediff-exec-process diff-program ediff-fine-diff-buffer 'synchronize
|
|
238 diff-options
|
|
239 ;; The shuffle below is because we can compare 3-way
|
|
240 ;; or in several 2-way fashions, like fA fC, fA fB,
|
|
241 ;; or fB fC.
|
|
242 (if file-A file-A file-B)
|
|
243 (if file-B file-B file-A)
|
|
244 (if diff3-job
|
|
245 (if file-C file-C file-B))
|
|
246 ) ; exec process
|
|
247
|
|
248 (ediff-prepare-error-list ok-regexp ediff-fine-diff-buffer)
|
|
249 (ediff-message-if-verbose
|
|
250 "")
|
|
251 ;; "Refining difference region %d ... done" (1+ reg-num))
|
|
252
|
|
253 (setq diff-list
|
|
254 (if diff3-job
|
|
255 (ediff-extract-diffs3
|
|
256 ediff-fine-diff-buffer '3way-comparison 'word-mode)
|
|
257 (ediff-extract-diffs ediff-fine-diff-buffer 'word-mode)))
|
|
258 ;; fixup diff-list
|
|
259 (if diff3-job
|
|
260 (cond ((not file-A)
|
|
261 (mapcar (function (lambda (elt)
|
|
262 (aset elt 0 nil)
|
|
263 (aset elt 1 nil)))
|
|
264 (cdr diff-list)))
|
|
265 ((not file-B)
|
|
266 (mapcar (function (lambda (elt)
|
|
267 (aset elt 2 nil)
|
|
268 (aset elt 3 nil)))
|
|
269 (cdr diff-list)))
|
|
270 ((not file-C)
|
|
271 (mapcar (function (lambda (elt)
|
|
272 (aset elt 4 nil)
|
|
273 (aset elt 5 nil)))
|
|
274 (cdr diff-list)))
|
|
275 ))
|
|
276
|
|
277 (ediff-convert-fine-diffs-to-overlays diff-list reg-num)
|
|
278 ))
|
|
279
|
|
280
|
|
281 (defun ediff-prepare-error-list (ok-regexp diff-buff)
|
|
282 (or (ediff-buffer-live-p ediff-error-buffer)
|
|
283 (setq ediff-error-buffer
|
|
284 (get-buffer-create (ediff-unique-buffer-name
|
|
285 "*ediff-errors" "*"))))
|
|
286 (ediff-eval-in-buffer ediff-error-buffer
|
|
287 (erase-buffer)
|
|
288 (insert (ediff-eval-in-buffer diff-buff (buffer-string)))
|
|
289 (goto-char (point-min))
|
|
290 (delete-matching-lines ok-regexp)
|
|
291 (if (memq system-type '(vax-vms axp-vms))
|
|
292 (delete-matching-lines "^$")))
|
|
293 ;; If diff reports errors, show them then quit.
|
|
294 (if (/= 0 (ediff-eval-in-buffer ediff-error-buffer (buffer-size)))
|
|
295 (let ((ctl-buf ediff-control-buffer)
|
|
296 (error-buf ediff-error-buffer))
|
|
297 (ediff-skip-unsuitable-frames)
|
|
298 (switch-to-buffer error-buf)
|
|
299 (ediff-kill-buffer-carefully ctl-buf)
|
|
300 (error "Errors in diff output. Diff output is in %S" diff-buff))))
|
|
301
|
|
302 ;; BOUNDS specifies visibility bounds to use.
|
|
303 ;; WORD-MODE tells whether we are in the word-mode or not.
|
|
304 ;; If WORD-MODE, also construct vector of diffs using word numbers.
|
|
305 ;; Else, use point values.
|
|
306 ;; This function handles diff-2 jobs including the case of
|
|
307 ;; merging buffers and files without ancestor.
|
|
308 (defun ediff-extract-diffs (diff-buffer word-mode &optional bounds)
|
|
309 (let ((A-buffer ediff-buffer-A)
|
|
310 (B-buffer ediff-buffer-B)
|
|
311 (C-buffer ediff-buffer-C)
|
|
312 (a-prev 1) ; this is needed to set the first diff line correctly
|
|
313 (b-prev 1)
|
|
314 (c-prev 1)
|
|
315 diff-list shift-A shift-B
|
|
316 )
|
|
317
|
|
318 ;; diff list contains word numbers, unless changed later
|
|
319 (setq diff-list (cons (if word-mode 'words 'points)
|
|
320 diff-list))
|
|
321 ;; we don't use visibility bounds for buffer C when merging
|
|
322 (if bounds
|
|
323 (setq shift-A
|
|
324 (ediff-overlay-start
|
|
325 (ediff-get-value-according-to-buffer-type 'A bounds))
|
|
326 shift-B
|
|
327 (ediff-overlay-start
|
|
328 (ediff-get-value-according-to-buffer-type 'B bounds))))
|
|
329
|
|
330 ;; reset point in buffers A/B/C
|
|
331 (ediff-eval-in-buffer A-buffer
|
|
332 (goto-char (if shift-A shift-A (point-min))))
|
|
333 (ediff-eval-in-buffer B-buffer
|
|
334 (goto-char (if shift-B shift-B (point-min))))
|
|
335 (if (ediff-buffer-live-p C-buffer)
|
|
336 (ediff-eval-in-buffer C-buffer
|
|
337 (goto-char (point-min))))
|
|
338
|
|
339 (ediff-eval-in-buffer diff-buffer
|
|
340 (goto-char (point-min))
|
|
341 (while (re-search-forward ediff-match-diff-line nil t)
|
|
342 (let* ((a-begin (string-to-int (buffer-substring (match-beginning 1)
|
|
343 (match-end 1))))
|
|
344 (a-end (let ((b (match-beginning 3))
|
|
345 (e (match-end 3)))
|
|
346 (if b
|
|
347 (string-to-int (buffer-substring b e))
|
|
348 a-begin)))
|
|
349 (diff-type (buffer-substring (match-beginning 4) (match-end 4)))
|
|
350 (b-begin (string-to-int (buffer-substring (match-beginning 5)
|
|
351 (match-end 5))))
|
|
352 (b-end (let ((b (match-beginning 7))
|
|
353 (e (match-end 7)))
|
|
354 (if b
|
|
355 (string-to-int (buffer-substring b e))
|
|
356 b-begin)))
|
|
357 a-begin-pt a-end-pt b-begin-pt b-end-pt
|
|
358 c-begin c-end c-begin-pt c-end-pt)
|
|
359 ;; fix the beginning and end numbers, because diff is somewhat
|
|
360 ;; strange about how it numbers lines
|
|
361 (if (string-equal diff-type "a")
|
|
362 (setq b-end (1+ b-end)
|
|
363 a-begin (1+ a-begin)
|
|
364 a-end a-begin)
|
|
365 (if (string-equal diff-type "d")
|
|
366 (setq a-end (1+ a-end)
|
|
367 b-begin (1+ b-begin)
|
|
368 b-end b-begin)
|
|
369 ;; (string-equal diff-type "c")
|
|
370 (setq a-end (1+ a-end)
|
|
371 b-end (1+ b-end))))
|
|
372
|
|
373 (if (eq ediff-default-variant 'default-B)
|
|
374 (setq c-begin b-begin
|
|
375 c-end b-end)
|
|
376 (setq c-begin a-begin
|
|
377 c-end a-end))
|
|
378
|
|
379 ;; compute main diff vector
|
|
380 (if word-mode
|
|
381 ;; make diff-list contain word numbers
|
|
382 (setq diff-list
|
|
383 (nconc diff-list
|
|
384 (list
|
|
385 (if (ediff-buffer-live-p C-buffer)
|
|
386 (vector (- a-begin a-prev) (- a-end a-begin)
|
|
387 (- b-begin b-prev) (- b-end b-begin)
|
|
388 (- c-begin c-prev) (- c-end c-begin)
|
|
389 nil nil ; dummy ancestor
|
|
390 nil ; state of diff
|
|
391 nil ; state of merge
|
|
392 nil ; state of ancestor
|
|
393 )
|
|
394 (vector (- a-begin a-prev) (- a-end a-begin)
|
|
395 (- b-begin b-prev) (- b-end b-begin)
|
|
396 nil nil ; dummy buf C
|
|
397 nil nil ; dummy ancestor
|
|
398 nil ; state of diff
|
|
399 nil ; state of merge
|
|
400 nil ; state of ancestor
|
|
401 ))
|
|
402 ))
|
|
403 a-prev a-end
|
|
404 b-prev b-end
|
|
405 c-prev c-end)
|
|
406 ;; else convert lines to points
|
|
407 (ediff-eval-in-buffer A-buffer
|
|
408 (forward-line (- a-begin a-prev))
|
|
409 (setq a-begin-pt (point))
|
|
410 (forward-line (- a-end a-begin))
|
|
411 (setq a-end-pt (point)
|
|
412 a-prev a-end))
|
|
413 (ediff-eval-in-buffer B-buffer
|
|
414 (forward-line (- b-begin b-prev))
|
|
415 (setq b-begin-pt (point))
|
|
416 (forward-line (- b-end b-begin))
|
|
417 (setq b-end-pt (point)
|
|
418 b-prev b-end))
|
|
419 (if (ediff-buffer-live-p C-buffer)
|
|
420 (ediff-eval-in-buffer C-buffer
|
|
421 (forward-line (- c-begin c-prev))
|
|
422 (setq c-begin-pt (point))
|
|
423 (forward-line (- c-end c-begin))
|
|
424 (setq c-end-pt (point)
|
|
425 c-prev c-end)))
|
|
426 (setq diff-list
|
|
427 (nconc
|
|
428 diff-list
|
|
429 (list
|
|
430 (if (ediff-buffer-live-p C-buffer)
|
|
431 (vector
|
|
432 a-begin-pt a-end-pt b-begin-pt b-end-pt
|
|
433 c-begin-pt c-end-pt
|
|
434 nil nil ; dummy ancestor
|
|
435 ;; state of diff
|
|
436 ;; shows which buff is different from the other two
|
|
437 (if (eq ediff-default-variant 'default-B) 'A 'B)
|
|
438 ediff-default-variant ; state of merge
|
|
439 nil ; state of ancestor
|
|
440 )
|
|
441 (vector a-begin-pt a-end-pt
|
|
442 b-begin-pt b-end-pt
|
|
443 nil nil ; dummy buf C
|
|
444 nil nil ; dummy ancestor
|
|
445 nil nil ; dummy state of diff & merge
|
|
446 nil ; dummy state of ancestor
|
|
447 )))
|
|
448 )))
|
|
449
|
|
450 ))) ; end ediff-eval-in-buffer
|
|
451 diff-list
|
|
452 ))
|
|
453
|
|
454
|
|
455 (defun ediff-convert-diffs-to-overlays (diff-list)
|
|
456 (ediff-set-diff-overlays-in-one-buffer 'A diff-list)
|
|
457 (ediff-set-diff-overlays-in-one-buffer 'B diff-list)
|
|
458 (if ediff-3way-job
|
|
459 (ediff-set-diff-overlays-in-one-buffer 'C diff-list))
|
|
460 (if ediff-merge-with-ancestor-job
|
|
461 (ediff-set-diff-overlays-in-one-buffer 'Ancestor diff-list))
|
|
462 ;; set up vector showing the status of merge regions
|
|
463 (if ediff-merge-job
|
|
464 (setq ediff-state-of-merge
|
|
465 (vconcat
|
|
466 (mapcar (function
|
|
467 (lambda (elt)
|
|
468 (let ((state-of-merge (aref elt 9))
|
|
469 (state-of-ancestor (aref elt 10)))
|
|
470 (vector
|
|
471 (if state-of-merge (format "%S" state-of-merge))
|
|
472 state-of-ancestor))))
|
|
473 ;; the first elt designates type of list
|
|
474 (cdr diff-list))
|
|
475 )))
|
|
476 (message "Processing difference regions ... done"))
|
|
477
|
|
478
|
|
479 (defun ediff-set-diff-overlays-in-one-buffer (buf-type diff-list)
|
|
480 (let* ((current-diff -1)
|
|
481 (buff (ediff-get-buffer buf-type))
|
|
482 ;; ediff-extract-diffs puts the type of diff-list as the first elt
|
|
483 ;; of this list. The type is either 'points or 'words
|
|
484 (diff-list-type (car diff-list))
|
|
485 (shift (ediff-overlay-start
|
|
486 (ediff-get-value-according-to-buffer-type
|
|
487 buf-type ediff-narrow-bounds)))
|
|
488 (limit (ediff-overlay-end
|
|
489 (ediff-get-value-according-to-buffer-type
|
|
490 buf-type ediff-narrow-bounds)))
|
|
491 diff-overlay-list list-element total-diffs
|
|
492 begin end pt-saved overlay state-of-diff)
|
|
493
|
|
494 (setq diff-list (cdr diff-list)) ; discard diff list type
|
|
495 (setq total-diffs (length diff-list))
|
|
496
|
|
497 ;; shift, if necessary
|
|
498 (ediff-eval-in-buffer buff (setq pt-saved shift))
|
|
499
|
|
500 (while diff-list
|
|
501 (setq current-diff (1+ current-diff)
|
|
502 list-element (car diff-list)
|
|
503 begin (aref list-element (cond ((eq buf-type 'A) 0)
|
|
504 ((eq buf-type 'B) 2)
|
|
505 ((eq buf-type 'C) 4)
|
|
506 (t 6))) ; Ancestor
|
|
507 end (aref list-element (cond ((eq buf-type 'A) 1)
|
|
508 ((eq buf-type 'B) 3)
|
|
509 ((eq buf-type 'C) 5)
|
|
510 (t 7))) ; Ancestor
|
|
511 state-of-diff (aref list-element 8)
|
|
512 )
|
|
513
|
|
514 (cond ((and (not (eq buf-type state-of-diff))
|
|
515 (not (eq buf-type 'Ancestor))
|
|
516 (memq state-of-diff '(A B C)))
|
|
517 (setq state-of-diff
|
|
518 (car (delq buf-type (delq state-of-diff (list 'A 'B 'C)))))
|
|
519 (setq state-of-diff (format "=diff(%S)" state-of-diff))
|
|
520 )
|
|
521 (t (setq state-of-diff nil)))
|
|
522
|
|
523 ;; Put overlays at appropriate places in buffer
|
|
524 ;; convert word numbers to points, if necessary
|
|
525 (if (eq diff-list-type 'words)
|
|
526 (progn
|
|
527 (ediff-eval-in-buffer buff (goto-char pt-saved))
|
|
528 (setq begin (ediff-goto-word (1+ begin) buff)
|
|
529 end (ediff-goto-word end buff 'end))
|
|
530 (if (> end limit) (setq end limit))
|
|
531 (if (> begin end) (setq begin end))
|
|
532 (setq pt-saved (ediff-eval-in-buffer buff (point)))))
|
|
533 (setq overlay (ediff-make-bullet-proof-overlay begin end buff))
|
|
534
|
|
535 (ediff-overlay-put overlay 'priority ediff-shadow-overlay-priority)
|
|
536 (ediff-overlay-put overlay 'ediff-diff-num current-diff)
|
|
537 (if (and (ediff-has-face-support-p)
|
|
538 ediff-use-faces ediff-highlight-all-diffs)
|
|
539 (ediff-set-overlay-face
|
|
540 overlay (ediff-background-face buf-type current-diff)))
|
|
541
|
|
542 (if (= 0 (mod current-diff 10))
|
|
543 (message "Buffer %S: Processing difference region %d of %d"
|
|
544 buf-type current-diff total-diffs))
|
|
545 ;; record all overlays for this difference
|
|
546 ;; the second elt, nil, is a place holder for the fine diff vector.
|
|
547 ;; the third elt, nil, is a place holder for no-fine-diffs flag.
|
|
548 (setq diff-overlay-list
|
|
549 (nconc
|
|
550 diff-overlay-list
|
|
551 (list (vector overlay nil nil state-of-diff)))
|
|
552 diff-list
|
|
553 (cdr diff-list))
|
|
554 ) ; while
|
|
555
|
|
556 (set (intern (format "ediff-difference-vector-%S" buf-type))
|
|
557 (vconcat diff-overlay-list))
|
|
558 ))
|
|
559
|
|
560 ;; `n' is the diff region to work on. Default is ediff-current-difference.
|
|
561 ;; if `flag' is 'noforce then make fine-diffs only if this region's fine
|
|
562 ;; diffs have not been computed before.
|
|
563 ;; if `flag' is 'skip then don't compute fine diffs for this region.
|
|
564 (defun ediff-make-fine-diffs (&optional n flag)
|
|
565 (or n (setq n ediff-current-difference))
|
|
566
|
|
567 (if (< ediff-number-of-differences 1)
|
|
568 (error ediff-NO-DIFFERENCES))
|
|
569
|
|
570 (if ediff-word-mode
|
|
571 (setq flag 'skip
|
|
572 ediff-auto-refine 'nix))
|
|
573
|
|
574 (or (< n 0)
|
|
575 (>= n ediff-number-of-differences)
|
|
576 ;; n is within the range
|
|
577 (let ((tmp-buffer (get-buffer-create ediff-tmp-buffer))
|
|
578 (file-A ediff-temp-file-A)
|
|
579 (file-B ediff-temp-file-B)
|
|
580 (file-C ediff-temp-file-C)
|
|
581 (empty-A (ediff-empty-diff-region-p n 'A))
|
|
582 (empty-B (ediff-empty-diff-region-p n 'B))
|
|
583 (empty-C (ediff-empty-diff-region-p n 'C))
|
|
584 (whitespace-A (ediff-whitespace-diff-region-p n 'A))
|
|
585 (whitespace-B (ediff-whitespace-diff-region-p n 'B))
|
|
586 (whitespace-C (ediff-whitespace-diff-region-p n 'C))
|
|
587 cumulative-fine-diff-length)
|
|
588
|
|
589 (cond ((and (eq flag 'noforce) (ediff-get-fine-diff-vector n 'A))
|
|
590 ;; don't compute fine diffs if diff vector exists
|
|
591 (if (ediff-no-fine-diffs-p n)
|
|
592 ;;(ediff-message-if-verbose
|
|
593 (message
|
|
594 "Only white-space differences in region %d" (1+ n))))
|
|
595 ;; If one of the regions is empty (or 2 in 3way comparison)
|
|
596 ;; then don't refine.
|
|
597 ;; If the region happens to be entirely whitespace or empty then
|
|
598 ;; mark as such.
|
|
599 ((> (length (delq nil (list empty-A empty-B empty-C))) 1)
|
|
600 (if (and (ediff-looks-like-combined-merge n)
|
|
601 ediff-merge-job)
|
|
602 (ediff-set-fine-overlays-in-one-buffer 'C nil n))
|
|
603 (if ediff-3way-comparison-job
|
|
604 (ediff-message-if-verbose
|
|
605 "Region %d is empty in all buffers but %S"
|
|
606 (1+ n)
|
|
607 (cond ((not empty-A) 'A)
|
|
608 ((not empty-B) 'B)
|
|
609 ((not empty-C) 'C)))
|
|
610 (ediff-message-if-verbose
|
|
611 "Region %d in buffer %S is empty"
|
|
612 (1+ n)
|
|
613 (cond (empty-A 'A)
|
|
614 (empty-B 'B)
|
|
615 (empty-C 'C)))
|
|
616 )
|
|
617 ;; if all regions happen to be whitespace
|
|
618 (if (and whitespace-A whitespace-B whitespace-C)
|
|
619 ;; mark as space only
|
|
620 (ediff-mark-diff-as-space-only n t)
|
|
621 ;; if some regions are white and others don't, then mark as
|
|
622 ;; non-white-space-only
|
|
623 (ediff-mark-diff-as-space-only n nil)))
|
|
624 ;; don't compute fine diffs for this region
|
|
625 ((eq flag 'skip)
|
|
626 (or (ediff-get-fine-diff-vector n 'A)
|
|
627 (memq ediff-auto-refine '(off nix))
|
|
628 (ediff-message-if-verbose
|
|
629 "Region %d exceeds auto-refine limit. Type `%s' to refine"
|
|
630 (1+ n)
|
|
631 (substitute-command-keys
|
|
632 "\\[ediff-make-or-kill-fine-diffs]")
|
|
633 )))
|
|
634 (t
|
|
635 ;; recompute fine diffs
|
|
636 (ediff-wordify
|
|
637 (ediff-get-diff-posn 'A 'beg n)
|
|
638 (ediff-get-diff-posn 'A 'end n)
|
|
639 ediff-buffer-A
|
|
640 tmp-buffer
|
|
641 ediff-control-buffer)
|
|
642 (setq file-A
|
|
643 (ediff-make-temp-file tmp-buffer "fineDiffA" file-A))
|
|
644
|
|
645 (ediff-wordify
|
|
646 (ediff-get-diff-posn 'B 'beg n)
|
|
647 (ediff-get-diff-posn 'B 'end n)
|
|
648 ediff-buffer-B
|
|
649 tmp-buffer
|
|
650 ediff-control-buffer)
|
|
651 (setq file-B
|
|
652 (ediff-make-temp-file tmp-buffer "fineDiffB" file-B))
|
|
653
|
|
654 (if ediff-3way-job
|
|
655 (progn
|
|
656 (ediff-wordify
|
|
657 (ediff-get-diff-posn 'C 'beg n)
|
|
658 (ediff-get-diff-posn 'C 'end n)
|
|
659 ediff-buffer-C
|
|
660 tmp-buffer
|
|
661 ediff-control-buffer)
|
|
662 (setq file-C
|
|
663 (ediff-make-temp-file
|
|
664 tmp-buffer "fineDiffC" file-C))))
|
|
665
|
|
666 ;; save temp file names.
|
|
667 (setq ediff-temp-file-A file-A
|
|
668 ediff-temp-file-B file-B
|
|
669 ediff-temp-file-C file-C)
|
|
670
|
|
671 ;; set the new vector of fine diffs, if none exists
|
|
672 (cond ((and ediff-3way-job whitespace-A)
|
|
673 (ediff-setup-fine-diff-regions nil file-B file-C n))
|
|
674 ((and ediff-3way-job whitespace-B)
|
|
675 (ediff-setup-fine-diff-regions file-A nil file-C n))
|
|
676 ((and ediff-3way-job
|
|
677 ;; In merge-jobs, whitespace-C is t, since
|
|
678 ;; ediff-empty-diff-region-p returns t in this case
|
|
679 whitespace-C)
|
|
680 (ediff-setup-fine-diff-regions file-A file-B nil n))
|
|
681 (t
|
|
682 (ediff-setup-fine-diff-regions file-A file-B file-C n)))
|
|
683
|
|
684 (setq cumulative-fine-diff-length
|
|
685 (+ (length (ediff-get-fine-diff-vector n 'A))
|
|
686 (length (ediff-get-fine-diff-vector n 'B))
|
|
687 ;; in merge jobs, the merge buffer is never refined
|
|
688 (if (and file-C (not ediff-merge-job))
|
|
689 (length (ediff-get-fine-diff-vector n 'C))
|
|
690 0)))
|
|
691
|
|
692 (cond ((or
|
|
693 ;; all regions are white space
|
|
694 (and whitespace-A whitespace-B whitespace-C)
|
|
695 ;; none is white space and no fine diffs detected
|
|
696 (and (not whitespace-A)
|
|
697 (not whitespace-B)
|
|
698 (not (and ediff-3way-job whitespace-C))
|
|
699 (eq cumulative-fine-diff-length 0)))
|
|
700 (ediff-mark-diff-as-space-only n t)
|
|
701 (ediff-message-if-verbose
|
|
702 "Only white-space differences in region %d" (1+ n)))
|
|
703 ((eq cumulative-fine-diff-length 0)
|
|
704 (ediff-mark-diff-as-space-only n t)
|
|
705 (ediff-message-if-verbose
|
|
706 "Only white-space differences in region %d %s"
|
|
707 (1+ n)
|
|
708 (cond (whitespace-A "in buffers B & C")
|
|
709 (whitespace-B "in buffers A & C")
|
|
710 (whitespace-C "in buffers A & B"))))
|
|
711 (t
|
|
712 (ediff-mark-diff-as-space-only n nil)))
|
|
713 )
|
|
714 ) ; end cond
|
|
715 (ediff-set-fine-diff-properties n)
|
|
716 )))
|
|
717
|
|
718 ;; Interface to ediff-make-fine-diffs. Checks for auto-refine limit, etc.
|
|
719 (defun ediff-install-fine-diff-if-necessary (n)
|
|
720 (cond ((eq ediff-auto-refine 'on)
|
|
721 (if (and
|
|
722 (> ediff-auto-refine-limit
|
|
723 (- (ediff-get-diff-posn 'A 'end n)
|
|
724 (ediff-get-diff-posn 'A 'beg n)))
|
|
725 (> ediff-auto-refine-limit
|
|
726 (- (ediff-get-diff-posn 'B 'end n)
|
|
727 (ediff-get-diff-posn 'B 'beg n))))
|
|
728 (ediff-make-fine-diffs n 'noforce)
|
|
729 (ediff-make-fine-diffs n 'skip)))
|
|
730
|
|
731 ;; highlight iff fine diffs already exist
|
|
732 ((eq ediff-auto-refine 'off)
|
|
733 (ediff-make-fine-diffs n 'skip))))
|
|
734
|
|
735
|
|
736 ;; if fine diff vector is not set for diff N, then do nothing
|
|
737 (defun ediff-set-fine-diff-properties (n &optional default)
|
|
738 (or (not (ediff-has-face-support-p))
|
|
739 (< n 0)
|
|
740 (>= n ediff-number-of-differences)
|
|
741 ;; when faces are supported, set faces and priorities of fine overlays
|
|
742 (progn
|
|
743 (ediff-set-fine-diff-properties-in-one-buffer 'A n default)
|
|
744 (ediff-set-fine-diff-properties-in-one-buffer 'B n default)
|
|
745 (if ediff-3way-job
|
|
746 (ediff-set-fine-diff-properties-in-one-buffer 'C n default)))))
|
|
747
|
|
748 (defun ediff-set-fine-diff-properties-in-one-buffer (buf-type
|
|
749 n &optional default)
|
|
750 (let ((fine-diff-vector (ediff-get-fine-diff-vector n buf-type))
|
|
751 (face (if default
|
|
752 'default
|
|
753 (face-name
|
|
754 (intern (format "ediff-fine-diff-face-%S" buf-type)))))
|
|
755 (priority (if default
|
|
756 0
|
|
757 (1+ (or (ediff-overlay-get
|
|
758 (symbol-value
|
|
759 (intern
|
|
760 (format
|
|
761 "ediff-current-diff-overlay-%S" buf-type)))
|
|
762 'priority)
|
|
763 0)))))
|
|
764 (mapcar
|
|
765 (function (lambda (overl)
|
|
766 (ediff-set-overlay-face overl face)
|
|
767 (ediff-overlay-put overl 'priority priority)))
|
|
768 fine-diff-vector)))
|
|
769
|
|
770 ;; This assumes buffer C and that the region looks like a combination of
|
|
771 ;; regions in buffer A and C.
|
|
772 (defun ediff-set-fine-overlays-for-combined-merge (diff-list reg-num)
|
|
773 (let (overlay1 overlay2 overlay3)
|
|
774 (setq overlay1 (ediff-make-bullet-proof-overlay (nth 0 diff-list)
|
|
775 (nth 1 diff-list)
|
|
776 ediff-buffer-C)
|
|
777 overlay2 (ediff-make-bullet-proof-overlay (nth 2 diff-list)
|
|
778 (nth 3 diff-list)
|
|
779 ediff-buffer-C)
|
|
780 overlay3 (ediff-make-bullet-proof-overlay (nth 4 diff-list)
|
|
781 (nth 5 diff-list)
|
|
782 ediff-buffer-C))
|
|
783 (ediff-set-fine-diff-vector reg-num 'C (vector overlay1 overlay2 overlay3))
|
|
784 ))
|
|
785
|
|
786
|
|
787 ;; Convert diff list to overlays for a given DIFF-REGION
|
|
788 ;; in buffer of type BUF-TYPE
|
|
789 (defun ediff-set-fine-overlays-in-one-buffer (buf-type diff-list region-num)
|
|
790 (let* ((current-diff -1)
|
|
791 (reg-start (ediff-get-diff-posn buf-type 'beg region-num))
|
|
792 (buff (ediff-get-buffer buf-type))
|
|
793 combined-merge-diff-list
|
|
794 diff-overlay-list list-element
|
|
795 begin end overlay)
|
|
796
|
|
797 (ediff-clear-fine-differences-in-one-buffer region-num buf-type)
|
|
798 (setq diff-list (cdr diff-list)) ; discard list type (words or points)
|
|
799 (ediff-eval-in-buffer buff (goto-char reg-start))
|
|
800
|
|
801 ;; if it is a combined merge then set overlays in buff C specially
|
|
802 (if (and ediff-merge-job (eq buf-type 'C)
|
|
803 (setq combined-merge-diff-list
|
|
804 (ediff-looks-like-combined-merge region-num)))
|
|
805 (ediff-set-fine-overlays-for-combined-merge
|
|
806 combined-merge-diff-list region-num)
|
|
807 ;; regular fine diff
|
|
808 (while diff-list
|
|
809 (setq current-diff (1+ current-diff)
|
|
810 list-element (car diff-list)
|
|
811 begin (aref list-element (cond ((eq buf-type 'A) 0)
|
|
812 ((eq buf-type 'B) 2)
|
|
813 (t 4))) ; buf C
|
|
814 end (aref list-element (cond ((eq buf-type 'A) 1)
|
|
815 ((eq buf-type 'B) 3)
|
|
816 (t 5)))) ; buf C
|
|
817 (if (not (or begin end))
|
|
818 () ; skip this diff
|
|
819 ;; Put overlays at appropriate places in buffers
|
|
820 ;; convert lines to points, if necessary
|
|
821 (setq begin (ediff-goto-word (1+ begin) buff)
|
|
822 end (ediff-goto-word end buff 'end))
|
|
823 (setq overlay (ediff-make-bullet-proof-overlay begin end buff))
|
|
824 ;; record all overlays for this difference region
|
|
825 (setq diff-overlay-list (nconc diff-overlay-list (list overlay))))
|
|
826
|
|
827 (setq diff-list (cdr diff-list))
|
|
828 ) ; while
|
|
829 ;; convert the list of difference information into a vector
|
|
830 ;; for fast access
|
|
831 (ediff-set-fine-diff-vector
|
|
832 region-num buf-type (vconcat diff-overlay-list))
|
|
833 )))
|
|
834
|
|
835
|
|
836 ;; Stolen from emerge.el
|
|
837 (defun ediff-get-diff3-group (file)
|
|
838 ;; This save-excursion allows ediff-get-diff3-group to be called for the
|
|
839 ;; various groups of lines (1, 2, 3) in any order, and for the lines to
|
|
840 ;; appear in any order. The reason this is necessary is that Gnu diff3
|
|
841 ;; can produce the groups in the order 1, 2, 3 or 1, 3, 2.
|
|
842 (save-excursion
|
|
843 (re-search-forward
|
|
844 (concat "^" file ":\\([0-9]+\\)\\(,\\([0-9]+\\)\\)?\\([ac]\\)$"))
|
|
845 (beginning-of-line 2)
|
|
846 ;; treatment depends on whether it is an "a" group or a "c" group
|
|
847 (if (string-equal (buffer-substring (match-beginning 4) (match-end 4)) "c")
|
|
848 ;; it is a "c" group
|
|
849 (if (match-beginning 2)
|
|
850 ;; it has two numbers
|
|
851 (list (string-to-int
|
|
852 (buffer-substring (match-beginning 1) (match-end 1)))
|
|
853 (1+ (string-to-int
|
|
854 (buffer-substring (match-beginning 3) (match-end 3)))))
|
|
855 ;; it has one number
|
|
856 (let ((x (string-to-int
|
|
857 (buffer-substring (match-beginning 1) (match-end 1)))))
|
|
858 (list x (1+ x))))
|
|
859 ;; it is an "a" group
|
|
860 (let ((x (1+ (string-to-int
|
|
861 (buffer-substring (match-beginning 1) (match-end 1))))))
|
|
862 (list x x)))))
|
|
863
|
|
864
|
|
865 ;; If WORD-MODE, construct vector of diffs using word numbers.
|
|
866 ;; Else, use point values.
|
|
867 ;; WORD-MODE also tells if we are in the word-mode or not.
|
|
868 ;; If THREE-WAY-COMP, then it is a 3-way comparison. Else, it is merging
|
|
869 ;; with ancestor, in which case buffer-C contents is identical to buffer-A/B,
|
|
870 ;; contents (unless buffer-A is narrowed) depending on ediff-default-variant's
|
|
871 ;; value.
|
|
872 ;; BOUNDS specifies visibility bounds to use.
|
|
873 (defun ediff-extract-diffs3 (diff-buffer word-mode three-way-comp
|
|
874 &optional bounds)
|
|
875 (let ((A-buffer ediff-buffer-A)
|
|
876 (B-buffer ediff-buffer-B)
|
|
877 (C-buffer ediff-buffer-C)
|
|
878 (anc-buffer ediff-ancestor-buffer)
|
|
879 (a-prev 1) ; needed to set the first diff line correctly
|
|
880 (b-prev 1)
|
|
881 (c-prev 1)
|
|
882 (anc-prev 1)
|
|
883 diff-list shift-A shift-B shift-C
|
|
884 )
|
|
885
|
|
886 ;; diff list contains word numbers or points, depending on word-mode
|
|
887 (setq diff-list (cons (if word-mode 'words 'points)
|
|
888 diff-list))
|
|
889 (if bounds
|
|
890 (setq shift-A
|
|
891 (ediff-overlay-start
|
|
892 (ediff-get-value-according-to-buffer-type 'A bounds))
|
|
893 shift-B
|
|
894 (ediff-overlay-start
|
|
895 (ediff-get-value-according-to-buffer-type 'B bounds))
|
|
896 shift-C
|
|
897 (if three-way-comp
|
|
898 (ediff-overlay-start
|
|
899 (ediff-get-value-according-to-buffer-type 'C bounds)))))
|
|
900
|
|
901 ;; reset point in buffers A, B, C
|
|
902 (ediff-eval-in-buffer A-buffer
|
|
903 (goto-char (if shift-A shift-A (point-min))))
|
|
904 (ediff-eval-in-buffer B-buffer
|
|
905 (goto-char (if shift-B shift-B (point-min))))
|
|
906 (if three-way-comp
|
|
907 (ediff-eval-in-buffer C-buffer
|
|
908 (goto-char (if shift-C shift-C (point-min)))))
|
|
909 (if (ediff-buffer-live-p anc-buffer)
|
|
910 (ediff-eval-in-buffer anc-buffer
|
|
911 (goto-char (point-min))))
|
|
912
|
|
913 (ediff-eval-in-buffer diff-buffer
|
|
914 (goto-char (point-min))
|
|
915 (while (re-search-forward ediff-match-diff3-line nil t)
|
|
916 ;; leave point after matched line
|
|
917 (beginning-of-line 2)
|
|
918 (let ((agreement (buffer-substring (match-beginning 1) (match-end 1))))
|
|
919 ;; if the files A and B are the same and not 3way-comparison,
|
|
920 ;; ignore the difference
|
|
921 (if (or three-way-comp (not (string-equal agreement "3")))
|
|
922 (let* ((a-begin (car (ediff-get-diff3-group "1")))
|
|
923 (a-end (nth 1 (ediff-get-diff3-group "1")))
|
|
924 (b-begin (car (ediff-get-diff3-group "2")))
|
|
925 (b-end (nth 1 (ediff-get-diff3-group "2")))
|
|
926 (c-or-anc-begin (car (ediff-get-diff3-group "3")))
|
|
927 (c-or-anc-end (nth 1 (ediff-get-diff3-group "3")))
|
|
928 (state-of-merge
|
|
929 (cond ((string-equal agreement "1") 'prefer-A)
|
|
930 ((string-equal agreement "2") 'prefer-B)
|
|
931 (t ediff-default-variant)))
|
|
932 (state-of-diff-merge
|
|
933 (if (memq state-of-merge '(default-A prefer-A)) 'B 'A))
|
|
934 (state-of-diff-comparison
|
|
935 (cond ((string-equal agreement "1") 'A)
|
|
936 ((string-equal agreement "2") 'B)
|
|
937 ((string-equal agreement "3") 'C)))
|
|
938 state-of-ancestor
|
|
939 c-begin c-end
|
|
940 a-begin-pt a-end-pt
|
|
941 b-begin-pt b-end-pt
|
|
942 c-begin-pt c-end-pt
|
|
943 anc-begin-pt anc-end-pt)
|
|
944
|
|
945 (setq state-of-ancestor
|
|
946 (= c-or-anc-begin c-or-anc-end))
|
|
947
|
|
948 (cond (three-way-comp
|
|
949 (setq c-begin c-or-anc-begin
|
|
950 c-end c-or-anc-end))
|
|
951 ((eq ediff-default-variant 'default-B)
|
|
952 (setq c-begin b-begin
|
|
953 c-end b-end))
|
|
954 (t
|
|
955 (setq c-begin a-begin
|
|
956 c-end a-end)))
|
|
957
|
|
958 ;; compute main diff vector
|
|
959 (if word-mode
|
|
960 ;; make diff-list contain word numbers
|
|
961 (setq diff-list
|
|
962 (nconc diff-list
|
|
963 (list (vector
|
|
964 (- a-begin a-prev) (- a-end a-begin)
|
|
965 (- b-begin b-prev) (- b-end b-begin)
|
|
966 (- c-begin c-prev) (- c-end c-begin)
|
|
967 nil nil ; dummy ancestor
|
|
968 nil ; state of diff
|
|
969 nil ; state of merge
|
|
970 nil ; state of ancestor
|
|
971 )))
|
|
972 a-prev a-end
|
|
973 b-prev b-end
|
|
974 c-prev c-end)
|
|
975 ;; else convert lines to points
|
|
976 (ediff-eval-in-buffer A-buffer
|
|
977 (forward-line (- a-begin a-prev))
|
|
978 (setq a-begin-pt (point))
|
|
979 (forward-line (- a-end a-begin))
|
|
980 (setq a-end-pt (point)
|
|
981 a-prev a-end))
|
|
982 (ediff-eval-in-buffer B-buffer
|
|
983 (forward-line (- b-begin b-prev))
|
|
984 (setq b-begin-pt (point))
|
|
985 (forward-line (- b-end b-begin))
|
|
986 (setq b-end-pt (point)
|
|
987 b-prev b-end))
|
|
988 (ediff-eval-in-buffer C-buffer
|
|
989 (forward-line (- c-begin c-prev))
|
|
990 (setq c-begin-pt (point))
|
|
991 (forward-line (- c-end c-begin))
|
|
992 (setq c-end-pt (point)
|
|
993 c-prev c-end))
|
|
994 (if (ediff-buffer-live-p anc-buffer)
|
|
995 (ediff-eval-in-buffer anc-buffer
|
|
996 (forward-line (- c-or-anc-begin anc-prev))
|
|
997 (setq anc-begin-pt (point))
|
|
998 (forward-line (- c-or-anc-end c-or-anc-begin))
|
|
999 (setq anc-end-pt (point)
|
|
1000 anc-prev c-or-anc-end)))
|
|
1001 (setq diff-list
|
|
1002 (nconc
|
|
1003 diff-list
|
|
1004 ;; if comparing with ancestor, then there also is a
|
|
1005 ;; state-of-difference marker
|
|
1006 (if three-way-comp
|
|
1007 (list (vector
|
|
1008 a-begin-pt a-end-pt
|
|
1009 b-begin-pt b-end-pt
|
|
1010 c-begin-pt c-end-pt
|
|
1011 nil nil ; ancestor begin/end
|
|
1012 state-of-diff-comparison
|
|
1013 nil ; state of merge
|
|
1014 nil ; state of ancestor
|
|
1015 ))
|
|
1016 (list (vector a-begin-pt a-end-pt
|
|
1017 b-begin-pt b-end-pt
|
|
1018 c-begin-pt c-end-pt
|
|
1019 anc-begin-pt anc-end-pt
|
|
1020 state-of-diff-merge
|
|
1021 state-of-merge
|
|
1022 state-of-ancestor
|
|
1023 )))
|
|
1024 )))
|
|
1025 ))
|
|
1026
|
|
1027 ))) ; end ediff-eval-in-buffer
|
|
1028 diff-list
|
|
1029 ))
|
|
1030
|
|
1031 ;; Generate the difference vector and overlays for three files
|
|
1032 ;; File-C is either the third file to compare (in case of 3-way comparison)
|
|
1033 ;; or it is the ancestor file.
|
|
1034 (defun ediff-setup-diff-regions3 (file-A file-B file-C)
|
|
1035
|
|
1036 ;;; ;; force all minibuffers to display ediff's messages.
|
|
1037 ;;; ;; when xemacs implements minibufferless frames, this won't be necessary
|
|
1038 ;;; (if ediff-xemacs-p (setq synchronize-minibuffers t))
|
|
1039
|
|
1040 (or (ediff-buffer-live-p ediff-diff-buffer)
|
|
1041 (setq ediff-diff-buffer
|
|
1042 (get-buffer-create (ediff-unique-buffer-name "*ediff-diff" "*"))))
|
|
1043
|
|
1044 (message "Computing differences ...")
|
|
1045 (ediff-exec-process ediff-diff3-program ediff-diff-buffer 'synchronize
|
|
1046 ediff-diff3-options file-A file-B file-C)
|
|
1047
|
|
1048 (ediff-prepare-error-list ediff-diff3-ok-lines-regexp ediff-diff-buffer)
|
|
1049 ;;(message "Computing differences ... done")
|
|
1050 (ediff-convert-diffs-to-overlays
|
|
1051 (ediff-extract-diffs3
|
|
1052 ediff-diff-buffer
|
|
1053 ediff-word-mode ediff-3way-comparison-job ediff-narrow-bounds)
|
|
1054 ))
|
|
1055
|
|
1056
|
|
1057 ;; Execute PROGRAM asynchronously, unless OS/2, Windows-*, or DOS, or unless
|
|
1058 ;; SYNCH is non-nil. BUFFER must be a buffer object, and must be alive. All
|
|
1059 ;; arguments in ARGS must be strings. The first arg may be a blank string, in
|
|
1060 ;; which case we delete it from ARGS list. We also delete nil from args.
|
|
1061 (defun ediff-exec-process (program buffer synch &rest args)
|
|
1062 (let ((data (match-data)))
|
|
1063 (if (string-match "^[ \t]*$" (car args)) ; delete blank string
|
|
1064 (setq args (cdr args)))
|
|
1065 (setq args (delq nil args)) ; delete nil from arguments
|
|
1066 (setq args (ediff-split-string (mapconcat 'identity args " ")))
|
|
1067 (unwind-protect
|
|
1068 (let ((directory default-directory)
|
|
1069 proc)
|
|
1070 (save-excursion
|
|
1071 (set-buffer buffer)
|
|
1072 (erase-buffer)
|
|
1073 (setq default-directory directory)
|
|
1074 (if (or (memq system-type '(emx ms-dos windows-nt windows-95))
|
|
1075 synch)
|
|
1076 ;; In OS/2 (emx) do it synchronously, since OS/2 doesn't let us
|
|
1077 ;; delete files used by other processes. Thus, in ediff-buffers
|
|
1078 ;; and similar functions, we can't delete temp files because
|
|
1079 ;; they might be used by the asynch process that computes
|
|
1080 ;; custom diffs. So, we have to wait till custom diff
|
|
1081 ;; subprocess is done.
|
|
1082 ;; Similarly for Windows-*
|
|
1083 ;; In DOS, must synchronize because DOS doesn't have
|
|
1084 ;; asynchronous processes.
|
|
1085 (apply 'call-process program nil buffer nil args)
|
|
1086 ;; On other systems, do it asynchronously.
|
|
1087 (setq proc (get-buffer-process buffer))
|
|
1088 (if proc (kill-process proc))
|
|
1089 (setq proc
|
|
1090 (apply 'start-process "Custom Diff" buffer program args))
|
|
1091 (setq mode-line-process '(":%s"))
|
|
1092 (set-process-sentinel proc 'ediff-process-sentinel)
|
|
1093 (set-process-filter proc 'ediff-process-filter)
|
|
1094 )))
|
|
1095 (store-match-data data))))
|
|
1096
|
|
1097 ;; This is shell-command-filter from simple.el in FSF Emacs.
|
|
1098 ;; Copied here because XEmacs doesn't have it.
|
|
1099 (defun ediff-process-filter (proc string)
|
|
1100 ;; Do save-excursion by hand so that we can leave point numerically unchanged
|
|
1101 ;; despite an insertion immediately after it.
|
|
1102 (let* ((obuf (current-buffer))
|
|
1103 (buffer (process-buffer proc))
|
|
1104 opoint
|
|
1105 (window (get-buffer-window buffer))
|
|
1106 (pos (window-start window)))
|
|
1107 (unwind-protect
|
|
1108 (progn
|
|
1109 (set-buffer buffer)
|
|
1110 (or (= (point) (point-max))
|
|
1111 (setq opoint (point)))
|
|
1112 (goto-char (point-max))
|
|
1113 (insert-before-markers string))
|
|
1114 ;; insert-before-markers moved this marker: set it back.
|
|
1115 (set-window-start window pos)
|
|
1116 ;; Finish our save-excursion.
|
|
1117 (if opoint
|
|
1118 (goto-char opoint))
|
|
1119 (set-buffer obuf))))
|
|
1120
|
|
1121 ;; like shell-command-sentinel but doesn't print an exit status message
|
|
1122 ;; we do this because diff always exits with status 1, if diffs are found
|
|
1123 ;; so shell-command-sentinel displays a confusing message to the user
|
|
1124 (defun ediff-process-sentinel (process signal)
|
|
1125 (if (and (memq (process-status process) '(exit signal))
|
|
1126 (buffer-name (process-buffer process)))
|
|
1127 (progn
|
|
1128 (save-excursion
|
|
1129 (set-buffer (process-buffer process))
|
|
1130 (setq mode-line-process nil))
|
|
1131 (delete-process process))))
|
|
1132
|
|
1133
|
|
1134 ;;; Word functions used to refine the current diff
|
|
1135
|
|
1136 (defvar ediff-forward-word-function 'ediff-forward-word
|
|
1137 "*Function to call to move to the next word.
|
|
1138 Used for splitting difference regions into individual words.")
|
|
1139
|
|
1140 (defvar ediff-whitespace " \n\t\f"
|
|
1141 "*Characters constituting white space.
|
|
1142 These characters are ignored when differing regions are split into words.")
|
|
1143
|
|
1144 ;;(defvar ediff-word-1 "a-zA-Z---_`'.?!:"
|
|
1145 (defvar ediff-word-1 "a-zA-Z---_"
|
|
1146 "*Characters that constitute words of type 1.
|
|
1147 More precisely, [ediff-word-1] is a regexp that matches type 1 words.
|
|
1148 See `ediff-forward-word' for more details.")
|
|
1149
|
|
1150 (defvar ediff-word-2 "0-9.,"
|
|
1151 "*Characters that constitute words of type 2.
|
|
1152 More precisely, [ediff-word-2] is a regexp that matches type 2 words.
|
|
1153 See `ediff-forward-word' for more details.")
|
|
1154
|
|
1155 (defvar ediff-word-3 "`'?!:;\"{}[]()"
|
|
1156 "*Characters that constitute words of type 3.
|
|
1157 More precisely, [ediff-word-3] is a regexp that matches type 3 words.
|
|
1158 See `ediff-forward-word' for more details.")
|
|
1159
|
|
1160 (defvar ediff-word-4
|
|
1161 (concat "^" ediff-word-1 ediff-word-2 ediff-word-3 ediff-whitespace)
|
|
1162 "*Characters that constitute words of type 4.
|
|
1163 More precisely, [ediff-word-4] is a regexp that matches type 4 words.
|
|
1164 See `ediff-forward-word' for more details.")
|
|
1165
|
|
1166 ;; Split region along word boundaries. Each word will be on its own line.
|
|
1167 ;; Output to buffer out-buffer.
|
|
1168 (defun ediff-forward-word ()
|
|
1169 "Move point one word forward.
|
|
1170 There are four types of words, each of which consists entirely of
|
|
1171 characters in `ediff-word-1', `ediff-word-2', `ediff-word-3', or
|
|
1172 `ediff-word-4'. Words are recognized by passing these in turn as the
|
|
1173 argument to `skip-chars-forward'."
|
|
1174 (or (> (skip-chars-forward ediff-word-1) 0)
|
|
1175 (> (skip-chars-forward ediff-word-2) 0)
|
|
1176 (> (skip-chars-forward ediff-word-3) 0)
|
|
1177 (> (skip-chars-forward ediff-word-4) 0)
|
|
1178 ))
|
|
1179
|
|
1180 (defun ediff-wordify (beg end in-buffer out-buffer &optional control-buf)
|
|
1181 (let (sv-point string)
|
|
1182 (save-excursion
|
|
1183 (set-buffer in-buffer)
|
|
1184 (setq string (buffer-substring beg end))
|
|
1185
|
|
1186 (set-buffer out-buffer)
|
|
1187 (erase-buffer)
|
|
1188 (insert string)
|
|
1189 (goto-char (point-min))
|
|
1190 (skip-chars-forward ediff-whitespace)
|
|
1191 (delete-region (point-min) (point))
|
|
1192
|
|
1193 (while (not (eobp))
|
|
1194 ;; eval incontrol buf to let user create local versions for
|
|
1195 ;; different invocations
|
|
1196 (if control-buf
|
|
1197 (funcall
|
|
1198 (ediff-eval-in-buffer control-buf ediff-forward-word-function))
|
|
1199 (funcall ediff-forward-word-function))
|
|
1200 (setq sv-point (point))
|
|
1201 (skip-chars-forward ediff-whitespace)
|
|
1202 (delete-region sv-point (point))
|
|
1203 (insert "\n")))))
|
|
1204
|
|
1205 ;; copy string from BEG END from IN-BUF to OUT-BUF
|
|
1206 (defun ediff-copy-to-buffer (beg end in-buffer out-buffer)
|
|
1207 (let (string)
|
|
1208 (save-excursion
|
|
1209 (set-buffer in-buffer)
|
|
1210 (setq string (buffer-substring beg end))
|
|
1211
|
|
1212 (set-buffer out-buffer)
|
|
1213 (erase-buffer)
|
|
1214 (insert string)
|
|
1215 (goto-char (point-min)))))
|
|
1216
|
|
1217
|
|
1218 ;; goto word #n starting at current position in buffer `buf'
|
|
1219 ;; For ediff, a word is either a string of a-z,A-Z, incl `-' and `_';
|
|
1220 ;; or a string of other non-blanks. A blank is a \n\t\f
|
|
1221 ;; If `flag' is non-nil, goto the end of the n-th word.
|
|
1222 (defun ediff-goto-word (n buf &optional flag)
|
|
1223 ;; remember val ediff-forward-word-function has in ctl buf
|
|
1224 (let ((fwd-word-fun ediff-forward-word-function))
|
|
1225 (ediff-eval-in-buffer buf
|
|
1226 (skip-chars-forward ediff-whitespace)
|
|
1227 (while (> n 1)
|
|
1228 (funcall fwd-word-fun)
|
|
1229 (skip-chars-forward ediff-whitespace)
|
|
1230 (setq n (1- n)))
|
|
1231 (if (and flag (> n 0))
|
|
1232 (funcall fwd-word-fun))
|
|
1233 (point))))
|
|
1234
|
|
1235
|
|
1236 ;;; Local Variables:
|
|
1237 ;;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun)
|
|
1238 ;;; eval: (put 'ediff-eval-in-buffer 'lisp-indent-hook 1)
|
78
|
1239 ;;; eval: (put 'ediff-eval-in-buffer 'edebug-form-spec '(form body))
|
0
|
1240 ;;; End:
|
|
1241
|
|
1242
|
|
1243 ;; ediff-diff.el ends here
|