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