lisp/desktop.el (desktop-clear): Fix previous change.
[bpt/emacs.git] / lisp / vc / compare-w.el
CommitLineData
55535639 1;;; compare-w.el --- compare text between windows for Emacs
c0274f38 2
ab422c4d
PE
3;; Copyright (C) 1986, 1989, 1993, 1997, 2001-2013 Free Software
4;; Foundation, Inc.
745bc783 5
9750e079 6;; Maintainer: FSF
c42fe9a5 7;; Keywords: convenience files vc
9750e079 8
745bc783
JB
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
745bc783 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
745bc783
JB
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
745bc783 23
e41b2db1
ER
24;;; Commentary:
25
26;; This package provides one entry point, compare-windows. It compares
27;; text starting from point in two adjacent windows, advancing point
28;; until it finds a difference. Option variables permit you to ignore
29;; whitespace differences, or case differences, or both.
30
e5167999
ER
31;;; Code:
32
84d6b04b 33(defgroup compare-windows nil
4bef9110
SE
34 "Compare text between windows."
35 :prefix "compare-"
36 :group 'tools)
37
6c54491c 38(defcustom compare-windows-whitespace "\\(\\s-\\|\n\\|\240\\)+"
9201cc28 39 "Regexp or function that defines whitespace sequences for `compare-windows'.
76960e50 40That command optionally ignores changes in whitespace.
745bc783 41
76960e50
RS
42The value of `compare-windows-whitespace' is normally a regexp, but it
43can also be a function. The function's job is to categorize any
44whitespace around (including before) point; it should also advance
6166a68e 45past any whitespace. The function is called in each window, with
76960e50 46point at the current scanning point. It gets one argument, the point
6166a68e 47where \\[compare-windows] was originally called; it should not look at
76960e50 48any text before that point.
745bc783 49
6166a68e 50If the function returns the same value for both windows, then the
4bef9110 51whitespace is considered to match, and is skipped."
a8899b6b 52 :version "24.4" ; added \240
4bef9110 53 :type '(choice regexp function)
84d6b04b 54 :group 'compare-windows)
745bc783 55
6166a68e 56(defcustom compare-ignore-whitespace nil
9fc9a531 57 "Non-nil means command `compare-windows' ignores whitespace."
6166a68e 58 :type 'boolean
84d6b04b 59 :group 'compare-windows
1dbe7fe7 60 :version "22.1")
6166a68e 61
4bef9110 62(defcustom compare-ignore-case nil
9fc9a531 63 "Non-nil means command `compare-windows' ignores case differences."
6166a68e 64 :type 'boolean
84d6b04b 65 :group 'compare-windows)
6166a68e
RS
66
67(defcustom compare-windows-sync 'compare-windows-sync-default-function
9201cc28 68 "Function or regexp that is used to synchronize points in two
6166a68e
RS
69windows if before calling `compare-windows' points are located
70on mismatched positions.
71
72The value of `compare-windows-sync' can be a function. The
73function's job is to advance points in both windows to the next
74matching text. If the value of `compare-windows-sync' is a
75regexp, then points in both windows are advanced to the next
76occurrence of this regexp.
77
78The current default value is the general function
79`compare-windows-sync-default-function' that is able to
80synchronize points by using quadratic algorithm to find the first
81matching 32-character string in two windows.
82
83The other useful values of this variable could be such functions
84as `forward-word', `forward-sentence', `forward-paragraph', or a
85regexp containing some field separator or a newline, depending on
86the nature of the difference units separator. The variable can
87be made buffer-local.
88
84d6b04b
JL
89If the value of this variable is `nil' (option \"No sync\"), then
90no synchronization is performed, and the function `ding' is called
91to beep or flash the screen when points are mismatched."
92 :type '(choice function regexp (const :tag "No sync" nil))
93 :group 'compare-windows
1dbe7fe7 94 :version "22.1")
6166a68e
RS
95
96(defcustom compare-windows-sync-string-size 32
9201cc28 97 "Size of string from one window that is searched in second window.
6166a68e
RS
98
99Small number makes difference regions more fine-grained, but it
100may fail by finding the wrong match. The bigger number makes
101difference regions more coarse-grained.
102
103The default value 32 is good for the most cases."
104 :type 'integer
84d6b04b 105 :group 'compare-windows
1dbe7fe7 106 :version "22.1")
6166a68e
RS
107
108(defcustom compare-windows-recenter nil
9201cc28 109 "List of two values, each of which is used as argument of
6166a68e
RS
110function `recenter' called in each of two windows to place
111matching points side-by-side.
112
113The value `(-1 0)' is useful if windows are split vertically,
114and the value `((4) (4))' for horizontally split windows."
115 :type '(list sexp sexp)
84d6b04b 116 :group 'compare-windows
1dbe7fe7 117 :version "22.1")
6166a68e
RS
118
119(defcustom compare-windows-highlight t
9201cc28 120 "Non-nil means compare-windows highlights the differences.
9b0f7f31
JL
121The value t removes highlighting immediately after invoking a command
122other than `compare-windows'.
123The value `persistent' leaves all highlighted differences. You can clear
124out all highlighting later with the command `compare-windows-dehighlight'."
125 :type '(choice (const :tag "No highlighting" nil)
126 (const :tag "Persistent highlighting" persistent)
127 (other :tag "Highlight until next command" t))
84d6b04b 128 :group 'compare-windows
1dbe7fe7 129 :version "22.1")
745bc783 130
37af2dd3 131(defface compare-windows
1dbe7fe7 132 '((t :inherit lazy-highlight))
6166a68e 133 "Face for highlighting of compare-windows difference regions."
84d6b04b 134 :group 'compare-windows
1dbe7fe7 135 :version "22.1")
6166a68e
RS
136
137(defvar compare-windows-overlay1 nil)
138(defvar compare-windows-overlay2 nil)
9b0f7f31
JL
139(defvar compare-windows-overlays1 nil)
140(defvar compare-windows-overlays2 nil)
6166a68e
RS
141(defvar compare-windows-sync-point nil)
142
745bc783
JB
143;;;###autoload
144(defun compare-windows (ignore-whitespace)
145 "Compare text in current window with text in next window.
146Compares the text starting at point in each window,
147moving over text in each one as far as they match.
148
82734236
RS
149This command pushes the mark in each window
150at the prior location of point in that window.
151If both windows display the same buffer,
152the mark is pushed twice in that buffer:
153first in the other window, then in the selected window.
154
6166a68e
RS
155A prefix arg means reverse the value of variable
156`compare-ignore-whitespace'. If `compare-ignore-whitespace' is
157nil, then a prefix arg means ignore changes in whitespace. If
158`compare-ignore-whitespace' is non-nil, then a prefix arg means
159don't ignore changes in whitespace. The variable
160`compare-windows-whitespace' controls how whitespace is skipped.
161If `compare-ignore-case' is non-nil, changes in case are also
162ignored.
163
164If `compare-windows-sync' is non-nil, then successive calls of
165this command work in interlaced mode:
166on first call it advances points to the next difference,
167on second call it synchronizes points by skipping the difference,
168on third call it again advances points to the next difference and so on."
745bc783 169 (interactive "P")
27f9dfbf
RS
170 (if compare-ignore-whitespace
171 (setq ignore-whitespace (not ignore-whitespace)))
745bc783 172 (let* (p1 p2 maxp1 maxp2 b1 b2 w2
8c9dbabe 173 (progress 1)
745bc783
JB
174 (opoint1 (point))
175 opoint2
27f9dfbf
RS
176 skip-func-1
177 skip-func-2
6166a68e
RS
178 (sync-func (if (stringp compare-windows-sync)
179 'compare-windows-sync-regexp
180 compare-windows-sync)))
745bc783 181 (setq p1 (point) b1 (current-buffer))
0846761d
AS
182 (setq w2 (next-window (selected-window)))
183 (if (eq w2 (selected-window))
184 (setq w2 (next-window (selected-window) nil 'visible)))
745bc783
JB
185 (if (eq w2 (selected-window))
186 (error "No other window"))
187 (setq p2 (window-point w2)
188 b2 (window-buffer w2))
189 (setq opoint2 p2)
190 (setq maxp1 (point-max))
27f9dfbf
RS
191
192 (setq skip-func-1 (if ignore-whitespace
193 (if (stringp compare-windows-whitespace)
fb5422b2
RS
194 (lambda (pos)
195 (compare-windows-skip-whitespace pos)
27f9dfbf
RS
196 t)
197 compare-windows-whitespace)))
198
199 (with-current-buffer b2
200 (setq skip-func-2 (if ignore-whitespace
201 (if (stringp compare-windows-whitespace)
fb5422b2
RS
202 (lambda (pos)
203 (compare-windows-skip-whitespace pos)
27f9dfbf
RS
204 t)
205 compare-windows-whitespace)))
82734236 206 (push-mark p2 t)
745bc783 207 (setq maxp2 (point-max)))
82734236 208 (push-mark)
745bc783 209
8c9dbabe 210 (while (> progress 0)
6166a68e 211 ;; If both windows have whitespace next to point,
745bc783 212 ;; optionally skip over it.
27f9dfbf 213 (and skip-func-1
745bc783
JB
214 (save-excursion
215 (let (p1a p2a w1 w2 result1 result2)
27f9dfbf 216 (setq result1 (funcall skip-func-1 opoint1))
048ab7d3 217 (setq p1a (point))
745bc783
JB
218 (set-buffer b2)
219 (goto-char p2)
27f9dfbf 220 (setq result2 (funcall skip-func-2 opoint2))
048ab7d3 221 (setq p2a (point))
27f9dfbf 222 (if (and result1 result2 (eq result1 result2))
5a534851
RS
223 (setq p1 p1a
224 p2 p2a)))))
745bc783 225
8c9dbabe 226 (let ((size (min (- maxp1 p1) (- maxp2 p2)))
d76bfaa2 227 (case-fold-search compare-ignore-case))
8c9dbabe
KH
228 (setq progress (compare-buffer-substrings b2 p2 (+ size p2)
229 b1 p1 (+ size p1)))
230 (setq progress (if (zerop progress) size (1- (abs progress))))
231 (setq p1 (+ p1 progress) p2 (+ p2 progress)))
232 ;; Advance point now rather than later, in case we're interrupted.
233 (goto-char p1)
6166a68e
RS
234 (set-window-point w2 p2)
235 (when compare-windows-recenter
236 (recenter (car compare-windows-recenter))
237 (with-selected-window w2 (recenter (cadr compare-windows-recenter)))))
8c9dbabe 238
745bc783 239 (if (= (point) opoint1)
6166a68e
RS
240 (if (not sync-func)
241 (ding)
242 ;; If points are not advanced (i.e. already on mismatch position),
243 ;; then synchronize points between both windows
244 (save-excursion
245 (setq compare-windows-sync-point nil)
246 (funcall sync-func)
247 (setq p1 (point))
248 (set-buffer b2)
249 (goto-char p2)
250 (funcall sync-func)
251 (setq p2 (point)))
252 (goto-char p1)
253 (set-window-point w2 p2)
254 (when compare-windows-recenter
255 (recenter (car compare-windows-recenter))
256 (with-selected-window w2 (recenter (cadr compare-windows-recenter))))
257 ;; If points are still not synchronized, then ding
258 (when (and (= p1 opoint1) (= p2 opoint2))
259 ;; Display error message when current points in two windows
260 ;; are unmatched and next matching points can't be found.
261 (compare-windows-dehighlight)
262 (ding)
263 (message "No more matching points"))))))
49116ac0 264
048ab7d3
RS
265;; Move forward over whatever might be called whitespace.
266;; compare-windows-whitespace is a regexp that matches whitespace.
267;; Match it at various starting points before the original point
268;; and find the latest point at which a match ends.
269;; Don't try starting points before START, though.
270;; Value is non-nil if whitespace is found.
7f5d3541
RS
271;; If there is whitespace before point, but none after,
272;; then return t, but don't advance point.
048ab7d3
RS
273(defun compare-windows-skip-whitespace (start)
274 (let ((end (point))
7f5d3541 275 (beg (point))
048ab7d3 276 (opoint (point)))
5dd1ad8e 277 (while (or (and (looking-at compare-windows-whitespace)
7f5d3541
RS
278 (<= end (match-end 0))
279 ;; This match goes past END, so advance END.
280 (progn (setq end (match-end 0))
5dd1ad8e
RS
281 (> (point) start)))
282 (and (/= (point) start)
283 ;; Consider at least the char before point,
284 ;; unless it is also before START.
285 (= (point) opoint)))
048ab7d3
RS
286 ;; keep going back until whitespace
287 ;; doesn't extend to or past end
288 (forward-char -1))
7f5d3541 289 (setq beg (point))
048ab7d3 290 (goto-char end)
7f5d3541
RS
291 (or (/= beg opoint)
292 (/= end opoint))))
048ab7d3 293
6166a68e
RS
294;; Move forward to the next synchronization regexp.
295(defun compare-windows-sync-regexp ()
296 (if (stringp compare-windows-sync)
297 (re-search-forward compare-windows-sync nil t)))
298
299;; Function works in two passes: one call on each window.
300;; On the first call both matching points are computed,
301;; and one of them is stored in compare-windows-sync-point
302;; to be used when this function is called on second window.
303(defun compare-windows-sync-default-function ()
304 (if (not compare-windows-sync-point)
efbbac29
JL
305 (let* ((w1 (selected-window))
306 (w2 (next-window w1))
6166a68e
RS
307 (b2 (window-buffer w2))
308 (point-max2 (with-current-buffer b2 (point-max)))
309 (op2 (window-point w2))
310 (op1 (point))
311 (region-size compare-windows-sync-string-size)
312 (string-size compare-windows-sync-string-size)
313 in-bounds-p s1 p2 p12s p12)
314 (while (and
315 ;; until matching points are found
316 (not p12s)
317 ;; until size exceeds the maximum points of both buffers
318 ;; (bounds below take care to not overdo in each of them)
319 (or (setq in-bounds-p (< region-size (max (- (point-max) op1)
320 (- point-max2 op2))))
321 ;; until string size becomes smaller than 4
322 (> string-size 4)))
323 (if in-bounds-p
324 ;; make the next search in the double-sized region;
325 ;; on first iteration it is 2*compare-windows-sync-string-size,
326 ;; on last iterations it exceeds both buffers maximum points
327 (setq region-size (* region-size 2))
328 ;; if region size exceeds the maximum points of both buffers,
329 ;; then start to halve the string size until 4;
330 ;; this helps to find differences near the end of buffers
331 (setq string-size (/ string-size 2)))
332 (let ((p1 op1)
333 (bound1 (- (min (+ op1 region-size) (point-max)) string-size))
334 (bound2 (min (+ op2 region-size) point-max2)))
335 (while (< p1 bound1)
336 (setq s1 (buffer-substring-no-properties p1 (+ p1 string-size)))
337 (setq p2 (with-current-buffer b2
338 (goto-char op2)
339 (let ((case-fold-search compare-ignore-case))
340 (search-forward s1 bound2 t))))
341 (when p2
342 (setq p2 (- p2 string-size))
343 (setq p12s (cons (list (+ p1 p2) p1 p2) p12s)))
344 (setq p1 (1+ p1)))))
345 (when p12s
346 ;; use closest matching points (i.e. points with minimal sum)
347 (setq p12 (cdr (assq (apply 'min (mapcar 'car p12s)) p12s)))
348 (goto-char (car p12))
efbbac29
JL
349 (compare-windows-highlight op1 (car p12) (current-buffer) w1
350 op2 (cadr p12) b2 w2))
6166a68e
RS
351 (setq compare-windows-sync-point (or (cadr p12) t)))
352 ;; else set point in the second window to the pre-calculated value
353 (if (numberp compare-windows-sync-point)
354 (goto-char compare-windows-sync-point))
355 (setq compare-windows-sync-point nil)))
356
357;; Highlight differences
efbbac29 358(defun compare-windows-highlight (beg1 end1 b1 w1 beg2 end2 b2 w2)
6166a68e
RS
359 (when compare-windows-highlight
360 (if compare-windows-overlay1
efbbac29
JL
361 (move-overlay compare-windows-overlay1 beg1 end1 b1)
362 (setq compare-windows-overlay1 (make-overlay beg1 end1 b1))
37af2dd3 363 (overlay-put compare-windows-overlay1 'face 'compare-windows)
67019e7f 364 (overlay-put compare-windows-overlay1 'priority 1000))
efbbac29 365 (overlay-put compare-windows-overlay1 'window w1)
6166a68e 366 (if compare-windows-overlay2
efbbac29
JL
367 (move-overlay compare-windows-overlay2 beg2 end2 b2)
368 (setq compare-windows-overlay2 (make-overlay beg2 end2 b2))
37af2dd3 369 (overlay-put compare-windows-overlay2 'face 'compare-windows)
67019e7f 370 (overlay-put compare-windows-overlay2 'priority 1000))
efbbac29 371 (overlay-put compare-windows-overlay2 'window w2)
9b0f7f31
JL
372 (if (not (eq compare-windows-highlight 'persistent))
373 ;; Remove highlighting before next command is executed
374 (add-hook 'pre-command-hook 'compare-windows-dehighlight)
375 (when compare-windows-overlay1
376 (push (copy-overlay compare-windows-overlay1) compare-windows-overlays1)
377 (delete-overlay compare-windows-overlay1))
378 (when compare-windows-overlay2
379 (push (copy-overlay compare-windows-overlay2) compare-windows-overlays2)
380 (delete-overlay compare-windows-overlay2)))))
6166a68e
RS
381
382(defun compare-windows-dehighlight ()
9fc9a531 383 "Remove highlighting created by function `compare-windows-highlight'."
6166a68e
RS
384 (interactive)
385 (remove-hook 'pre-command-hook 'compare-windows-dehighlight)
9b0f7f31
JL
386 (mapc 'delete-overlay compare-windows-overlays1)
387 (mapc 'delete-overlay compare-windows-overlays2)
6166a68e
RS
388 (and compare-windows-overlay1 (delete-overlay compare-windows-overlay1))
389 (and compare-windows-overlay2 (delete-overlay compare-windows-overlay2)))
390
49116ac0
JB
391(provide 'compare-w)
392
c0274f38 393;;; compare-w.el ends here