1 /* Analyze differences between two vectors.
3 Copyright (C) 1988-1989, 1992-1995, 2001-2004, 2006-2017 Free Software
6 This program is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 /* The basic idea is to consider two vectors as similar if, when
21 transforming the first vector into the second vector through a
22 sequence of edits (inserts and deletes of one element each),
23 this sequence is short - or equivalently, if the ordered list
24 of elements that are untouched by these edits is long. For a
25 good introduction to the subject, read about the "Levenshtein
26 distance" in Wikipedia.
28 The basic algorithm is described in:
29 "An O(ND) Difference Algorithm and its Variations", Eugene W. Myers,
30 Algorithmica Vol. 1, 1986, pp. 251-266,
31 <http://dx.doi.org/10.1007/BF01840446>.
32 See especially section 4.2, which describes the variation used below.
34 The basic algorithm was independently discovered as described in:
35 "Algorithms for Approximate String Matching", Esko Ukkonen,
36 Information and Control Vol. 64, 1985, pp. 100-118,
37 <http://dx.doi.org/10.1016/S0019-9958(85)80046-2>.
39 Unless the 'find_minimal' flag is set, this code uses the TOO_EXPENSIVE
40 heuristic, by Paul Eggert, to limit the cost to O(N**1.5 log N)
41 at the price of producing suboptimal output for large inputs with
44 /* Before including this file, you need to define:
45 ELEMENT The element type of the vectors being compared.
46 EQUAL A two-argument macro that tests two elements for
48 OFFSET A signed integer type sufficient to hold the
49 difference between two indices. Usually
50 something like ptrdiff_t.
51 EXTRA_CONTEXT_FIELDS Declarations of fields for 'struct context'.
52 NOTE_DELETE(ctxt, xoff) Record the removal of the object xvec[xoff].
53 NOTE_INSERT(ctxt, yoff) Record the insertion of the object yvec[yoff].
54 EARLY_ABORT(ctxt) (Optional) A boolean expression that triggers an
55 early abort of the computation.
56 USE_HEURISTIC (Optional) Define if you want to support the
57 heuristic for large vectors.
58 It is also possible to use this file with abstract arrays. In this case,
59 xvec and yvec are not represented in memory. They only exist conceptually.
60 In this case, the list of defines above is amended as follows:
63 XVECREF_YVECREF_EQUAL(ctxt, xoff, yoff)
64 A three-argument macro: References xvec[xoff] and
65 yvec[yoff] and tests these elements for equality.
66 Before including this file, you also need to include:
72 /* Maximum value of type OFFSET. */
74 ((((OFFSET)1 << (sizeof (OFFSET) * CHAR_BIT - 2)) - 1) * 2 + 1)
76 /* Default to no early abort. */
78 # define EARLY_ABORT(ctxt) false
81 /* Use this to suppress gcc's "...may be used before initialized" warnings.
82 Beware: The Code argument must not contain commas. */
84 # if defined GCC_LINT || defined lint
85 # define IF_LINT(Code) Code
87 # define IF_LINT(Code) /* empty */
91 /* As above, but when Code must contain one comma. */
93 # if defined GCC_LINT || defined lint
94 # define IF_LINT2(Code1, Code2) Code1, Code2
96 # define IF_LINT2(Code1, Code2) /* empty */
101 * Context of comparison operation.
106 /* Vectors being compared. */
114 /* Vector, indexed by diagonal, containing 1 + the X coordinate of the point
115 furthest along the given diagonal in the forward search of the edit
119 /* Vector, indexed by diagonal, containing the X coordinate of the point
120 furthest along the given diagonal in the backward search of the edit
125 /* This corresponds to the diff --speed-large-files flag. With this
126 heuristic, for vectors with a constant small density of changes,
127 the algorithm is linear in the vector size. */
131 /* Edit scripts longer than this are too expensive to compute. */
132 OFFSET too_expensive
;
134 /* Snakes bigger than this are considered "big". */
135 #define SNAKE_LIMIT 20
140 /* Midpoints of this partition. */
144 /* True if low half will be analyzed minimally. */
147 /* Likewise for high half. */
152 /* Find the midpoint of the shortest edit script for a specified portion
155 Scan from the beginnings of the vectors, and simultaneously from the ends,
156 doing a breadth-first search through the space of edit-sequence.
157 When the two searches meet, we have found the midpoint of the shortest
160 If FIND_MINIMAL is true, find the minimal edit script regardless of
161 expense. Otherwise, if the search is too expensive, use heuristics to
162 stop the search and report a suboptimal answer.
164 Set PART->(xmid,ymid) to the midpoint (XMID,YMID). The diagonal number
165 XMID - YMID equals the number of inserted elements minus the number
166 of deleted elements (counting only elements before the midpoint).
168 Set PART->lo_minimal to true iff the minimal edit script for the
169 left half of the partition is known; similarly for PART->hi_minimal.
171 This function assumes that the first elements of the specified portions
172 of the two vectors do not match, and likewise that the last elements do not
173 match. The caller must trim matching elements from the beginning and end
174 of the portions it is going to specify.
176 If we return the "wrong" partitions, the worst this can do is cause
177 suboptimal diff output. It cannot cause incorrect diff output. */
180 diag (OFFSET xoff
, OFFSET xlim
, OFFSET yoff
, OFFSET ylim
, bool find_minimal
,
181 struct partition
*part
, struct context
*ctxt
)
183 OFFSET
*const fd
= ctxt
->fdiag
; /* Give the compiler a chance. */
184 OFFSET
*const bd
= ctxt
->bdiag
; /* Additional help for the compiler. */
186 ELEMENT
const *const xv
= ctxt
->xvec
; /* Still more help for the compiler. */
187 ELEMENT
const *const yv
= ctxt
->yvec
; /* And more and more . . . */
188 #define XREF_YREF_EQUAL(x,y) EQUAL (xv[x], yv[y])
190 #define XREF_YREF_EQUAL(x,y) XVECREF_YVECREF_EQUAL (ctxt, x, y)
192 const OFFSET dmin
= xoff
- ylim
; /* Minimum valid diagonal. */
193 const OFFSET dmax
= xlim
- yoff
; /* Maximum valid diagonal. */
194 const OFFSET fmid
= xoff
- yoff
; /* Center diagonal of top-down search. */
195 const OFFSET bmid
= xlim
- ylim
; /* Center diagonal of bottom-up search. */
197 OFFSET fmax
= fmid
; /* Limits of top-down search. */
199 OFFSET bmax
= bmid
; /* Limits of bottom-up search. */
200 OFFSET c
; /* Cost. */
201 bool odd
= (fmid
- bmid
) & 1; /* True if southeast corner is on an odd
202 diagonal with respect to the northwest. */
209 OFFSET d
; /* Active diagonal. */
210 bool big_snake
= false;
212 /* Extend the top-down search by an edit step in each diagonal. */
221 for (d
= fmax
; d
>= fmin
; d
-= 2)
225 OFFSET tlo
= fd
[d
- 1];
226 OFFSET thi
= fd
[d
+ 1];
227 OFFSET x0
= tlo
< thi
? thi
: tlo
+ 1;
229 for (x
= x0
, y
= x0
- d
;
230 x
< xlim
&& y
< ylim
&& XREF_YREF_EQUAL (x
, y
);
233 if (x
- x0
> SNAKE_LIMIT
)
236 if (odd
&& bmin
<= d
&& d
<= bmax
&& bd
[d
] <= x
)
240 part
->lo_minimal
= part
->hi_minimal
= true;
245 /* Similarly extend the bottom-up search. */
247 bd
[--bmin
- 1] = OFFSET_MAX
;
251 bd
[++bmax
+ 1] = OFFSET_MAX
;
254 for (d
= bmax
; d
>= bmin
; d
-= 2)
258 OFFSET tlo
= bd
[d
- 1];
259 OFFSET thi
= bd
[d
+ 1];
260 OFFSET x0
= tlo
< thi
? tlo
: thi
- 1;
262 for (x
= x0
, y
= x0
- d
;
263 xoff
< x
&& yoff
< y
&& XREF_YREF_EQUAL (x
- 1, y
- 1);
266 if (x0
- x
> SNAKE_LIMIT
)
269 if (!odd
&& fmin
<= d
&& d
<= fmax
&& x
<= fd
[d
])
273 part
->lo_minimal
= part
->hi_minimal
= true;
282 bool heuristic
= ctxt
->heuristic
;
284 bool heuristic
= false;
287 /* Heuristic: check occasionally for a diagonal that has made lots
288 of progress compared with the edit distance. If we have any
289 such, find the one that has made the most progress and return it
290 as if it had succeeded.
292 With this heuristic, for vectors with a constant small density
293 of changes, the algorithm is linear in the vector size. */
295 if (200 < c
&& big_snake
&& heuristic
)
300 for (d
= fmax
; d
>= fmin
; d
-= 2)
302 OFFSET dd
= d
- fmid
;
305 OFFSET v
= (x
- xoff
) * 2 - dd
;
307 if (v
> 12 * (c
+ (dd
< 0 ? -dd
: dd
)))
310 && xoff
+ SNAKE_LIMIT
<= x
&& x
< xlim
311 && yoff
+ SNAKE_LIMIT
<= y
&& y
< ylim
)
313 /* We have a good enough best diagonal; now insist
314 that it end with a significant snake. */
317 for (k
= 1; XREF_YREF_EQUAL (x
- k
, y
- k
); k
++)
318 if (k
== SNAKE_LIMIT
)
330 part
->lo_minimal
= true;
331 part
->hi_minimal
= false;
339 for (d
= bmax
; d
>= bmin
; d
-= 2)
341 OFFSET dd
= d
- bmid
;
344 OFFSET v
= (xlim
- x
) * 2 + dd
;
346 if (v
> 12 * (c
+ (dd
< 0 ? -dd
: dd
)))
349 && xoff
< x
&& x
<= xlim
- SNAKE_LIMIT
350 && yoff
< y
&& y
<= ylim
- SNAKE_LIMIT
)
352 /* We have a good enough best diagonal; now insist
353 that it end with a significant snake. */
356 for (k
= 0; XREF_YREF_EQUAL (x
+ k
, y
+ k
); k
++)
357 if (k
== SNAKE_LIMIT
- 1)
369 part
->lo_minimal
= false;
370 part
->hi_minimal
= true;
376 /* Heuristic: if we've gone well beyond the call of duty, give up
377 and report halfway between our best results so far. */
378 if (c
>= ctxt
->too_expensive
)
381 OFFSET fxbest
IF_LINT (= 0);
383 OFFSET bxbest
IF_LINT (= 0);
385 /* Find forward diagonal that maximizes X + Y. */
387 for (d
= fmax
; d
>= fmin
; d
-= 2)
389 OFFSET x
= MIN (fd
[d
], xlim
);
403 /* Find backward diagonal that minimizes X + Y. */
404 bxybest
= OFFSET_MAX
;
405 for (d
= bmax
; d
>= bmin
; d
-= 2)
407 OFFSET x
= MAX (xoff
, bd
[d
]);
421 /* Use the better of the two diagonals. */
422 if ((xlim
+ ylim
) - bxybest
< fxybest
- (xoff
+ yoff
))
425 part
->ymid
= fxybest
- fxbest
;
426 part
->lo_minimal
= true;
427 part
->hi_minimal
= false;
432 part
->ymid
= bxybest
- bxbest
;
433 part
->lo_minimal
= false;
434 part
->hi_minimal
= true;
439 #undef XREF_YREF_EQUAL
443 /* Compare in detail contiguous subsequences of the two vectors
444 which are known, as a whole, to match each other.
446 The subsequence of vector 0 is [XOFF, XLIM) and likewise for vector 1.
448 Note that XLIM, YLIM are exclusive bounds. All indices into the vectors
451 If FIND_MINIMAL, find a minimal difference no matter how
454 The results are recorded by invoking NOTE_DELETE and NOTE_INSERT.
456 Return false if terminated normally, or true if terminated through early
460 compareseq (OFFSET xoff
, OFFSET xlim
, OFFSET yoff
, OFFSET ylim
,
461 bool find_minimal
, struct context
*ctxt
)
464 ELEMENT
const *xv
= ctxt
->xvec
; /* Help the compiler. */
465 ELEMENT
const *yv
= ctxt
->yvec
;
466 #define XREF_YREF_EQUAL(x,y) EQUAL (xv[x], yv[y])
468 #define XREF_YREF_EQUAL(x,y) XVECREF_YVECREF_EQUAL (ctxt, x, y)
471 /* Slide down the bottom initial diagonal. */
472 while (xoff
< xlim
&& yoff
< ylim
&& XREF_YREF_EQUAL (xoff
, yoff
))
478 /* Slide up the top initial diagonal. */
479 while (xoff
< xlim
&& yoff
< ylim
&& XREF_YREF_EQUAL (xlim
- 1, ylim
- 1))
485 /* Handle simple cases. */
489 NOTE_INSERT (ctxt
, yoff
);
490 if (EARLY_ABORT (ctxt
))
494 else if (yoff
== ylim
)
497 NOTE_DELETE (ctxt
, xoff
);
498 if (EARLY_ABORT (ctxt
))
504 struct partition part
IF_LINT2 (= { .xmid
= 0, .ymid
= 0 });
506 /* Find a point of correspondence in the middle of the vectors. */
507 diag (xoff
, xlim
, yoff
, ylim
, find_minimal
, &part
, ctxt
);
509 /* Use the partitions to split this problem into subproblems. */
510 if (compareseq (xoff
, part
.xmid
, yoff
, part
.ymid
, part
.lo_minimal
, ctxt
))
512 if (compareseq (part
.xmid
, xlim
, part
.ymid
, ylim
, part
.hi_minimal
, ctxt
))
517 #undef XREF_YREF_EQUAL
523 #undef EXTRA_CONTEXT_FIELDS
528 #undef XVECREF_YVECREF_EQUAL