84 public function diff( $from_lines, $to_lines ) {
93 $n_from =
count( $from_lines );
94 $n_to =
count( $to_lines );
98 while ( $xi < $n_from || $yi < $n_to ) {
99 assert( $yi < $n_to || $this->removed[$xi] );
100 assert( $xi < $n_from || $this->added[$yi] );
104 while ( $xi < $n_from && $yi < $n_to
105 && !$this->removed[$xi] && !$this->added[$yi]
107 $copy[] = $from_lines[$xi++];
116 while ( $xi < $n_from && $this->removed[$xi] ) {
117 $delete[] = $from_lines[$xi++];
121 while ( $yi < $n_to && $this->added[$yi] ) {
122 $add[] = $to_lines[$yi++];
125 if ( $delete && $add ) {
127 } elseif ( $delete ) {
142 $this->bailoutComplexity =
$value;
168 $other_len =
count( $other_changed );
182 while ( $j < $other_len && $other_changed[$j] ) {
186 while ( $i < $len && !$changed[$i] ) {
187 assert( $j < $other_len && !$other_changed[$j] );
190 while ( $j < $other_len && $other_changed[$j] ) {
202 while ( ++$i < $len && $changed[$i] ) {
211 $runlength = $i - $start;
218 while ( $start > 0 &&
$lines[$start - 1] ==
$lines[$i - 1] ) {
219 $changed[--$start] = 1;
220 $changed[--$i] =
false;
221 while ( $start > 0 && $changed[$start - 1] ) {
225 while ( $other_changed[--$j] ) {
228 assert( $j >= 0 && !$other_changed[$j] );
236 $corresponding = $j < $other_len ? $i : $len;
246 $changed[$start++] =
false;
248 while ( $i < $len && $changed[$i] ) {
252 assert( $j < $other_len && !$other_changed[$j] );
254 if ( $j < $other_len && $other_changed[$j] ) {
256 while ( $j < $other_len && $other_changed[$j] ) {
261 }
while ( $runlength != $i - $start );
267 while ( $corresponding < $i ) {
268 $changed[--$start] = 1;
271 while ( $other_changed[--$j] ) {
274 assert( $j >= 0 && !$other_changed[$j] );
289 $this->heuristicUsed =
false;
293 $added =
$n > 0 ? array_fill( 0,
$n,
true ) : [];
306 while ( $i + $j <=
$m && $i + $j <=
$n &&
$from[
$m - $j] ===
$to[
$n - $j] ) {
312 $this->
from = $newFromIndex = $this->to = $newToIndex = [];
317 $shared[$key] =
false;
320 foreach (
$to as $index => &$el ) {
321 if ( array_key_exists( $el, $shared ) ) {
325 $newToIndex[] = $index;
328 foreach (
$from as $index => &$el ) {
329 if ( $shared[$el] ) {
332 $newFromIndex[] = $index;
339 $this->
n =
count( $this->to );
341 if ( $this->bailoutComplexity > 0 && $this->m * $this->
n > $this->bailoutComplexity ) {
345 $this->removed = $this->m > 0 ? array_fill( 0, $this->m,
true ) : [];
346 $this->added = $this->
n > 0 ? array_fill( 0, $this->
n,
true ) : [];
348 if ( $this->m == 0 || $this->
n == 0 ) {
351 $this->maxDifferences = ceil( ( $this->m + $this->
n ) / 2.0 );
352 if ( $this->m * $this->
n > $this->tooLong ) {
354 $this->maxDifferences = floor( $this->maxDifferences ** ( $this->powLimit - 1.0 ) );
355 wfDebug(
"Limiting max number of differences to $this->maxDifferences\n" );
362 $max = min( $this->m, $this->
n );
363 for ( $forwardBound = 0; $forwardBound < $max
364 && $this->
from[$forwardBound] === $this->to[$forwardBound];
367 $this->removed[$forwardBound] = $this->added[$forwardBound] =
false;
370 $backBoundL1 = $this->m - 1;
371 $backBoundL2 = $this->
n - 1;
373 while ( $backBoundL1 >= $forwardBound && $backBoundL2 >= $forwardBound
374 && $this->from[$backBoundL1] === $this->to[$backBoundL2]
376 $this->removed[$backBoundL1--] = $this->added[$backBoundL2--] =
false;
379 $temp = array_fill( 0, $this->m + $this->
n + 1, 0 );
380 $V = [ $temp, $temp ];
381 $snake = [ 0, 0, 0 ];
383 $this->length = $forwardBound + $this->m - $backBoundL1 - 1
397 $this->length += $i + $j - 1;
399 foreach ( $this->removed
as $key => &$removed_elem ) {
400 if ( !$removed_elem ) {
401 $removed[$newFromIndex[$key]] =
false;
404 foreach ( $this->added
as $key => &$added_elem ) {
405 if ( !$added_elem ) {
406 $added[$newToIndex[$key]] =
false;
415 $this->
diff( $from_lines, $to_lines );
416 unset( $from_lines, $to_lines );
420 while ( $xi < $this->m || $yi < $this->
n ) {
422 while ( $xi < $this->m && $yi < $this->
n
423 && !$this->removed[$xi]
424 && !$this->added[$yi]
431 while ( $xi < $this->m && $this->removed[$xi] ) {
436 while ( $yi < $this->
n && $this->added[$yi] ) {
440 if ( $xi > $xstart || $yi > $ystart ) {
448 private function lcs_rec( $bottoml1, $topl1, $bottoml2, $topl2, &$V, &$snake ) {
450 if ( $bottoml1 > $topl1 || $bottoml2 > $topl2 ) {
455 $topl2, $V, $snake );
459 list( $startx, $starty, $len ) = $snake;
462 for ( $i = 0; $i < $len; ++$i ) {
463 $this->removed[$startx + $i] = $this->added[$starty + $i] =
false;
468 + $this->
lcs_rec( $bottoml1, $startx - 1, $bottoml2,
469 $starty - 1, $V, $snake )
470 + $this->
lcs_rec( $startx + $len, $topl1, $starty + $len,
471 $topl2, $V, $snake );
472 } elseif ( $d == 1 ) {
478 $max = min( $startx - $bottoml1, $starty - $bottoml2 );
479 for ( $i = 0; $i < $max; ++$i ) {
480 $this->removed[$bottoml1 + $i] =
481 $this->added[$bottoml2 + $i] =
false;
495 $snake0 = &$snake[0];
496 $snake1 = &$snake[1];
497 $snake2 = &$snake[2];
498 $bottoml1_min_1 = $bottoml1 - 1;
499 $bottoml2_min_1 = $bottoml2 - 1;
500 $N = $topl1 - $bottoml1_min_1;
501 $M = $topl2 - $bottoml2_min_1;
503 $maxabsx = $N + $bottoml1;
504 $maxabsy = $M + $bottoml2;
505 $limit = min( $this->maxDifferences, ceil( ( $N + $M ) / 2 ) );
509 if ( ( $M & 1 ) == 1 ) {
510 $value_to_add_forward = 1;
512 $value_to_add_forward = 0;
515 if ( ( $N & 1 ) == 1 ) {
516 $value_to_add_backward = 1;
518 $value_to_add_backward = 0;
521 $start_forward = -$M;
523 $start_backward = -$N;
526 $limit_min_1 = $limit - 1;
527 $limit_plus_1 = $limit + 1;
529 $V0[$limit_plus_1] = 0;
530 $V1[$limit_min_1] = $N;
531 $limit = min( $this->maxDifferences, ceil( ( $N + $M ) / 2 ) );
533 if ( ( $delta & 1 ) == 1 ) {
534 for ( $d = 0; $d <= $limit; ++$d ) {
535 $start_diag = max( $value_to_add_forward + $start_forward, -$d );
536 $end_diag = min( $end_forward, $d );
537 $value_to_add_forward = 1 - $value_to_add_forward;
540 for ( $k = $start_diag; $k <= $end_diag; $k += 2 ) {
541 if ( $k == -$d || ( $k < $d
542 && $V0[$limit_min_1 + $k] < $V0[$limit_plus_1 + $k] )
544 $x = $V0[$limit_plus_1 + $k];
546 $x = $V0[$limit_min_1 + $k] + 1;
549 $absx = $snake0 = $x + $bottoml1;
550 $absy = $snake1 = $x - $k + $bottoml2;
552 while ( $absx < $maxabsx && $absy < $maxabsy &&
$from[$absx] ===
$to[$absy] ) {
556 $x = $absx - $bottoml1;
558 $snake2 = $absx - $snake0;
559 $V0[$limit + $k] = $x;
560 if ( $k >= $delta - $d + 1 && $k <= $delta + $d - 1
561 && $x >= $V1[$limit + $k - $delta]
567 if ( $x >= $N && $end_forward > $k - 1 ) {
568 $end_forward = $k - 1;
569 } elseif ( $absy - $bottoml2 >= $M ) {
570 $start_forward = $k + 1;
571 $value_to_add_forward = 0;
575 $start_diag = max( $value_to_add_backward + $start_backward, -$d );
576 $end_diag = min( $end_backward, $d );
577 $value_to_add_backward = 1 - $value_to_add_backward;
580 for ( $k = $start_diag; $k <= $end_diag; $k += 2 ) {
582 || ( $k != -$d && $V1[$limit_min_1 + $k] < $V1[$limit_plus_1 + $k] )
584 $x = $V1[$limit_min_1 + $k];
586 $x = $V1[$limit_plus_1 + $k] - 1;
589 $y = $x - $k - $delta;
592 while ( $x > 0 && $y > 0
593 &&
$from[$x + $bottoml1_min_1] ===
$to[$y + $bottoml2_min_1]
599 $V1[$limit + $k] = $x;
603 $start_backward = $k + 1;
604 $value_to_add_backward = 0;
605 } elseif ( $y <= 0 && $end_backward > $k - 1 ) {
606 $end_backward = $k - 1;
611 for ( $d = 0; $d <= $limit; ++$d ) {
612 $start_diag = max( $value_to_add_forward + $start_forward, -$d );
613 $end_diag = min( $end_forward, $d );
614 $value_to_add_forward = 1 - $value_to_add_forward;
617 for ( $k = $start_diag; $k <= $end_diag; $k += 2 ) {
619 || ( $k < $d && $V0[$limit_min_1 + $k] < $V0[$limit_plus_1 + $k] )
621 $x = $V0[$limit_plus_1 + $k];
623 $x = $V0[$limit_min_1 + $k] + 1;
626 $absx = $snake0 = $x + $bottoml1;
627 $absy = $snake1 = $x - $k + $bottoml2;
629 while ( $absx < $maxabsx && $absy < $maxabsy &&
$from[$absx] ===
$to[$absy] ) {
633 $x = $absx - $bottoml1;
634 $snake2 = $absx - $snake0;
635 $V0[$limit + $k] = $x;
638 if ( $x >= $N && $end_forward > $k - 1 ) {
639 $end_forward = $k - 1;
640 } elseif ( $absy - $bottoml2 >= $M ) {
641 $start_forward = $k + 1;
642 $value_to_add_forward = 0;
646 $start_diag = max( $value_to_add_backward + $start_backward, -$d );
647 $end_diag = min( $end_backward, $d );
648 $value_to_add_backward = 1 - $value_to_add_backward;
651 for ( $k = $start_diag; $k <= $end_diag; $k += 2 ) {
653 || ( $k != -$d && $V1[$limit_min_1 + $k] < $V1[$limit_plus_1 + $k] )
655 $x = $V1[$limit_min_1 + $k];
657 $x = $V1[$limit_plus_1 + $k] - 1;
660 $y = $x - $k - $delta;
663 while ( $x > 0 && $y > 0
664 &&
$from[$x + $bottoml1_min_1] ===
$to[$y + $bottoml2_min_1]
670 $V1[$limit + $k] = $x;
672 if ( $k >= -$delta - $d && $k <= $d - $delta
673 && $x <= $V0[$limit + $k + $delta]
675 $snake0 = $bottoml1 + $x;
676 $snake1 = $bottoml2 + $y;
683 $start_backward = $k + 1;
684 $value_to_add_backward = 0;
685 } elseif ( $y <= 0 && $end_backward > $k - 1 ) {
686 $end_backward = $k - 1;
699 $snake0 = $bottoml1 + $most_progress[0];
700 $snake1 = $bottoml2 + $most_progress[1];
702 wfDebug(
"Computing the LCS is too expensive. Using a heuristic.\n" );
703 $this->heuristicUsed =
true;
717 if ( ( $M & 1 ) == ( $limit & 1 ) ) {
718 $forward_start_diag = max( -$M, -$limit );
720 $forward_start_diag = max( 1 - $M, -$limit );
723 $forward_end_diag = min( $N, $limit );
725 if ( ( $N & 1 ) == ( $limit & 1 ) ) {
726 $backward_start_diag = max( -$N, -$limit );
728 $backward_start_diag = max( 1 - $N, -$limit );
731 $backward_end_diag = -min( $M, $limit );
735 $max_progress = array_fill( 0, ceil( max( $forward_end_diag - $forward_start_diag,
736 $backward_end_diag - $backward_start_diag ) / 2 ), $temp );
741 for ( $k = $forward_start_diag; $k <= $forward_end_diag; $k += 2 ) {
742 $x = $V[0][$limit + $k];
744 if ( $x > $N || $y > $M ) {
749 if ( $progress > $max_progress[0][2] ) {
751 $max_progress[0][0] = $x;
752 $max_progress[0][1] = $y;
753 $max_progress[0][2] = $progress;
754 } elseif ( $progress == $max_progress[0][2] ) {
756 $max_progress[$num_progress][0] = $x;
757 $max_progress[$num_progress][1] = $y;
758 $max_progress[$num_progress][2] = $progress;
762 $max_progress_forward =
true;
767 for ( $k = $backward_start_diag; $k <= $backward_end_diag; $k += 2 ) {
768 $x = $V[1][$limit + $k];
769 $y = $x - $k - $delta;
770 if ( $x < 0 || $y < 0 ) {
774 $progress = $N - $x + $M - $y;
775 if ( $progress > $max_progress[0][2] ) {
777 $max_progress_forward =
false;
778 $max_progress[0][0] = $x;
779 $max_progress[0][1] = $y;
780 $max_progress[0][2] = $progress;
781 } elseif ( $progress == $max_progress[0][2] && !$max_progress_forward ) {
783 $max_progress[$num_progress][0] = $x;
784 $max_progress[$num_progress][1] = $y;
785 $max_progress[$num_progress][2] = $progress;
790 return $max_progress[(int)floor( $num_progress / 2 )];
797 if ( $this->heuristicUsed && !$this->lcsLengthCorrectedForHeuristic ) {
798 $this->lcsLengthCorrectedForHeuristic =
true;
799 $this->length = $this->m - array_sum( $this->added );