]> code.delx.au - gnu-emacs/blob - lisp/ediff-diff.el
(custom-initialize-safe-set, custom-initialize-safe-default): Further doc fixes.
[gnu-emacs] / lisp / ediff-diff.el
1 ;;; ediff-diff.el --- diff-related utilities
2
3 ;; Copyright (C) 1994, 95, 96, 97, 98, 99, 2000, 01, 02 Free Software Foundation, Inc.
4
5 ;; Author: Michael Kifer <kifer@cs.stonybrook.edu>
6
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
21 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 ;; Boston, MA 02110-1301, USA.
23
24 ;;; Commentary:
25
26 ;;; Code:
27
28 (provide 'ediff-diff)
29
30 ;; compiler pacifier
31 (defvar ediff-default-variant)
32 (defvar null-device)
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
43 (require 'ediff-init)
44
45 (defgroup ediff-diff nil
46 "Diff related utilities."
47 :prefix "ediff-"
48 :group 'ediff)
49
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.
57 Must produce output compatible with Unix's diff3 program."
58 :type 'string
59 :group 'ediff-diff)
60
61
62 ;; The following functions must precede all defcustom-defined variables.
63
64 ;; The following functions needed for setting diff/diff3 options
65 ;; test if diff supports the --binary option
66 (defsubst ediff-test-utility (diff-util option &optional files)
67 (eq 0 (apply 'call-process
68 (append (list diff-util nil nil nil option) files))))
69
70 (defun ediff-diff-mandatory-option (diff-util)
71 (let ((file (if (boundp 'null-device) null-device "/dev/null")))
72 (cond ((not (memq system-type '(ms-dos windows-nt windows-95)))
73 "")
74 ((and (string= diff-util ediff-diff-program)
75 (ediff-test-utility
76 ediff-diff-program "--binary" (list file file)))
77 "--binary")
78 ((and (string= diff-util ediff-diff3-program)
79 (ediff-test-utility
80 ediff-diff3-program "--binary" (list file file file)))
81 "--binary")
82 (t ""))))
83
84 ;; make sure that mandatory options are added even if the user changes
85 ;; ediff-diff-options or ediff-diff3-options in the customization widget
86 (defun ediff-reset-diff-options (symb val)
87 (let* ((diff-program
88 (if (eq symb 'ediff-diff-options)
89 ediff-diff-program
90 ediff-diff3-program))
91 (mandatory-option (ediff-diff-mandatory-option diff-program))
92 (spacer (if (string-equal mandatory-option "") "" " ")))
93 (set symb
94 (if (string-match mandatory-option val)
95 val
96 (concat mandatory-option spacer val)))
97 ))
98
99
100 (defcustom ediff-shell
101 (cond ((eq system-type 'emx) "cmd") ; OS/2
102 ((memq system-type '(ms-dos windows-nt windows-95))
103 shell-file-name) ; no standard name on MS-DOS
104 ((memq system-type '(vax-vms axp-vms)) "*dcl*") ; VMS
105 (t "sh")) ; UNIX
106 "*The shell used to run diff and patch.
107 If user's .profile or .cshrc files are set up correctly, any shell
108 will do. However, some people set $prompt or other things
109 incorrectly, which leads to undesirable output messages. These may
110 cause Ediff to fail. In such a case, set `ediff-shell' to a shell that
111 you are not using or, better, fix your shell's startup file."
112 :type 'string
113 :group 'ediff-diff)
114
115 (defcustom ediff-cmp-program "cmp"
116 "*Utility to use to determine if two files are identical.
117 It must return code 0, if its arguments are identical files."
118 :type 'string
119 :group 'ediff-diff)
120
121 (defcustom ediff-cmp-options nil
122 "*Options to pass to `ediff-cmp-program'.
123 If GNU diff is used as `ediff-cmp-program', then the most useful options
124 are `-I REGEXP', to ignore changes whose lines match the REGEXP."
125 :type '(repeat string)
126 :group 'ediff-diff)
127
128 (defcustom ediff-diff-options ""
129 "*Options to pass to `ediff-diff-program'.
130 If Unix diff is used as `ediff-diff-program', then the most useful options are
131 `-w', to ignore space, and `-i', to ignore case of letters.
132 At present, the option `-c' is not allowed."
133 :set 'ediff-reset-diff-options
134 :type 'string
135 :group 'ediff-diff)
136
137 (defcustom ediff-custom-diff-program ediff-diff-program
138 "*Program to use for generating custom diff output for saving it in a file.
139 This 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)
146
147 ;;; Support for diff3
148
149 (defvar ediff-match-diff3-line "^====\\(.?\\)\C-m?$"
150 "Pattern to match lines produced by diff3 that describe differences.")
151 (defcustom ediff-diff3-options ""
152 "*Options to pass to `ediff-diff3-program'."
153 :set 'ediff-reset-diff-options
154 :type 'string
155 :group 'ediff-diff)
156 (defcustom ediff-diff3-ok-lines-regexp
157 "^\\([1-3]:\\|====\\| \\|.*Warning *:\\|.*No newline\\|.*missing newline\\|^\C-m$\\)"
158 "*Regexp that matches normal output lines from `ediff-diff3-program'.
159 Lines that do not match are assumed to be error messages."
160 :type 'regexp
161 :group 'ediff-diff)
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
167
168 ;;; Fine differences
169
170 (ediff-defvar-local ediff-auto-refine (if (ediff-has-face-support-p) 'on 'nix)
171 "If `on', Ediff auto-highlights fine diffs for the current diff region.
172 If `off', auto-highlighting is not used. If `nix', no fine diffs are shown
173 at all, unless the user force-refines the region by hitting `*'.
174
175 This variable can be set either in .emacs or toggled interactively.
176 Use `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.
180 This variable can be set either in .emacs or toggled interactively.
181 Use `setq-default' if setting it in .emacs")
182
183 (ediff-defvar-local ediff-auto-refine-limit 1400
184 "*Auto-refine only the regions of this size \(in bytes\) or less.")
185
186 ;;; General
187
188 (defvar ediff-diff-ok-lines-regexp
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 "\\)")
199 "Regexp that matches normal output lines from `ediff-diff-program'.
200 This is mostly lifted from Emerge, except that Ediff also considers
201 warnings and `Missing newline'-type messages to be normal output.
202 Lines that do not match are assumed to be error messages.")
203
204 (defvar ediff-match-diff-line
205 (let ((x "\\([0-9]+\\)\\(\\|,\\([0-9]+\\)\\)"))
206 (concat "^" x "\\([acd]\\)" x "\C-m?$"))
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.
211 For 2-way jobs and for ediff-merge, it should be `ediff-setup-diff-regions'.
212 For jobs requiring diff3, it should be `ediff-setup-diff-regions3'.
213
214 The function should take three mandatory arguments, file-A, file-B, and
215 file-C. It may ignore file C for diff2 jobs. It should also take
216 one optional arguments, diff-number to refine.")
217
218
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)
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)
230 (error "Option `-c' is not allowed in `ediff-diff-options'"))
231
232 ;; create, if it doesn't exist
233 (or (ediff-buffer-live-p ediff-diff-buffer)
234 (setq ediff-diff-buffer
235 (get-buffer-create (ediff-unique-buffer-name "*ediff-diff" "*"))))
236 (ediff-make-diff2-buffer ediff-diff-buffer file-A file-B)
237 (ediff-prepare-error-list ediff-diff-ok-lines-regexp ediff-diff-buffer)
238 (ediff-convert-diffs-to-overlays
239 (ediff-extract-diffs
240 ediff-diff-buffer ediff-word-mode ediff-narrow-bounds)))
241
242 ;; Run the diff program on FILE1 and FILE2 and put the output in DIFF-BUFFER
243 ;; Return the size of DIFF-BUFFER
244 ;; The return code isn't used in the program at present.
245 (defun ediff-make-diff2-buffer (diff-buffer file1 file2)
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)
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)
268 (message "")
269 (ediff-with-current-buffer diff-buffer
270 (buffer-size))))))
271
272
273
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" "*"))))
281
282 (let (diff3-job diff-program diff-options ok-regexp diff-list)
283 (setq diff3-job ediff-3way-job
284 diff-program (if diff3-job ediff-diff3-program ediff-diff-program)
285 diff-options (if diff3-job ediff-diff3-options ediff-diff-options)
286 ok-regexp (if diff3-job
287 ediff-diff3-ok-lines-regexp
288 ediff-diff-ok-lines-regexp))
289
290 (ediff-message-if-verbose "Refining difference region %d ..." (1+ reg-num))
291 (ediff-exec-process diff-program ediff-fine-diff-buffer 'synchronize
292 diff-options
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
301
302 (ediff-prepare-error-list ok-regexp ediff-fine-diff-buffer)
303 (ediff-message-if-verbose
304 "")
305 ;; "Refining difference region %d ... done" (1+ reg-num))
306
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)
315 (mapcar (lambda (elt)
316 (aset elt 0 nil)
317 (aset elt 1 nil))
318 (cdr diff-list)))
319 ((not file-B)
320 (mapcar (lambda (elt)
321 (aset elt 2 nil)
322 (aset elt 3 nil))
323 (cdr diff-list)))
324 ((not file-C)
325 (mapcar (lambda (elt)
326 (aset elt 4 nil)
327 (aset elt 5 nil))
328 (cdr diff-list)))
329 ))
330
331 (ediff-convert-fine-diffs-to-overlays diff-list reg-num)
332 ))
333
334
335 (defun ediff-prepare-error-list (ok-regexp diff-buff)
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" "*"))))
340 (ediff-with-current-buffer ediff-error-buffer
341 (erase-buffer)
342 (insert (ediff-with-current-buffer diff-buff (buffer-string)))
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.
348 (if (/= 0 (ediff-with-current-buffer ediff-error-buffer (buffer-size)))
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)
354 (error "Errors in diff output. Diff output is in %S" diff-buff))))
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 )
371
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))
380 shift-B
381 (ediff-overlay-start
382 (ediff-get-value-according-to-buffer-type 'B bounds))))
383
384 ;; reset point in buffers A/B/C
385 (ediff-with-current-buffer A-buffer
386 (goto-char (if shift-A shift-A (point-min))))
387 (ediff-with-current-buffer B-buffer
388 (goto-char (if shift-B shift-B (point-min))))
389 (if (ediff-buffer-live-p C-buffer)
390 (ediff-with-current-buffer C-buffer
391 (goto-char (point-min))))
392
393 (ediff-with-current-buffer diff-buffer
394 (goto-char (point-min))
395 (while (re-search-forward ediff-match-diff-line nil t)
396 (let* ((a-begin (string-to-number (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-number (buffer-substring b e))
402 a-begin)))
403 (diff-type (buffer-substring (match-beginning 4) (match-end 4)))
404 (b-begin (string-to-number (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-number (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))))
426
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))
432
433 ;; compute main diff vector
434 (if word-mode
435 ;; make diff-list contain word numbers
436 (setq diff-list
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)
443 nil nil ; dummy ancestor
444 nil ; state of diff
445 nil ; state of merge
446 nil ; state of ancestor
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
451 nil nil ; dummy ancestor
452 nil ; state of diff
453 nil ; state of merge
454 nil ; state of ancestor
455 ))
456 ))
457 a-prev a-end
458 b-prev b-end
459 c-prev c-end)
460 ;; else convert lines to points
461 (ediff-with-current-buffer A-buffer
462 (let ((longlines-mode-val
463 (if (and (boundp 'longlines-mode) longlines-mode) 1 0)))
464 ;; we must disable and then restore longlines-mode
465 (if (eq longlines-mode-val 1)
466 (longlines-mode 0))
467 (forward-line (- a-begin a-prev))
468 (setq a-begin-pt (point))
469 (forward-line (- a-end a-begin))
470 (setq a-end-pt (point)
471 a-prev a-end)
472 (if (eq longlines-mode-val 1)
473 (longlines-mode longlines-mode-val))
474 ))
475 (ediff-with-current-buffer B-buffer
476 (let ((longlines-mode-val
477 (if (and (boundp 'longlines-mode) longlines-mode) 1 0)))
478 (if (eq longlines-mode-val 1)
479 (longlines-mode 0))
480 (forward-line (- b-begin b-prev))
481 (setq b-begin-pt (point))
482 (forward-line (- b-end b-begin))
483 (setq b-end-pt (point)
484 b-prev b-end)
485 (if (eq longlines-mode-val 1)
486 (longlines-mode longlines-mode-val))
487 ))
488 (if (ediff-buffer-live-p C-buffer)
489 (ediff-with-current-buffer C-buffer
490 (let ((longlines-mode-val
491 (if (and (boundp 'longlines-mode) longlines-mode) 1 0)))
492 (if (eq longlines-mode-val 1)
493 (longlines-mode 0))
494 (forward-line (- c-begin c-prev))
495 (setq c-begin-pt (point))
496 (forward-line (- c-end c-begin))
497 (setq c-end-pt (point)
498 c-prev c-end)
499 (if (eq longlines-mode-val 1)
500 (longlines-mode longlines-mode-val))
501 )))
502 (setq diff-list
503 (nconc
504 diff-list
505 (list
506 (if (ediff-buffer-live-p C-buffer)
507 (vector
508 a-begin-pt a-end-pt b-begin-pt b-end-pt
509 c-begin-pt c-end-pt
510 nil nil ; dummy ancestor
511 ;; state of diff
512 ;; shows which buff is different from the other two
513 (if (eq ediff-default-variant 'default-B) 'A 'B)
514 ediff-default-variant ; state of merge
515 nil ; state of ancestor
516 )
517 (vector a-begin-pt a-end-pt
518 b-begin-pt b-end-pt
519 nil nil ; dummy buf C
520 nil nil ; dummy ancestor
521 nil nil ; dummy state of diff & merge
522 nil ; dummy state of ancestor
523 )))
524 )))
525
526 ))) ; end ediff-with-current-buffer
527 diff-list
528 ))
529
530
531 (defun ediff-convert-diffs-to-overlays (diff-list)
532 (ediff-set-diff-overlays-in-one-buffer 'A diff-list)
533 (ediff-set-diff-overlays-in-one-buffer 'B diff-list)
534 (if ediff-3way-job
535 (ediff-set-diff-overlays-in-one-buffer 'C diff-list))
536 (if ediff-merge-with-ancestor-job
537 (ediff-set-diff-overlays-in-one-buffer 'Ancestor diff-list))
538 ;; set up vector showing the status of merge regions
539 (if ediff-merge-job
540 (setq ediff-state-of-merge
541 (vconcat
542 (mapcar (lambda (elt)
543 (let ((state-of-merge (aref elt 9))
544 (state-of-ancestor (aref elt 10)))
545 (vector
546 ;; state of merge: prefers/default-A/B or combined
547 (if state-of-merge (format "%S" state-of-merge))
548 ;; whether the ancestor region is empty
549 state-of-ancestor)))
550 ;; the first elt designates type of list
551 (cdr diff-list))
552 )))
553 (message "Processing difference regions ... done"))
554
555
556 (defun ediff-set-diff-overlays-in-one-buffer (buf-type diff-list)
557 (let* ((current-diff -1)
558 (buff (ediff-get-buffer buf-type))
559 (ctl-buf ediff-control-buffer)
560 ;; ediff-extract-diffs puts the type of diff-list as the first elt
561 ;; of this list. The type is either 'points or 'words
562 (diff-list-type (car diff-list))
563 (shift (ediff-overlay-start
564 (ediff-get-value-according-to-buffer-type
565 buf-type ediff-narrow-bounds)))
566 (limit (ediff-overlay-end
567 (ediff-get-value-according-to-buffer-type
568 buf-type ediff-narrow-bounds)))
569 diff-overlay-list list-element total-diffs
570 begin end pt-saved overlay state-of-diff)
571
572 (setq diff-list (cdr diff-list)) ; discard diff list type
573 (setq total-diffs (length diff-list))
574
575 ;; shift, if necessary
576 (ediff-with-current-buffer buff (setq pt-saved shift))
577
578 (while diff-list
579 (setq current-diff (1+ current-diff)
580 list-element (car diff-list)
581 begin (aref list-element (cond ((eq buf-type 'A) 0)
582 ((eq buf-type 'B) 2)
583 ((eq buf-type 'C) 4)
584 (t 6))) ; Ancestor
585 end (aref list-element (cond ((eq buf-type 'A) 1)
586 ((eq buf-type 'B) 3)
587 ((eq buf-type 'C) 5)
588 (t 7))) ; Ancestor
589 state-of-diff (aref list-element 8)
590 )
591
592 (cond ((and (not (eq buf-type state-of-diff))
593 (not (eq buf-type 'Ancestor))
594 (memq state-of-diff '(A B C)))
595 (setq state-of-diff
596 (car (delq buf-type (delq state-of-diff (list 'A 'B 'C)))))
597 (setq state-of-diff (format "=diff(%S)" state-of-diff))
598 )
599 (t (setq state-of-diff nil)))
600
601 ;; Put overlays at appropriate places in buffer
602 ;; convert word numbers to points, if necessary
603 (if (eq diff-list-type 'words)
604 (progn
605 (ediff-with-current-buffer buff (goto-char pt-saved))
606 (ediff-with-current-buffer ctl-buf
607 (setq begin (ediff-goto-word (1+ begin) buff)
608 end (ediff-goto-word end buff 'end)))
609 (if (> end limit) (setq end limit))
610 (if (> begin end) (setq begin end))
611 (setq pt-saved (ediff-with-current-buffer buff (point)))))
612 (setq overlay (ediff-make-bullet-proof-overlay begin end buff))
613
614 (ediff-overlay-put overlay 'priority ediff-shadow-overlay-priority)
615 (ediff-overlay-put overlay 'ediff-diff-num current-diff)
616 (if (and (ediff-has-face-support-p)
617 ediff-use-faces ediff-highlight-all-diffs)
618 (ediff-set-overlay-face
619 overlay (ediff-background-face buf-type current-diff)))
620
621 (if (= 0 (mod current-diff 10))
622 (message "Buffer %S: Processing difference region %d of %d"
623 buf-type current-diff total-diffs))
624 ;; Record all overlays for this difference.
625 ;; The 2-d elt, nil, is a place holder for the fine diff vector.
626 ;; The 3-d elt, nil, is a place holder for no-fine-diffs flag.
627 ;; The 4-th elt says which diff region is different from the other two
628 ;; (3-way jobs only).
629 (setq diff-overlay-list
630 (nconc
631 diff-overlay-list
632 (list (vector overlay nil nil state-of-diff)))
633 diff-list
634 (cdr diff-list))
635 ) ; while
636
637 (set (ediff-get-symbol-from-alist buf-type ediff-difference-vector-alist)
638 (vconcat diff-overlay-list))
639 ))
640
641 ;; `n' is the diff region to work on. Default is ediff-current-difference.
642 ;; if `flag' is 'noforce then make fine-diffs only if this region's fine
643 ;; diffs have not been computed before.
644 ;; if `flag' is 'skip then don't compute fine diffs for this region.
645 (defun ediff-make-fine-diffs (&optional n flag)
646 (or n (setq n ediff-current-difference))
647
648 (if (< ediff-number-of-differences 1)
649 (error ediff-NO-DIFFERENCES))
650
651 (if ediff-word-mode
652 (setq flag 'skip
653 ediff-auto-refine 'nix))
654
655 (or (< n 0)
656 (>= n ediff-number-of-differences)
657 ;; n is within the range
658 (let ((tmp-buffer (get-buffer-create ediff-tmp-buffer))
659 (file-A ediff-temp-file-A)
660 (file-B ediff-temp-file-B)
661 (file-C ediff-temp-file-C)
662 (empty-A (ediff-empty-diff-region-p n 'A))
663 (empty-B (ediff-empty-diff-region-p n 'B))
664 (empty-C (ediff-empty-diff-region-p n 'C))
665 (whitespace-A (ediff-whitespace-diff-region-p n 'A))
666 (whitespace-B (ediff-whitespace-diff-region-p n 'B))
667 (whitespace-C (ediff-whitespace-diff-region-p n 'C))
668 cumulative-fine-diff-length)
669
670 (cond ;; If one of the regions is empty (or 2 in 3way comparison)
671 ;; then don't refine.
672 ;; If the region happens to be entirely whitespace or empty then
673 ;; mark as such.
674 ((> (length (delq nil (list empty-A empty-B empty-C))) 1)
675 (if (and (ediff-looks-like-combined-merge n)
676 ediff-merge-job)
677 (ediff-set-fine-overlays-in-one-buffer 'C nil n))
678 (if ediff-3way-comparison-job
679 (ediff-message-if-verbose
680 "Region %d is empty in all buffers but %S"
681 (1+ n)
682 (cond ((not empty-A) 'A)
683 ((not empty-B) 'B)
684 ((not empty-C) 'C)))
685 (ediff-message-if-verbose
686 "Region %d in buffer %S is empty"
687 (1+ n)
688 (cond (empty-A 'A)
689 (empty-B 'B)
690 (empty-C 'C)))
691 )
692 ;; if all regions happen to be whitespace
693 (if (and whitespace-A whitespace-B whitespace-C)
694 ;; mark as space only
695 (ediff-mark-diff-as-space-only n t)
696 ;; if some regions are white and others don't, then mark as
697 ;; non-white-space-only
698 (ediff-mark-diff-as-space-only n nil)))
699
700 ;; don't compute fine diffs if diff vector exists
701 ((and (eq flag 'noforce) (ediff-get-fine-diff-vector n 'A))
702 (if (ediff-no-fine-diffs-p n)
703 (message
704 "Only white-space differences in region %d %s"
705 (1+ n)
706 (cond ((eq (ediff-no-fine-diffs-p n) 'A)
707 "in buffers B & C")
708 ((eq (ediff-no-fine-diffs-p n) 'B)
709 "in buffers A & C")
710 ((eq (ediff-no-fine-diffs-p n) 'C)
711 "in buffers A & B")
712 (t "")))))
713 ;; don't compute fine diffs for this region
714 ((eq flag 'skip)
715 (or (ediff-get-fine-diff-vector n 'A)
716 (memq ediff-auto-refine '(off nix))
717 (ediff-message-if-verbose
718 "Region %d exceeds the auto-refinement limit. Type `%s' to refine"
719 (1+ n)
720 (substitute-command-keys
721 "\\[ediff-make-or-kill-fine-diffs]")
722 )))
723 (t
724 ;; recompute fine diffs
725 (ediff-wordify
726 (ediff-get-diff-posn 'A 'beg n)
727 (ediff-get-diff-posn 'A 'end n)
728 ediff-buffer-A
729 tmp-buffer
730 ediff-control-buffer)
731 (setq file-A
732 (ediff-make-temp-file tmp-buffer "fineDiffA" file-A))
733
734 (ediff-wordify
735 (ediff-get-diff-posn 'B 'beg n)
736 (ediff-get-diff-posn 'B 'end n)
737 ediff-buffer-B
738 tmp-buffer
739 ediff-control-buffer)
740 (setq file-B
741 (ediff-make-temp-file tmp-buffer "fineDiffB" file-B))
742
743 (if ediff-3way-job
744 (progn
745 (ediff-wordify
746 (ediff-get-diff-posn 'C 'beg n)
747 (ediff-get-diff-posn 'C 'end n)
748 ediff-buffer-C
749 tmp-buffer
750 ediff-control-buffer)
751 (setq file-C
752 (ediff-make-temp-file
753 tmp-buffer "fineDiffC" file-C))))
754
755 ;; save temp file names.
756 (setq ediff-temp-file-A file-A
757 ediff-temp-file-B file-B
758 ediff-temp-file-C file-C)
759
760 ;; set the new vector of fine diffs, if none exists
761 (cond ((and ediff-3way-job whitespace-A)
762 (ediff-setup-fine-diff-regions nil file-B file-C n))
763 ((and ediff-3way-job whitespace-B)
764 (ediff-setup-fine-diff-regions file-A nil file-C n))
765 ((and ediff-3way-job
766 ;; In merge-jobs, whitespace-C is t, since
767 ;; ediff-empty-diff-region-p returns t in this case
768 whitespace-C)
769 (ediff-setup-fine-diff-regions file-A file-B nil n))
770 (t
771 (ediff-setup-fine-diff-regions file-A file-B file-C n)))
772
773 (setq cumulative-fine-diff-length
774 (+ (length (ediff-get-fine-diff-vector n 'A))
775 (length (ediff-get-fine-diff-vector n 'B))
776 ;; in merge jobs, the merge buffer is never refined
777 (if (and file-C (not ediff-merge-job))
778 (length (ediff-get-fine-diff-vector n 'C))
779 0)))
780
781 (cond ((or
782 ;; all regions are white space
783 (and whitespace-A whitespace-B whitespace-C)
784 ;; none is white space and no fine diffs detected
785 (and (not whitespace-A)
786 (not whitespace-B)
787 (not (and ediff-3way-job whitespace-C))
788 (eq cumulative-fine-diff-length 0)))
789 (ediff-mark-diff-as-space-only n t)
790 (ediff-message-if-verbose
791 "Only white-space differences in region %d" (1+ n)))
792 ((eq cumulative-fine-diff-length 0)
793 (ediff-message-if-verbose
794 "Only white-space differences in region %d %s"
795 (1+ n)
796 (cond (whitespace-A (ediff-mark-diff-as-space-only n 'A)
797 "in buffers B & C")
798 (whitespace-B (ediff-mark-diff-as-space-only n 'B)
799 "in buffers A & C")
800 (whitespace-C (ediff-mark-diff-as-space-only n 'C)
801 "in buffers A & B"))))
802 (t
803 (ediff-mark-diff-as-space-only n nil)))
804 )
805 ) ; end cond
806 (ediff-set-fine-diff-properties n)
807 )))
808
809 ;; Interface to ediff-make-fine-diffs. Checks for auto-refine limit, etc.
810 (defun ediff-install-fine-diff-if-necessary (n)
811 (cond ((and (eq ediff-auto-refine 'on)
812 ediff-use-faces
813 (not (eq ediff-highlighting-style 'off))
814 (not (eq ediff-highlighting-style 'ascii)))
815 (if (and
816 (> ediff-auto-refine-limit
817 (- (ediff-get-diff-posn 'A 'end n)
818 (ediff-get-diff-posn 'A 'beg n)))
819 (> ediff-auto-refine-limit
820 (- (ediff-get-diff-posn 'B 'end n)
821 (ediff-get-diff-posn 'B 'beg n))))
822 (ediff-make-fine-diffs n 'noforce)
823 (ediff-make-fine-diffs n 'skip)))
824
825 ;; highlight iff fine diffs already exist
826 ((eq ediff-auto-refine 'off)
827 (ediff-make-fine-diffs n 'skip))))
828
829
830 ;; if fine diff vector is not set for diff N, then do nothing
831 (defun ediff-set-fine-diff-properties (n &optional default)
832 (or (not (ediff-has-face-support-p))
833 (< n 0)
834 (>= n ediff-number-of-differences)
835 ;; when faces are supported, set faces and priorities of fine overlays
836 (progn
837 (ediff-set-fine-diff-properties-in-one-buffer 'A n default)
838 (ediff-set-fine-diff-properties-in-one-buffer 'B n default)
839 (if ediff-3way-job
840 (ediff-set-fine-diff-properties-in-one-buffer 'C n default)))))
841
842 (defun ediff-set-fine-diff-properties-in-one-buffer (buf-type
843 n &optional default)
844 (let ((fine-diff-vector (ediff-get-fine-diff-vector n buf-type))
845 (face (if default
846 'default
847 (face-name
848 (ediff-get-symbol-from-alist
849 buf-type ediff-fine-diff-face-alist))))
850 (priority (if default
851 0
852 (1+ (or (ediff-overlay-get
853 (symbol-value
854 (ediff-get-symbol-from-alist
855 buf-type
856 ediff-current-diff-overlay-alist))
857 'priority)
858 0)))))
859 (mapcar (lambda (overl)
860 (ediff-set-overlay-face overl face)
861 (ediff-overlay-put overl 'priority priority))
862 fine-diff-vector)))
863
864 ;; Set overlays over the regions that denote delimiters
865 (defun ediff-set-fine-overlays-for-combined-merge (diff-list reg-num)
866 (let (overlay overlay-list)
867 (while diff-list
868 (condition-case nil
869 (setq overlay
870 (ediff-make-bullet-proof-overlay
871 (nth 0 diff-list) (nth 1 diff-list) ediff-buffer-C))
872 (error ""))
873 (setq overlay-list (cons overlay overlay-list))
874 (if (> (length diff-list) 1)
875 (setq diff-list (cdr (cdr diff-list)))
876 (error "ediff-set-fine-overlays-for-combined-merge: corrupt list of
877 delimiter regions"))
878 )
879 (setq overlay-list (reverse overlay-list))
880 (ediff-set-fine-diff-vector
881 reg-num 'C (apply 'vector overlay-list))
882 ))
883
884
885 ;; Convert diff list to overlays for a given DIFF-REGION
886 ;; in buffer of type BUF-TYPE
887 (defun ediff-set-fine-overlays-in-one-buffer (buf-type diff-list region-num)
888 (let* ((current-diff -1)
889 (reg-start (ediff-get-diff-posn buf-type 'beg region-num))
890 (buff (ediff-get-buffer buf-type))
891 (ctl-buf ediff-control-buffer)
892 combined-merge-diff-list
893 diff-overlay-list list-element
894 begin end overlay)
895
896 (ediff-clear-fine-differences-in-one-buffer region-num buf-type)
897 (setq diff-list (cdr diff-list)) ; discard list type (words or points)
898 (ediff-with-current-buffer buff (goto-char reg-start))
899
900 ;; if it is a combined merge then set overlays in buff C specially
901 (if (and ediff-merge-job (eq buf-type 'C)
902 (setq combined-merge-diff-list
903 (ediff-looks-like-combined-merge region-num)))
904 (ediff-set-fine-overlays-for-combined-merge
905 combined-merge-diff-list region-num)
906 ;; regular fine diff
907 (while diff-list
908 (setq current-diff (1+ current-diff)
909 list-element (car diff-list)
910 begin (aref list-element (cond ((eq buf-type 'A) 0)
911 ((eq buf-type 'B) 2)
912 (t 4))) ; buf C
913 end (aref list-element (cond ((eq buf-type 'A) 1)
914 ((eq buf-type 'B) 3)
915 (t 5)))) ; buf C
916 (if (not (or begin end))
917 () ; skip this diff
918 ;; Put overlays at appropriate places in buffers
919 ;; convert lines to points, if necessary
920 (ediff-with-current-buffer ctl-buf
921 (setq begin (ediff-goto-word (1+ begin) buff)
922 end (ediff-goto-word end buff 'end)))
923 (setq overlay (ediff-make-bullet-proof-overlay begin end buff))
924 ;; record all overlays for this difference region
925 (setq diff-overlay-list (nconc diff-overlay-list (list overlay))))
926
927 (setq diff-list (cdr diff-list))
928 ) ; while
929 ;; convert the list of difference information into a vector
930 ;; for fast access
931 (ediff-set-fine-diff-vector
932 region-num buf-type (vconcat diff-overlay-list))
933 )))
934
935
936 (defsubst ediff-convert-fine-diffs-to-overlays (diff-list region-num)
937 (ediff-set-fine-overlays-in-one-buffer 'A diff-list region-num)
938 (ediff-set-fine-overlays-in-one-buffer 'B diff-list region-num)
939 (if ediff-3way-job
940 (ediff-set-fine-overlays-in-one-buffer 'C diff-list region-num)
941 ))
942
943
944 ;; Stolen from emerge.el
945 (defun ediff-get-diff3-group (file)
946 ;; This save-excursion allows ediff-get-diff3-group to be called for the
947 ;; various groups of lines (1, 2, 3) in any order, and for the lines to
948 ;; appear in any order. The reason this is necessary is that Gnu diff3
949 ;; can produce the groups in the order 1, 2, 3 or 1, 3, 2.
950 (save-excursion
951 (re-search-forward
952 (concat "^" file ":\\([0-9]+\\)\\(,\\([0-9]+\\)\\)?\\([ac]\\)\C-m?$"))
953 (beginning-of-line 2)
954 ;; treatment depends on whether it is an "a" group or a "c" group
955 (if (string-equal (buffer-substring (match-beginning 4) (match-end 4)) "c")
956 ;; it is a "c" group
957 (if (match-beginning 2)
958 ;; it has two numbers
959 (list (string-to-number
960 (buffer-substring (match-beginning 1) (match-end 1)))
961 (1+ (string-to-number
962 (buffer-substring (match-beginning 3) (match-end 3)))))
963 ;; it has one number
964 (let ((x (string-to-number
965 (buffer-substring (match-beginning 1) (match-end 1)))))
966 (list x (1+ x))))
967 ;; it is an "a" group
968 (let ((x (1+ (string-to-number
969 (buffer-substring (match-beginning 1) (match-end 1))))))
970 (list x x)))))
971
972
973 ;; If WORD-MODE, construct vector of diffs using word numbers.
974 ;; Else, use point values.
975 ;; WORD-MODE also tells if we are in the word-mode or not.
976 ;; If THREE-WAY-COMP, then it is a 3-way comparison. Else, it is merging
977 ;; with ancestor, in which case buffer-C contents is identical to buffer-A/B,
978 ;; contents (unless buffer-A is narrowed) depending on ediff-default-variant's
979 ;; value.
980 ;; BOUNDS specifies visibility bounds to use.
981 (defun ediff-extract-diffs3 (diff-buffer word-mode three-way-comp
982 &optional bounds)
983 (let ((A-buffer ediff-buffer-A)
984 (B-buffer ediff-buffer-B)
985 (C-buffer ediff-buffer-C)
986 (anc-buffer ediff-ancestor-buffer)
987 (a-prev 1) ; needed to set the first diff line correctly
988 (b-prev 1)
989 (c-prev 1)
990 (anc-prev 1)
991 diff-list shift-A shift-B shift-C
992 )
993
994 ;; diff list contains word numbers or points, depending on word-mode
995 (setq diff-list (cons (if word-mode 'words 'points)
996 diff-list))
997 (if bounds
998 (setq shift-A
999 (ediff-overlay-start
1000 (ediff-get-value-according-to-buffer-type 'A bounds))
1001 shift-B
1002 (ediff-overlay-start
1003 (ediff-get-value-according-to-buffer-type 'B bounds))
1004 shift-C
1005 (if three-way-comp
1006 (ediff-overlay-start
1007 (ediff-get-value-according-to-buffer-type 'C bounds)))))
1008
1009 ;; reset point in buffers A, B, C
1010 (ediff-with-current-buffer A-buffer
1011 (goto-char (if shift-A shift-A (point-min))))
1012 (ediff-with-current-buffer B-buffer
1013 (goto-char (if shift-B shift-B (point-min))))
1014 (if three-way-comp
1015 (ediff-with-current-buffer C-buffer
1016 (goto-char (if shift-C shift-C (point-min)))))
1017 (if (ediff-buffer-live-p anc-buffer)
1018 (ediff-with-current-buffer anc-buffer
1019 (goto-char (point-min))))
1020
1021 (ediff-with-current-buffer diff-buffer
1022 (goto-char (point-min))
1023 (while (re-search-forward ediff-match-diff3-line nil t)
1024 ;; leave point after matched line
1025 (beginning-of-line 2)
1026 (let ((agreement (buffer-substring (match-beginning 1) (match-end 1))))
1027 ;; if the files A and B are the same and not 3way-comparison,
1028 ;; ignore the difference
1029 (if (or three-way-comp (not (string-equal agreement "3")))
1030 (let* ((a-begin (car (ediff-get-diff3-group "1")))
1031 (a-end (nth 1 (ediff-get-diff3-group "1")))
1032 (b-begin (car (ediff-get-diff3-group "2")))
1033 (b-end (nth 1 (ediff-get-diff3-group "2")))
1034 (c-or-anc-begin (car (ediff-get-diff3-group "3")))
1035 (c-or-anc-end (nth 1 (ediff-get-diff3-group "3")))
1036 (state-of-merge
1037 (cond ((string-equal agreement "1") 'prefer-A)
1038 ((string-equal agreement "2") 'prefer-B)
1039 (t ediff-default-variant)))
1040 (state-of-diff-merge
1041 (if (memq state-of-merge '(default-A prefer-A)) 'B 'A))
1042 (state-of-diff-comparison
1043 (cond ((string-equal agreement "1") 'A)
1044 ((string-equal agreement "2") 'B)
1045 ((string-equal agreement "3") 'C)))
1046 state-of-ancestor
1047 c-begin c-end
1048 a-begin-pt a-end-pt
1049 b-begin-pt b-end-pt
1050 c-begin-pt c-end-pt
1051 anc-begin-pt anc-end-pt)
1052
1053 (setq state-of-ancestor
1054 (= c-or-anc-begin c-or-anc-end))
1055
1056 (cond (three-way-comp
1057 (setq c-begin c-or-anc-begin
1058 c-end c-or-anc-end))
1059 ((eq ediff-default-variant 'default-B)
1060 (setq c-begin b-begin
1061 c-end b-end))
1062 (t
1063 (setq c-begin a-begin
1064 c-end a-end)))
1065
1066 ;; compute main diff vector
1067 (if word-mode
1068 ;; make diff-list contain word numbers
1069 (setq diff-list
1070 (nconc diff-list
1071 (list (vector
1072 (- a-begin a-prev) (- a-end a-begin)
1073 (- b-begin b-prev) (- b-end b-begin)
1074 (- c-begin c-prev) (- c-end c-begin)
1075 nil nil ; dummy ancestor
1076 nil ; state of diff
1077 nil ; state of merge
1078 nil ; state of ancestor
1079 )))
1080 a-prev a-end
1081 b-prev b-end
1082 c-prev c-end)
1083 ;; else convert lines to points
1084 (ediff-with-current-buffer A-buffer
1085 (let ((longlines-mode-val
1086 (if (and (boundp 'longlines-mode) longlines-mode) 1 0)))
1087 ;; we must disable and then restore longlines-mode
1088 (if (eq longlines-mode-val 1)
1089 (longlines-mode 0))
1090 (forward-line (- a-begin a-prev))
1091 (setq a-begin-pt (point))
1092 (forward-line (- a-end a-begin))
1093 (setq a-end-pt (point)
1094 a-prev a-end)
1095 (if (eq longlines-mode-val 1)
1096 (longlines-mode longlines-mode-val))
1097 ))
1098 (ediff-with-current-buffer B-buffer
1099 (let ((longlines-mode-val
1100 (if (and (boundp 'longlines-mode) longlines-mode) 1 0)))
1101 (if (eq longlines-mode-val 1)
1102 (longlines-mode 0))
1103 (forward-line (- b-begin b-prev))
1104 (setq b-begin-pt (point))
1105 (forward-line (- b-end b-begin))
1106 (setq b-end-pt (point)
1107 b-prev b-end)
1108 (if (eq longlines-mode-val 1)
1109 (longlines-mode longlines-mode-val))
1110 ))
1111 (ediff-with-current-buffer C-buffer
1112 (let ((longlines-mode-val
1113 (if (and (boundp 'longlines-mode) longlines-mode) 1 0)))
1114 (if (eq longlines-mode-val 1)
1115 (longlines-mode 0))
1116 (forward-line (- c-begin c-prev))
1117 (setq c-begin-pt (point))
1118 (forward-line (- c-end c-begin))
1119 (setq c-end-pt (point)
1120 c-prev c-end)
1121 (if (eq longlines-mode-val 1)
1122 (longlines-mode longlines-mode-val))
1123 ))
1124 (if (ediff-buffer-live-p anc-buffer)
1125 (ediff-with-current-buffer anc-buffer
1126 (let ((longlines-mode-val
1127 (if (and (boundp 'longlines-mode) longlines-mode) 1 0)))
1128 (if (eq longlines-mode-val 1)
1129 (longlines-mode 0))
1130 (forward-line (- c-or-anc-begin anc-prev))
1131 (setq anc-begin-pt (point))
1132 (forward-line (- c-or-anc-end c-or-anc-begin))
1133 (setq anc-end-pt (point)
1134 anc-prev c-or-anc-end)
1135 (if (eq longlines-mode-val 1)
1136 (longlines-mode longlines-mode-val))
1137 )))
1138 (setq diff-list
1139 (nconc
1140 diff-list
1141 ;; if comparing with ancestor, then there also is a
1142 ;; state-of-difference marker
1143 (if three-way-comp
1144 (list (vector
1145 a-begin-pt a-end-pt
1146 b-begin-pt b-end-pt
1147 c-begin-pt c-end-pt
1148 nil nil ; ancestor begin/end
1149 state-of-diff-comparison
1150 nil ; state of merge
1151 nil ; state of ancestor
1152 ))
1153 (list (vector a-begin-pt a-end-pt
1154 b-begin-pt b-end-pt
1155 c-begin-pt c-end-pt
1156 anc-begin-pt anc-end-pt
1157 state-of-diff-merge
1158 state-of-merge
1159 state-of-ancestor
1160 )))
1161 )))
1162 ))
1163
1164 ))) ; end ediff-with-current-buffer
1165 diff-list
1166 ))
1167
1168 ;; Generate the difference vector and overlays for three files
1169 ;; File-C is either the third file to compare (in case of 3-way comparison)
1170 ;; or it is the ancestor file.
1171 (defun ediff-setup-diff-regions3 (file-A file-B file-C)
1172 (or (ediff-buffer-live-p ediff-diff-buffer)
1173 (setq ediff-diff-buffer
1174 (get-buffer-create (ediff-unique-buffer-name "*ediff-diff" "*"))))
1175
1176 (message "Computing differences ...")
1177 (ediff-exec-process ediff-diff3-program ediff-diff-buffer 'synchronize
1178 ediff-diff3-options file-A file-B file-C)
1179
1180 (ediff-prepare-error-list ediff-diff3-ok-lines-regexp ediff-diff-buffer)
1181 ;;(message "Computing differences ... done")
1182 (ediff-convert-diffs-to-overlays
1183 (ediff-extract-diffs3
1184 ediff-diff-buffer
1185 ediff-word-mode ediff-3way-comparison-job ediff-narrow-bounds)
1186 ))
1187
1188
1189 ;; Execute PROGRAM asynchronously, unless OS/2, Windows-*, or DOS, or unless
1190 ;; SYNCH is non-nil. BUFFER must be a buffer object, and must be alive. The
1191 ;; OPTIONS arg is a list of options to pass to PROGRAM. It may be a blank
1192 ;; string. All elements in FILES must be strings. We also delete nil from
1193 ;; args.
1194 (defun ediff-exec-process (program buffer synch options &rest files)
1195 (let ((data (match-data))
1196 (coding-system-for-read ediff-coding-system-for-read)
1197 args)
1198 (setq args (append (split-string options) files))
1199 (setq args (delete "" (delq nil args))) ; delete nil and "" from arguments
1200 ;; the --binary option, if present, should be used only for buffer jobs
1201 ;; or for refining the differences
1202 (or (string-match "buffer" (symbol-name ediff-job-name))
1203 (eq buffer ediff-fine-diff-buffer)
1204 (setq args (delete "--binary" args)))
1205 (unwind-protect
1206 (let ((directory default-directory)
1207 proc)
1208 (save-excursion
1209 (set-buffer buffer)
1210 (erase-buffer)
1211 (setq default-directory directory)
1212 (if (or (memq system-type '(emx ms-dos windows-nt windows-95))
1213 synch)
1214 ;; In OS/2 (emx) do it synchronously, since OS/2 doesn't let us
1215 ;; delete files used by other processes. Thus, in ediff-buffers
1216 ;; and similar functions, we can't delete temp files because
1217 ;; they might be used by the asynch process that computes
1218 ;; custom diffs. So, we have to wait till custom diff
1219 ;; subprocess is done.
1220 ;; Similarly for Windows-*
1221 ;; In DOS, must synchronize because DOS doesn't have
1222 ;; asynchronous processes.
1223 (apply 'call-process program nil buffer nil args)
1224 ;; On other systems, do it asynchronously.
1225 (setq proc (get-buffer-process buffer))
1226 (if proc (kill-process proc))
1227 (setq proc
1228 (apply 'start-process "Custom Diff" buffer program args))
1229 (setq mode-line-process '(":%s"))
1230 (set-process-sentinel proc 'ediff-process-sentinel)
1231 (set-process-filter proc 'ediff-process-filter)
1232 )))
1233 (store-match-data data))))
1234
1235 ;; This is shell-command-filter from simple.el in Emacs.
1236 ;; Copied here because XEmacs doesn't have it.
1237 (defun ediff-process-filter (proc string)
1238 ;; Do save-excursion by hand so that we can leave point numerically unchanged
1239 ;; despite an insertion immediately after it.
1240 (let* ((obuf (current-buffer))
1241 (buffer (process-buffer proc))
1242 opoint
1243 (window (get-buffer-window buffer))
1244 (pos (window-start window)))
1245 (unwind-protect
1246 (progn
1247 (set-buffer buffer)
1248 (or (= (point) (point-max))
1249 (setq opoint (point)))
1250 (goto-char (point-max))
1251 (insert-before-markers string))
1252 ;; insert-before-markers moved this marker: set it back.
1253 (set-window-start window pos)
1254 ;; Finish our save-excursion.
1255 (if opoint
1256 (goto-char opoint))
1257 (set-buffer obuf))))
1258
1259 ;; like shell-command-sentinel but doesn't print an exit status message
1260 ;; we do this because diff always exits with status 1, if diffs are found
1261 ;; so shell-command-sentinel displays a confusing message to the user
1262 (defun ediff-process-sentinel (process signal)
1263 (if (and (memq (process-status process) '(exit signal))
1264 (buffer-name (process-buffer process)))
1265 (progn
1266 (save-excursion
1267 (set-buffer (process-buffer process))
1268 (setq mode-line-process nil))
1269 (delete-process process))))
1270
1271
1272 ;;; Word functions used to refine the current diff
1273
1274 (defvar ediff-forward-word-function 'ediff-forward-word
1275 "*Function to call to move to the next word.
1276 Used for splitting difference regions into individual words.")
1277 (make-variable-buffer-local 'ediff-forward-word-function)
1278
1279 (defvar ediff-whitespace " \n\t\f"
1280 "*Characters constituting white space.
1281 These characters are ignored when differing regions are split into words.")
1282 (make-variable-buffer-local 'ediff-whitespace)
1283
1284 (defvar ediff-word-1
1285 (ediff-cond-compile-for-xemacs-or-emacs "a-zA-Z---_" "-[:word:]_")
1286 "*Characters that constitute words of type 1.
1287 More precisely, [ediff-word-1] is a regexp that matches type 1 words.
1288 See `ediff-forward-word' for more details.")
1289 (make-variable-buffer-local 'ediff-word-1)
1290
1291 (defvar ediff-word-2 "0-9.,"
1292 "*Characters that constitute words of type 2.
1293 More precisely, [ediff-word-2] is a regexp that matches type 2 words.
1294 See `ediff-forward-word' for more details.")
1295 (make-variable-buffer-local 'ediff-word-2)
1296
1297 (defvar ediff-word-3 "`'?!:;\"{}[]()"
1298 "*Characters that constitute words of type 3.
1299 More precisely, [ediff-word-3] is a regexp that matches type 3 words.
1300 See `ediff-forward-word' for more details.")
1301 (make-variable-buffer-local 'ediff-word-3)
1302
1303 (defvar ediff-word-4
1304 (concat "^" ediff-word-1 ediff-word-2 ediff-word-3 ediff-whitespace)
1305 "*Characters that constitute words of type 4.
1306 More precisely, [ediff-word-4] is a regexp that matches type 4 words.
1307 See `ediff-forward-word' for more details.")
1308 (make-variable-buffer-local 'ediff-word-4)
1309
1310 ;; Split region along word boundaries. Each word will be on its own line.
1311 ;; Output to buffer out-buffer.
1312 (defun ediff-forward-word ()
1313 "Move point one word forward.
1314 There are four types of words, each of which consists entirely of
1315 characters in `ediff-word-1', `ediff-word-2', `ediff-word-3', or
1316 `ediff-word-4'. Words are recognized by passing these one after another as
1317 arguments to `skip-chars-forward'."
1318 (or (> (+ (skip-chars-forward ediff-word-1)
1319 (skip-syntax-forward "w"))
1320 0)
1321 (> (skip-chars-forward ediff-word-2) 0)
1322 (> (skip-chars-forward ediff-word-3) 0)
1323 (> (skip-chars-forward ediff-word-4) 0)
1324 ))
1325
1326
1327 (defun ediff-wordify (beg end in-buffer out-buffer &optional control-buf)
1328 (let ((forward-word-function
1329 ;; eval in control buf to let user create local versions for
1330 ;; different invocations
1331 (if control-buf
1332 (ediff-with-current-buffer control-buf
1333 ediff-forward-word-function)
1334 ediff-forward-word-function))
1335 inbuf-syntax-tbl sv-point diff-string)
1336 (save-excursion
1337 (set-buffer in-buffer)
1338 (setq inbuf-syntax-tbl
1339 (if control-buf
1340 (ediff-with-current-buffer control-buf
1341 ediff-syntax-table)
1342 (syntax-table)))
1343 (setq diff-string (buffer-substring-no-properties beg end))
1344
1345 (set-buffer out-buffer)
1346 ;; Make sure that temp buff syntax table is the same as the original buf
1347 ;; syntax tbl, because we use ediff-forward-word in both and
1348 ;; ediff-forward-word depends on the syntax classes of characters.
1349 (set-syntax-table inbuf-syntax-tbl)
1350 (erase-buffer)
1351 (insert diff-string)
1352 (goto-char (point-min))
1353 (skip-chars-forward ediff-whitespace)
1354 (delete-region (point-min) (point))
1355
1356 (while (not (eobp))
1357 (funcall forward-word-function)
1358 (setq sv-point (point))
1359 (skip-chars-forward ediff-whitespace)
1360 (delete-region sv-point (point))
1361 (insert "\n")))))
1362
1363 ;; copy string specified as BEG END from IN-BUF to OUT-BUF
1364 (defun ediff-copy-to-buffer (beg end in-buffer out-buffer)
1365 (with-current-buffer out-buffer
1366 (erase-buffer)
1367 (insert-buffer-substring in-buffer beg end)
1368 (goto-char (point-min))))
1369
1370
1371 ;; goto word #n starting at current position in buffer `buf'
1372 ;; For ediff, a word is determined by ediff-forward-word-function
1373 ;; If `flag' is non-nil, goto the end of the n-th word.
1374 (defun ediff-goto-word (n buf &optional flag)
1375 ;; remember val ediff-forward-word-function has in ctl buf
1376 (let ((fwd-word-fun ediff-forward-word-function)
1377 (syntax-tbl ediff-syntax-table))
1378 (ediff-with-current-buffer buf
1379 (skip-chars-forward ediff-whitespace)
1380 (ediff-with-syntax-table syntax-tbl
1381 (while (> n 1)
1382 (funcall fwd-word-fun)
1383 (skip-chars-forward ediff-whitespace)
1384 (setq n (1- n)))
1385 (if (and flag (> n 0))
1386 (funcall fwd-word-fun)))
1387 (point))))
1388
1389 (defun ediff-same-file-contents (f1 f2)
1390 "Return t if files F1 and F2 have identical contents."
1391 (if (and (not (file-directory-p f1))
1392 (not (file-directory-p f2)))
1393 (let ((res
1394 (apply 'call-process ediff-cmp-program nil nil nil
1395 (append ediff-cmp-options (list f1 f2)))))
1396 (and (numberp res) (eq res 0))))
1397 )
1398
1399
1400 (defun ediff-same-contents (d1 d2 &optional filter-re)
1401 "Returns t iff D1 and D2 have the same content.
1402 D1 and D2 can either be both directories or both regular files.
1403 Symlinks and the likes are not handled.
1404 If FILTER-RE is non-nil, recursive checking in directories
1405 affects only files whose names match the expression."
1406 ;; Normalize empty filter RE to nil.
1407 (unless (> (length filter-re) 0) (setq filter-re nil))
1408 ;; Indicate progress
1409 (message "Comparing '%s' and '%s' modulo '%s'" d1 d2 filter-re)
1410 (cond
1411 ;; D1 & D2 directories => recurse
1412 ((and (file-directory-p d1)
1413 (file-directory-p d2))
1414 (if (null ediff-recurse-to-subdirectories)
1415 (if (y-or-n-p "Compare subdirectories recursively? ")
1416 (setq ediff-recurse-to-subdirectories 'yes)
1417 (setq ediff-recurse-to-subdirectories 'no)))
1418 (if (eq ediff-recurse-to-subdirectories 'yes)
1419 (let* ((all-entries-1 (directory-files d1 t filter-re))
1420 (all-entries-2 (directory-files d2 t filter-re))
1421 (entries-1 (ediff-delete-all-matches "^\\.\\.?$" all-entries-1))
1422 (entries-2 (ediff-delete-all-matches "^\\.\\.?$" all-entries-2))
1423 )
1424
1425 (ediff-same-file-contents-lists entries-1 entries-2 filter-re)
1426 ))
1427 ) ; end of the directories case
1428 ;; D1 & D2 are both files => compare directly
1429 ((and (file-regular-p d1)
1430 (file-regular-p d2))
1431 (ediff-same-file-contents d1 d2))
1432 ;; Otherwise => false: unequal contents
1433 )
1434 )
1435
1436 ;; If lists have the same length and names of files are pairwise equal
1437 ;; (removing the directories) then compare contents pairwise.
1438 ;; True if all contents are the same; false otherwise
1439 (defun ediff-same-file-contents-lists (entries-1 entries-2 filter-re)
1440 ;; First, check only the names (works quickly and ensures a
1441 ;; precondition for subsequent code)
1442 (if (and (= (length entries-1) (length entries-2))
1443 (equal (mapcar 'file-name-nondirectory entries-1)
1444 (mapcar 'file-name-nondirectory entries-2)))
1445 ;; With name equality established, compare the entries
1446 ;; through recursion.
1447 (let ((continue t))
1448 (while (and entries-1 continue)
1449 (if (ediff-same-contents
1450 (car entries-1) (car entries-2) filter-re)
1451 (setq entries-1 (cdr entries-1)
1452 entries-2 (cdr entries-2))
1453 (setq continue nil))
1454 )
1455 ;; if reached the end then lists are equal
1456 (null entries-1))
1457 )
1458 )
1459
1460
1461 ;; ARG1 is a regexp, ARG2 is a list of full-filenames
1462 ;; Delete all entries that match the regexp
1463 (defun ediff-delete-all-matches (regex file-list-list)
1464 (let (result elt)
1465 (while file-list-list
1466 (setq elt (car file-list-list))
1467 (or (string-match regex (file-name-nondirectory elt))
1468 (setq result (cons elt result)))
1469 (setq file-list-list (cdr file-list-list)))
1470 (reverse result)))
1471
1472
1473 ;;; Local Variables:
1474 ;;; eval: (put 'ediff-defvar-local 'lisp-indent-hook 'defun)
1475 ;;; eval: (put 'ediff-with-current-buffer 'lisp-indent-hook 1)
1476 ;;; eval: (put 'ediff-with-current-buffer 'edebug-form-spec '(form body))
1477 ;;; End:
1478
1479 ;;; arch-tag: a86d448e-58d7-4572-a1d9-fdedfa22f648
1480 ;;; ediff-diff.el ends here