Class used internally by Diff to actually compute the diffs.

The algorithm used here is mostly lifted from the perl module Algorithm::Diff (version 1.06) by Ned Konz, which is available at: http://www.perl.com/CPAN/authors/id/N/NE/NEDKONZ/Algorithm-Diff-1.06.zip

More ideas are taken from: http://www.ics.uci.edu/~eppstein/161/960229.html

Some ideas (and a bit of code) are from analyze.c, from GNU diffutils-2.7, which can be found at: ftp://gnudist.gnu.org/pub/gnu/diffutils/diffutils-2.7.tar.gz

Finally, some ideas (subdivision by NCHUNKS > 2, and some optimizations) are my own.

Line length limits for robustness added by Tim Starling, 2005-08-31 Alternative implementation added by Guy Van den Broeck, 2008-07-30

@author Geoffrey T. Dairiki, Tim Starling, Guy Van den Broeck

Hierarchy

Expanded class hierarchy of DiffEngine

File

core/includes/diff.inc, line 146
A PHP diff engine for phpwiki. (Taken from phpwiki-1.3.3)

Members

Contains filters are case sensitive
Name Modifiers Typesort ascending Description
DiffEngine::$xchanged protected property
DiffEngine::$xv protected property
DiffEngine::$xind protected property
DiffEngine::$seq protected property
DiffEngine::$lcs protected property
DiffEngine::diff function
DiffEngine::diffLocal private function
DiffEngine::lineHash private function Returns the whole line if it's small enough, or the MD5 hash otherwise
DiffEngine::diag private function Divide the Largest Common Subsequence (LCS) of the sequences [XOFF, XLIM) and [YOFF, YLIM) into NCHUNKS approximately equally sized segments.
DiffEngine::lcsPos private function
DiffEngine::compareSeq private function Find LCS of two sequences.
DiffEngine::shiftBoundaries private function Adjust inserts/deletes of identical lines to join changes as much as possible.
DiffEngine::MAX_XREF_LENGTH constant