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