1 /* Myers diff algorithm implementation, invented by Eugene W. Myers [1].
2 * Implementations of both the Myers Divide Et Impera (using linear space)
3 * and the canonical Myers algorithm (using quadratic space). */
5 * Copyright (c) 2020 Neels Hofmeyr <neels@hofmeyr.de>
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 #include "got_compat.h"
29 #include <arraylist.h>
30 #include <diff_main.h>
32 #include "diff_internal.h"
33 #include "diff_debug.h"
35 /* Myers' diff algorithm [1] is nicely explained in [2].
36 * [1] http://www.xmailserver.org/diff2.pdf
37 * [2] https://blog.jcoglan.com/2017/02/12/the-myers-diff-algorithm-part-1/ ff.
39 * Myers approaches finding the smallest diff as a graph problem.
40 * The crux is that the original algorithm requires quadratic amount of memory:
41 * both sides' lengths added, and that squared. So if we're diffing lines of
42 * text, two files with 1000 lines each would blow up to a matrix of about
43 * 2000 * 2000 ints of state, about 16 Mb of RAM to figure out 2 kb of text.
44 * The solution is using Myers' "divide and conquer" extension algorithm, which
45 * does the original traversal from both ends of the files to reach a middle
46 * where these "snakes" touch, hence does not need to backtrace the traversal,
47 * and so gets away with only keeping a single column of that huge state matrix
52 unsigned int left_start
;
53 unsigned int left_end
;
54 unsigned int right_start
;
55 unsigned int right_end
;
58 /* If the two contents of a file are A B C D E and X B C Y,
59 * the Myers diff graph looks like:
77 * Moving right means delete an atom from the left-hand-side,
78 * Moving down means add an atom from the right-hand-side.
79 * Diagonals indicate identical atoms on both sides, the challenge is to use as
80 * many diagonals as possible.
82 * The original Myers algorithm walks all the way from the top left to the
83 * bottom right, remembers all steps, and then backtraces to find the shortest
84 * path. However, that requires keeping the entire graph in memory, which needs
87 * Myers adds a variant that uses linear space -- note, not linear time, only
88 * linear space: walk forward and backward, find a meeting point in the middle,
89 * and recurse on the two separate sections. This is called "divide and
92 * d: the step number, starting with 0, a.k.a. the distance from the starting
94 * k: relative index in the state array for the forward scan, indicating on
95 * which diagonal through the diff graph we currently are.
96 * c: relative index in the state array for the backward scan, indicating the
97 * diagonal number from the bottom up.
99 * The "divide and conquer" traversal through the Myers graph looks like this:
102 * ----+--------------------------------------------
110 * 1 | 1,0 4,3 >= 4,3 5,4<-- 0
112 * 0 | -->0,0 3,3 4,4 -1
114 * -1 | 0,1 1,2 3,4 -2
119 * | forward-> <-backward
121 * x,y pairs here are the coordinates in the Myers graph:
122 * x = atom index in left-side source, y = atom index in the right-side source.
124 * Only one forward column and one backward column are kept in mem, each need at
125 * most left.len + 1 + right.len items. Note that each d step occupies either
126 * the even or the odd items of a column: if e.g. the previous column is in the
127 * odd items, the next column is formed in the even items, without overwriting
128 * the previous column's results.
130 * Also note that from the diagonal index k and the x coordinate, the y
131 * coordinate can be derived:
133 * Hence the state array only needs to keep the x coordinate, i.e. the position
134 * in the left-hand file, and the y coordinate, i.e. position in the right-hand
135 * file, is derived from the index in the state array.
137 * The two traces meet at 4,3, the first step (here found in the forward
138 * traversal) where a forward position is on or past a backward traced position
139 * on the same diagonal.
141 * This divides the problem space into:
151 * 3 o-o-o-o-*-o *: forward and backward meet here
155 * Doing the same on each section lead to:
161 * 1 o-b b: backward d=1 first reaches here (sliding up the snake)
162 * B \ f: then forward d=2 reaches here (sliding down the snake)
163 * 2 o As result, the box from b to f is found to be identical;
164 * C \ leaving a top box from 0,0 to 1,1 and a bottom trivial
165 * 3 f-o tail 3,3 to 4,3.
169 * 4 o *: forward and backward meet here
171 * and solving the last top left box gives:
187 #define xk_to_y(X, K) ((X) - (K))
188 #define xc_to_y(X, C, DELTA) ((X) - (C) + (DELTA))
189 #define k_to_c(K, DELTA) ((K) + (DELTA))
190 #define c_to_k(C, DELTA) ((C) - (DELTA))
192 /* Do one forwards step in the "divide and conquer" graph traversal.
193 * left: the left side to diff.
194 * right: the right side to diff against.
195 * kd_forward: the traversal state for forwards traversal, modified by this
197 * This is carried over between invocations with increasing d.
198 * kd_forward points at the center of the state array, allowing
200 * kd_backward: the traversal state for backwards traversal, to find a meeting
202 * Since forwards is done first, kd_backward will be valid for d -
204 * kd_backward points at the center of the state array, allowing
206 * d: Step or distance counter, indicating for what value of d the kd_forward
207 * should be populated.
208 * For d == 0, kd_forward[0] is initialized, i.e. the first invocation should
210 * meeting_snake: resulting meeting point, if any.
211 * Return true when a meeting point has been identified.
214 diff_divide_myers_forward(bool *found_midpoint
,
215 struct diff_data
*left
, struct diff_data
*right
,
216 int *kd_forward
, int *kd_backward
, int d
,
217 struct diff_box
*meeting_snake
)
219 int delta
= (int)right
->atoms
.len
- (int)left
->atoms
.len
;
225 *found_midpoint
= false;
227 for (k
= d
; k
>= -d
; k
-= 2) {
228 if (k
< -(int)right
->atoms
.len
|| k
> (int)left
->atoms
.len
) {
229 /* This diagonal is completely outside of the Myers
230 * graph, don't calculate it. */
232 /* We are traversing negatively, and already
233 * below the entire graph, nothing will come of
238 debug(" continue\n");
242 /* This is the initializing step. There is no prev_k
243 * yet, get the initial x from the top left of the Myers
247 prev_y
= xk_to_y(x
, k
);
249 /* Favoring "-" lines first means favoring moving rightwards in
251 * For this, all k should derive from k - 1, only the bottom
252 * most k derive from k + 1:
255 * ----+----------------
257 * 2 | 2,0 <-- from prev_k = 2 - 1 = 1
263 * -1 | 0,1 <-- bottom most for d=1 from
264 * | \\ prev_k = -1 + 1 = 0
265 * -2 | 0,2 <-- bottom most for d=2 from
266 * prev_k = -2 + 1 = -1
268 * Except when a k + 1 from a previous run already means a
269 * further advancement in the graph.
270 * If k == d, there is no k + 1 and k - 1 is the only option.
271 * If k < d, use k + 1 in case that yields a larger x. Also use
272 * k + 1 if k - 1 is outside the graph.
276 || (k
- 1 >= -(int)right
->atoms
.len
277 && kd_forward
[k
- 1] >= kd_forward
[k
+ 1]))) {
278 /* Advance from k - 1.
279 * From position prev_k, step to the right in the Myers
283 prev_x
= kd_forward
[prev_k
];
284 prev_y
= xk_to_y(prev_x
, prev_k
);
287 /* The bottom most one.
288 * From position prev_k, step to the bottom in the Myers
290 * Incrementing y is achieved by decrementing k while
291 * keeping the same x.
292 * (since we're deriving y from y = x - k).
295 prev_x
= kd_forward
[prev_k
];
296 prev_y
= xk_to_y(prev_x
, prev_k
);
301 /* Slide down any snake that we might find here. */
302 while (x
< left
->atoms
.len
&& xk_to_y(x
, k
) < right
->atoms
.len
) {
304 int r
= diff_atom_same(&same
,
305 &left
->atoms
.head
[x
],
316 if (x_before_slide
!= x
) {
317 debug(" down %d similar lines\n", x
- x_before_slide
);
323 for (fi
= d
; fi
>= k
; fi
--) {
324 debug("kd_forward[%d] = (%d, %d)\n", fi
,
325 kd_forward
[fi
], kd_forward
[fi
] - fi
);
331 if (x
< 0 || x
> left
->atoms
.len
332 || xk_to_y(x
, k
) < 0 || xk_to_y(x
, k
) > right
->atoms
.len
)
335 /* Figured out a new forwards traversal, see if this has gone
336 * onto or even past a preceding backwards traversal.
338 * If the delta in length is odd, then d and backwards_d hit the
339 * same state indexes:
341 * ----+---------------- ----------------
351 * 0 | -->0,0 3,3====4,4 -1
358 * If the delta is even, they end up off-by-one, i.e. on
359 * different diagonals:
362 * ----+---------------- ----------------
370 * 0 | -->0,0 3,3 4,4<-- 0
377 * So in the forward path, we can only match up diagonals when
380 if ((delta
& 1) == 0)
382 /* Forwards is done first, so the backwards one was still at
383 * d - 1. Can't do this for d == 0. */
384 int backwards_d
= d
- 1;
388 /* If both sides have the same length, forward and backward
389 * start on the same diagonal, meaning the backwards state index
391 * As soon as the lengths are not the same, the backwards
392 * traversal starts on a different diagonal, and c = k shifted
393 * by the difference in length.
395 int c
= k_to_c(k
, delta
);
397 /* When the file sizes are very different, the traversal trees
398 * start on far distant diagonals.
399 * They don't necessarily meet straight on. See whether this
400 * forward value is on a diagonal that is also valid in
401 * kd_backward[], and match them if so. */
402 if (c
>= -backwards_d
&& c
<= backwards_d
) {
403 /* Current k is on a diagonal that exists in
404 * kd_backward[]. If the two x positions have met or
405 * passed (forward walked onto or past backward), then
406 * we've found a midpoint / a mid-box.
408 * When forwards and backwards traversals meet, the
409 * endpoints of the mid-snake are not the two points in
410 * kd_forward and kd_backward, but rather the section
411 * that was slid (if any) of the current
412 * forward/backward traversal only.
436 * The forward traversal reached M from the top and slid
437 * downwards to A. The backward traversal already
438 * reached X, which is not a straight line from M
439 * anymore, so picking a mid-snake from M to X would
442 * The correct mid-snake is between M and A. M is where
443 * the forward traversal hit the diagonal that the
444 * backward traversal has already passed, and A is what
445 * it reaches when sliding down identical lines.
447 int backward_x
= kd_backward
[c
];
448 if (x
>= backward_x
) {
449 if (x_before_slide
!= x
) {
450 /* met after sliding up a mid-snake */
451 *meeting_snake
= (struct diff_box
){
452 .left_start
= x_before_slide
,
454 .right_start
= xc_to_y(x_before_slide
,
456 .right_end
= xk_to_y(x
, k
),
459 /* met after a side step, non-identical
460 * line. Mark that as box divider
461 * instead. This makes sure that
462 * myers_divide never returns the same
463 * box that came as input, avoiding
464 * "infinite" looping. */
465 *meeting_snake
= (struct diff_box
){
466 .left_start
= prev_x
,
468 .right_start
= prev_y
,
469 .right_end
= xk_to_y(x
, k
),
472 debug("HIT x=(%u,%u) - y=(%u,%u)\n",
473 meeting_snake
->left_start
,
474 meeting_snake
->right_start
,
475 meeting_snake
->left_end
,
476 meeting_snake
->right_end
);
477 debug_dump_myers_graph(left
, right
, NULL
,
480 *found_midpoint
= true;
489 /* Do one backwards step in the "divide and conquer" graph traversal.
490 * left: the left side to diff.
491 * right: the right side to diff against.
492 * kd_forward: the traversal state for forwards traversal, to find a meeting
494 * Since forwards is done first, after this, both kd_forward and
495 * kd_backward will be valid for d.
496 * kd_forward points at the center of the state array, allowing
498 * kd_backward: the traversal state for backwards traversal, to find a meeting
500 * This is carried over between invocations with increasing d.
501 * kd_backward points at the center of the state array, allowing
503 * d: Step or distance counter, indicating for what value of d the kd_backward
504 * should be populated.
505 * Before the first invocation, kd_backward[0] shall point at the bottom
506 * right of the Myers graph (left.len, right.len).
507 * The first invocation will be for d == 1.
508 * meeting_snake: resulting meeting point, if any.
509 * Return true when a meeting point has been identified.
512 diff_divide_myers_backward(bool *found_midpoint
,
513 struct diff_data
*left
, struct diff_data
*right
,
514 int *kd_forward
, int *kd_backward
, int d
,
515 struct diff_box
*meeting_snake
)
517 int delta
= (int)right
->atoms
.len
- (int)left
->atoms
.len
;
524 *found_midpoint
= false;
526 for (c
= d
; c
>= -d
; c
-= 2) {
527 if (c
< -(int)left
->atoms
.len
|| c
> (int)right
->atoms
.len
) {
528 /* This diagonal is completely outside of the Myers
529 * graph, don't calculate it. */
531 /* We are traversing negatively, and already
532 * below the entire graph, nothing will come of
539 /* This is the initializing step. There is no prev_c
540 * yet, get the initial x from the bottom right of the
544 prev_y
= xc_to_y(x
, c
, delta
);
546 /* Favoring "-" lines first means favoring moving rightwards in
548 * For this, all c should derive from c - 1, only the bottom
549 * most c derive from c + 1:
552 * ---------------------------------------------------
556 * from prev_c = c - 1 --> 5,2 2
562 * bottom most for d=1 from c + 1 --> 4,4 -1
564 * bottom most for d=2 --> 3,4 -2
566 * Except when a c + 1 from a previous run already means a
567 * further advancement in the graph.
568 * If c == d, there is no c + 1 and c - 1 is the only option.
569 * If c < d, use c + 1 in case that yields a larger x.
570 * Also use c + 1 if c - 1 is outside the graph.
572 else if (c
> -d
&& (c
== d
573 || (c
- 1 >= -(int)right
->atoms
.len
574 && kd_backward
[c
- 1] <= kd_backward
[c
+ 1]))) {
576 * From position prev_c, step upwards in the Myers
578 * Decrementing y is achieved by incrementing c while
579 * keeping the same x. (since we're deriving y from
580 * y = x - c + delta).
583 prev_x
= kd_backward
[prev_c
];
584 prev_y
= xc_to_y(prev_x
, prev_c
, delta
);
587 /* The bottom most one.
588 * From position prev_c, step to the left in the Myers
592 prev_x
= kd_backward
[prev_c
];
593 prev_y
= xc_to_y(prev_x
, prev_c
, delta
);
597 /* Slide up any snake that we might find here (sections of
598 * identical lines on both sides). */
600 debug("c=%d x-1=%d Yb-1=%d-1=%d\n", c
, x
-1, xc_to_y(x
, c
,
602 xc_to_y(x
, c
, delta
)-1);
605 debug_dump_atom(left
, right
, &left
->atoms
.head
[x
-1]);
607 if (xc_to_y(x
, c
, delta
) > 0) {
609 debug_dump_atom(right
, left
,
610 &right
->atoms
.head
[xc_to_y(x
, c
, delta
)-1]);
614 while (x
> 0 && xc_to_y(x
, c
, delta
) > 0) {
616 int r
= diff_atom_same(&same
,
617 &left
->atoms
.head
[x
-1],
619 xc_to_y(x
, c
, delta
)-1]);
628 if (x_before_slide
!= x
) {
629 debug(" up %d similar lines\n", x_before_slide
- x
);
634 for (fi
= d
; fi
>= c
; fi
--) {
635 debug("kd_backward[%d] = (%d, %d)\n",
638 kd_backward
[fi
] - fi
+ delta
);
643 if (x
< 0 || x
> left
->atoms
.len
644 || xc_to_y(x
, c
, delta
) < 0
645 || xc_to_y(x
, c
, delta
) > right
->atoms
.len
)
648 /* Figured out a new backwards traversal, see if this has gone
649 * onto or even past a preceding forwards traversal.
651 * If the delta in length is even, then d and backwards_d hit
652 * the same state indexes -- note how this is different from in
653 * the forwards traversal, because now both d are the same:
656 * ----+---------------- --------------------
666 * 0 | -->0,0 3,3====4,3 5,4<-- 0
673 * If the delta is odd, they end up off-by-one, i.e. on
674 * different diagonals.
675 * So in the backward path, we can only match up diagonals when
678 if ((delta
& 1) != 0)
680 /* Forwards was done first, now both d are the same. */
683 /* As soon as the lengths are not the same, the
684 * backwards traversal starts on a different diagonal,
685 * and c = k shifted by the difference in length.
687 int k
= c_to_k(c
, delta
);
689 /* When the file sizes are very different, the traversal trees
690 * start on far distant diagonals.
691 * They don't necessarily meet straight on. See whether this
692 * backward value is also on a valid diagonal in kd_forward[],
693 * and match them if so. */
694 if (k
>= -forwards_d
&& k
<= forwards_d
) {
695 /* Current c is on a diagonal that exists in
696 * kd_forward[]. If the two x positions have met or
697 * passed (backward walked onto or past forward), then
698 * we've found a midpoint / a mid-box.
700 * When forwards and backwards traversals meet, the
701 * endpoints of the mid-snake are not the two points in
702 * kd_forward and kd_backward, but rather the section
703 * that was slid (if any) of the current
704 * forward/backward traversal only.
726 * The backward traversal reached M from the bottom and
727 * slid upwards. The forward traversal already reached
728 * X, which is not a straight line from M anymore, so
729 * picking a mid-snake from M to X would yield a
732 * The correct mid-snake is between M and A. M is where
733 * the backward traversal hit the diagonal that the
734 * forwards traversal has already passed, and A is what
735 * it reaches when sliding up identical lines.
738 int forward_x
= kd_forward
[k
];
739 if (forward_x
>= x
) {
740 if (x_before_slide
!= x
) {
741 /* met after sliding down a mid-snake */
742 *meeting_snake
= (struct diff_box
){
744 .left_end
= x_before_slide
,
745 .right_start
= xc_to_y(x
, c
, delta
),
746 .right_end
= xk_to_y(x_before_slide
, k
),
749 /* met after a side step, non-identical
750 * line. Mark that as box divider
751 * instead. This makes sure that
752 * myers_divide never returns the same
753 * box that came as input, avoiding
754 * "infinite" looping. */
755 *meeting_snake
= (struct diff_box
){
758 .right_start
= xc_to_y(x
, c
, delta
),
762 debug("HIT x=%u,%u - y=%u,%u\n",
763 meeting_snake
->left_start
,
764 meeting_snake
->right_start
,
765 meeting_snake
->left_end
,
766 meeting_snake
->right_end
);
767 debug_dump_myers_graph(left
, right
, NULL
,
770 *found_midpoint
= true;
778 /* Integer square root approximation */
783 for (i
= 1; val
> 0; val
>>= 2)
788 #define DIFF_EFFORT_MIN 1024
790 /* Myers "Divide et Impera": tracing forwards from the start and backwards from
791 * the end to find a midpoint that divides the problem into smaller chunks.
792 * Requires only linear amounts of memory. */
794 diff_algo_myers_divide(const struct diff_algo_config
*algo_config
,
795 struct diff_state
*state
)
798 struct diff_data
*left
= &state
->left
;
799 struct diff_data
*right
= &state
->right
;
802 debug("\n** %s\n", __func__
);
808 /* Allocate two columns of a Myers graph, one for the forward and one
809 * for the backward traversal. */
810 unsigned int max
= left
->atoms
.len
+ right
->atoms
.len
;
811 size_t kd_len
= max
+ 1;
812 size_t kd_buf_size
= kd_len
<< 1;
814 if (state
->kd_buf_size
< kd_buf_size
) {
815 kd_buf
= reallocarray(state
->kd_buf
, kd_buf_size
,
819 state
->kd_buf
= kd_buf
;
820 state
->kd_buf_size
= kd_buf_size
;
822 kd_buf
= state
->kd_buf
;
824 for (i
= 0; i
< kd_buf_size
; i
++)
826 int *kd_forward
= kd_buf
;
827 int *kd_backward
= kd_buf
+ kd_len
;
828 int max_effort
= shift_sqrt(max
/2);
830 if (max_effort
< DIFF_EFFORT_MIN
)
831 max_effort
= DIFF_EFFORT_MIN
;
833 /* The 'k' axis in Myers spans positive and negative indexes, so point
834 * the kd to the middle.
835 * It is then possible to index from -max/2 .. max/2. */
837 kd_backward
+= max
/2;
840 struct diff_box mid_snake
= {};
841 bool found_midpoint
= false;
842 for (d
= 0; d
<= (max
/2); d
++) {
844 r
= diff_divide_myers_forward(&found_midpoint
, left
, right
,
845 kd_forward
, kd_backward
, d
,
851 r
= diff_divide_myers_backward(&found_midpoint
, left
, right
,
852 kd_forward
, kd_backward
, d
,
859 /* Limit the effort spent looking for a mid snake. If files have
860 * very few lines in common, the effort spent to find nice mid
861 * snakes is just not worth it, the diff result will still be
862 * essentially minus everything on the left, plus everything on
863 * the right, with a few useless matches here and there. */
864 if (d
> max_effort
) {
865 /* pick the furthest reaching point from
866 * kd_forward and kd_backward, and use that as a
867 * midpoint, to not step into another diff algo
868 * recursion with unchanged box. */
869 int delta
= (int)right
->atoms
.len
- (int)left
->atoms
.len
;
873 int best_forward_i
= 0;
874 int best_forward_distance
= 0;
875 int best_backward_i
= 0;
876 int best_backward_distance
= 0;
883 debug("~~~ HIT d = %d > max_effort = %d\n", d
, max_effort
);
884 debug_dump_myers_graph(left
, right
, NULL
,
888 for (i
= d
; i
>= -d
; i
-= 2) {
889 if (i
>= -(int)right
->atoms
.len
&& i
<= (int)left
->atoms
.len
) {
893 if (distance
> best_forward_distance
) {
894 best_forward_distance
= distance
;
899 if (i
>= -(int)left
->atoms
.len
&& i
<= (int)right
->atoms
.len
) {
901 y
= xc_to_y(x
, i
, delta
);
902 distance
= (right
->atoms
.len
- x
)
903 + (left
->atoms
.len
- y
);
904 if (distance
>= best_backward_distance
) {
905 best_backward_distance
= distance
;
911 /* The myers-divide didn't meet in the middle. We just
912 * figured out the places where the forward path
913 * advanced the most, and the backward path advanced the
914 * most. Just divide at whichever one of those two is better.
934 best_forward_x
= kd_forward
[best_forward_i
];
935 best_forward_y
= xk_to_y(best_forward_x
, best_forward_i
);
936 best_backward_x
= kd_backward
[best_backward_i
];
937 best_backward_y
= xc_to_y(best_backward_x
, best_backward_i
, delta
);
939 if (best_forward_distance
>= best_backward_distance
) {
947 debug("max_effort cut at x=%d y=%d\n", x
, y
);
949 || x
> left
->atoms
.len
|| y
> right
->atoms
.len
)
952 found_midpoint
= true;
953 mid_snake
= (struct diff_box
){
963 if (!found_midpoint
) {
964 /* Divide and conquer failed to find a meeting point. Use the
965 * fallback_algo defined in the algo_config (leave this to the
966 * caller). This is just paranoia/sanity, we normally should
967 * always find a midpoint.
969 debug(" no midpoint \n");
970 rc
= DIFF_RC_USE_DIFF_ALGO_FALLBACK
;
973 debug(" mid snake L: %u to %u of %u R: %u to %u of %u\n",
974 mid_snake
.left_start
, mid_snake
.left_end
, left
->atoms
.len
,
975 mid_snake
.right_start
, mid_snake
.right_end
,
978 /* Section before the mid-snake. */
979 debug("Section before the mid-snake\n");
981 struct diff_atom
*left_atom
= &left
->atoms
.head
[0];
982 unsigned int left_section_len
= mid_snake
.left_start
;
983 struct diff_atom
*right_atom
= &right
->atoms
.head
[0];
984 unsigned int right_section_len
= mid_snake
.right_start
;
986 if (left_section_len
&& right_section_len
) {
987 /* Record an unsolved chunk, the caller will apply
988 * inner_algo() on this chunk. */
989 if (!diff_state_add_chunk(state
, false,
990 left_atom
, left_section_len
,
994 } else if (left_section_len
&& !right_section_len
) {
995 /* Only left atoms and none on the right, they form a
996 * "minus" chunk, then. */
997 if (!diff_state_add_chunk(state
, true,
998 left_atom
, left_section_len
,
1001 } else if (!left_section_len
&& right_section_len
) {
1002 /* No left atoms, only atoms on the right, they form a
1003 * "plus" chunk, then. */
1004 if (!diff_state_add_chunk(state
, true,
1010 /* else: left_section_len == 0 and right_section_len == 0, i.e.
1011 * nothing before the mid-snake. */
1013 if (mid_snake
.left_end
> mid_snake
.left_start
1014 || mid_snake
.right_end
> mid_snake
.right_start
) {
1015 /* The midpoint is a section of identical data on both
1016 * sides, or a certain differing line: that section
1017 * immediately becomes a solved chunk. */
1018 debug("the mid-snake\n");
1019 if (!diff_state_add_chunk(state
, true,
1020 &left
->atoms
.head
[mid_snake
.left_start
],
1021 mid_snake
.left_end
- mid_snake
.left_start
,
1022 &right
->atoms
.head
[mid_snake
.right_start
],
1023 mid_snake
.right_end
- mid_snake
.right_start
))
1027 /* Section after the mid-snake. */
1028 debug("Section after the mid-snake\n");
1029 debug(" left_end %u right_end %u\n",
1030 mid_snake
.left_end
, mid_snake
.right_end
);
1031 debug(" left_count %u right_count %u\n",
1032 left
->atoms
.len
, right
->atoms
.len
);
1033 left_atom
= &left
->atoms
.head
[mid_snake
.left_end
];
1034 left_section_len
= left
->atoms
.len
- mid_snake
.left_end
;
1035 right_atom
= &right
->atoms
.head
[mid_snake
.right_end
];
1036 right_section_len
= right
->atoms
.len
- mid_snake
.right_end
;
1038 if (left_section_len
&& right_section_len
) {
1039 /* Record an unsolved chunk, the caller will apply
1040 * inner_algo() on this chunk. */
1041 if (!diff_state_add_chunk(state
, false,
1042 left_atom
, left_section_len
,
1046 } else if (left_section_len
&& !right_section_len
) {
1047 /* Only left atoms and none on the right, they form a
1048 * "minus" chunk, then. */
1049 if (!diff_state_add_chunk(state
, true,
1050 left_atom
, left_section_len
,
1053 } else if (!left_section_len
&& right_section_len
) {
1054 /* No left atoms, only atoms on the right, they form a
1055 * "plus" chunk, then. */
1056 if (!diff_state_add_chunk(state
, true,
1062 /* else: left_section_len == 0 and right_section_len == 0, i.e.
1063 * nothing after the mid-snake. */
1069 debug("** END %s\n", __func__
);
1073 /* Myers Diff tracing from the start all the way through to the end, requiring
1074 * quadratic amounts of memory. This can fail if the required space surpasses
1075 * algo_config->permitted_state_size. */
1077 diff_algo_myers(const struct diff_algo_config
*algo_config
,
1078 struct diff_state
*state
)
1080 /* do a diff_divide_myers_forward() without a _backward(), so that it
1081 * walks forward across the entire files to reach the end. Keep each
1082 * run's state, and do a final backtrace. */
1084 struct diff_data
*left
= &state
->left
;
1085 struct diff_data
*right
= &state
->right
;
1088 debug("\n** %s\n", __func__
);
1093 debug_dump_myers_graph(left
, right
, NULL
, NULL
, 0, NULL
, 0);
1095 /* Allocate two columns of a Myers graph, one for the forward and one
1096 * for the backward traversal. */
1097 unsigned int max
= left
->atoms
.len
+ right
->atoms
.len
;
1098 size_t kd_len
= max
+ 1 + max
;
1099 size_t kd_buf_size
= kd_len
* kd_len
;
1100 size_t kd_state_size
= kd_buf_size
* sizeof(int);
1101 debug("state size: %zu\n", kd_state_size
);
1102 if (kd_buf_size
< kd_len
/* overflow? */
1103 || (SIZE_MAX
/ kd_len
) < kd_len
1104 || kd_state_size
> algo_config
->permitted_state_size
) {
1105 debug("state size %zu > permitted_state_size %zu, use fallback_algo\n",
1106 kd_state_size
, algo_config
->permitted_state_size
);
1107 return DIFF_RC_USE_DIFF_ALGO_FALLBACK
;
1110 if (state
->kd_buf_size
< kd_buf_size
) {
1111 kd_buf
= reallocarray(state
->kd_buf
, kd_buf_size
,
1115 state
->kd_buf
= kd_buf
;
1116 state
->kd_buf_size
= kd_buf_size
;
1118 kd_buf
= state
->kd_buf
;
1121 for (i
= 0; i
< kd_buf_size
; i
++)
1124 /* The 'k' axis in Myers spans positive and negative indexes, so point
1125 * the kd to the middle.
1126 * It is then possible to index from -max .. max. */
1127 int *kd_origin
= kd_buf
+ max
;
1128 int *kd_column
= kd_origin
;
1131 int backtrack_d
= -1;
1132 int backtrack_k
= 0;
1135 for (d
= 0; d
<= max
; d
++, kd_column
+= kd_len
) {
1136 debug("-- %s d=%d\n", __func__
, d
);
1138 for (k
= d
; k
>= -d
; k
-= 2) {
1139 if (k
< -(int)right
->atoms
.len
1140 || k
> (int)left
->atoms
.len
) {
1141 /* This diagonal is completely outside of the
1142 * Myers graph, don't calculate it. */
1143 if (k
< -(int)right
->atoms
.len
)
1145 " -(int)right->atoms.len %d\n",
1146 k
, -(int)right
->atoms
.len
);
1148 debug(" %d k > left->atoms.len %d\n", k
,
1151 /* We are traversing negatively, and
1152 * already below the entire graph,
1153 * nothing will come of this. */
1157 debug(" continue\n");
1162 /* This is the initializing step. There is no
1163 * prev_k yet, get the initial x from the top
1164 * left of the Myers graph. */
1167 int *kd_prev_column
= kd_column
- kd_len
;
1169 /* Favoring "-" lines first means favoring
1170 * moving rightwards in the Myers graph.
1171 * For this, all k should derive from k - 1,
1172 * only the bottom most k derive from k + 1:
1175 * ----+----------------
1178 * | / prev_k = 2 - 1 = 1
1183 * -1 | 0,1 <-- bottom most for d=1
1184 * | \\ from prev_k = -1+1 = 0
1185 * -2 | 0,2 <-- bottom most for
1187 * prev_k = -2+1 = -1
1189 * Except when a k + 1 from a previous run
1190 * already means a further advancement in the
1192 * If k == d, there is no k + 1 and k - 1 is the
1194 * If k < d, use k + 1 in case that yields a
1195 * larger x. Also use k + 1 if k - 1 is outside
1200 || (k
- 1 >= -(int)right
->atoms
.len
1201 && kd_prev_column
[k
- 1]
1202 >= kd_prev_column
[k
+ 1]))) {
1203 /* Advance from k - 1.
1204 * From position prev_k, step to the
1205 * right in the Myers graph: x += 1.
1208 int prev_x
= kd_prev_column
[prev_k
];
1211 /* The bottom most one.
1212 * From position prev_k, step to the
1213 * bottom in the Myers graph: y += 1.
1214 * Incrementing y is achieved by
1215 * decrementing k while keeping the same
1216 * x. (since we're deriving y from y =
1220 int prev_x
= kd_prev_column
[prev_k
];
1225 /* Slide down any snake that we might find here. */
1226 while (x
< left
->atoms
.len
1227 && xk_to_y(x
, k
) < right
->atoms
.len
) {
1229 int r
= diff_atom_same(&same
,
1230 &left
->atoms
.head
[x
],
1241 if (x
== left
->atoms
.len
1242 && xk_to_y(x
, k
) == right
->atoms
.len
) {
1246 debug("Reached the end at d = %d, k = %d\n",
1247 backtrack_d
, backtrack_k
);
1252 if (backtrack_d
>= 0)
1256 debug_dump_myers_graph(left
, right
, kd_origin
, NULL
, 0, NULL
, 0);
1258 /* backtrack. A matrix spanning from start to end of the file is ready:
1261 * ----+---------------------------------
1269 * 0 | -->0,0 3,3 4,4 --> backtrack_d = 4, backtrack_k = 0
1276 * From (4,4) backwards, find the previous position that is the largest, and remember it.
1279 for (d
= backtrack_d
, k
= backtrack_k
; d
>= 0; d
--) {
1283 /* When the best position is identified, remember it for that
1285 * That kd_column is no longer needed otherwise, so just
1286 * re-purpose kd_column[0] = x and kd_column[1] = y,
1287 * so that there is no need to allocate more memory.
1291 debug("Backtrack d=%d: xy=(%d, %d)\n",
1292 d
, kd_column
[0], kd_column
[1]);
1294 /* Don't access memory before kd_buf */
1297 int *kd_prev_column
= kd_column
- kd_len
;
1299 /* When y == 0, backtracking downwards (k-1) is the only way.
1300 * When x == 0, backtracking upwards (k+1) is the only way.
1303 * ----+---------------------------------
1311 * 0 | -->0,0 3,3 4,4 --> backtrack_d = 4,
1312 * | \ / \ backtrack_k = 0
1320 && kd_prev_column
[k
- 1] >= kd_prev_column
[k
+ 1])) {
1322 debug("prev k=k-1=%d x=%d y=%d\n",
1323 k
, kd_prev_column
[k
],
1324 xk_to_y(kd_prev_column
[k
], k
));
1327 debug("prev k=k+1=%d x=%d y=%d\n",
1328 k
, kd_prev_column
[k
],
1329 xk_to_y(kd_prev_column
[k
], k
));
1331 kd_column
= kd_prev_column
;
1334 /* Forwards again, this time recording the diff chunks.
1335 * Definitely start from 0,0. kd_column[0] may actually point to the
1336 * bottom of a snake starting at 0,0 */
1340 kd_column
= kd_origin
;
1341 for (d
= 0; d
<= backtrack_d
; d
++, kd_column
+= kd_len
) {
1342 int next_x
= kd_column
[0];
1343 int next_y
= kd_column
[1];
1344 debug("Forward track from xy(%d,%d) to xy(%d,%d)\n",
1345 x
, y
, next_x
, next_y
);
1347 struct diff_atom
*left_atom
= &left
->atoms
.head
[x
];
1348 int left_section_len
= next_x
- x
;
1349 struct diff_atom
*right_atom
= &right
->atoms
.head
[y
];
1350 int right_section_len
= next_y
- y
;
1353 if (left_section_len
&& right_section_len
) {
1354 /* This must be a snake slide.
1355 * Snake slides have a straight line leading into them
1356 * (except when starting at (0,0)). Find out whether the
1357 * lead-in is horizontal or vertical:
1369 * If left_section_len > right_section_len, the lead-in
1370 * is horizontal, meaning first remove one atom from the
1371 * left before sliding down the snake.
1372 * If right_section_len > left_section_len, the lead-in
1373 * is vetical, so add one atom from the right before
1374 * sliding down the snake. */
1375 if (left_section_len
== right_section_len
+ 1) {
1376 if (!diff_state_add_chunk(state
, true,
1382 } else if (right_section_len
== left_section_len
+ 1) {
1383 if (!diff_state_add_chunk(state
, true,
1388 right_section_len
--;
1389 } else if (left_section_len
!= right_section_len
) {
1390 /* The numbers are making no sense. Should never
1392 rc
= DIFF_RC_USE_DIFF_ALGO_FALLBACK
;
1396 if (!diff_state_add_chunk(state
, true,
1397 left_atom
, left_section_len
,
1401 } else if (left_section_len
&& !right_section_len
) {
1402 /* Only left atoms and none on the right, they form a
1403 * "minus" chunk, then. */
1404 if (!diff_state_add_chunk(state
, true,
1405 left_atom
, left_section_len
,
1408 } else if (!left_section_len
&& right_section_len
) {
1409 /* No left atoms, only atoms on the right, they form a
1410 * "plus" chunk, then. */
1411 if (!diff_state_add_chunk(state
, true,
1425 debug("** END %s rc=%d\n", __func__
, rc
);