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