MediaWiki REL1_32
|
Class representing a 'diff' between two sequences of strings. More...
Public Member Functions | |
__construct ( $from_lines, $to_lines) | |
Computes diff between sequences of strings. | |
closing () | |
Get the closing set of lines. | |
getEdits () | |
isEmpty () | |
Check for empty diff. | |
lcs () | |
Compute the length of the Longest Common Subsequence (LCS). | |
orig () | |
Get the original set of lines. | |
reverse () | |
Compute reversed Diff. | |
Public Attributes | |
DiffOp[] | $edits |
Protected Attributes | |
int | $bailoutComplexity = 0 |
If this diff complexity is exceeded, a ComplexityException is thrown 0 means no limit. | |
Class representing a 'diff' between two sequences of strings.
Definition at line 200 of file DairikiDiff.php.
Diff::__construct | ( | $from_lines, | |
$to_lines | |||
) |
Computes diff between sequences of strings.
string[] | $from_lines | An array of strings. Typically these are lines from a file. |
string[] | $to_lines | An array of strings. |
\MediaWiki\Diff\ComplexityException
Reimplemented in WordLevelDiff.
Definition at line 221 of file DairikiDiff.php.
References edits, and DiffEngine\setBailoutComplexity().
Diff::closing | ( | ) |
Get the closing set of lines.
This reconstructs the $to_lines parameter passed to the constructor.
Reimplemented in WordLevelDiff.
Definition at line 317 of file DairikiDiff.php.
Diff::getEdits | ( | ) |
Diff::isEmpty | ( | ) |
Check for empty diff.
Definition at line 261 of file DairikiDiff.php.
Diff::lcs | ( | ) |
Compute the length of the Longest Common Subsequence (LCS).
This is mostly for diagnostic purposed.
Definition at line 278 of file DairikiDiff.php.
Diff::orig | ( | ) |
Get the original set of lines.
This reconstructs the $from_lines parameter passed to the constructor.
Reimplemented in WordLevelDiff.
Definition at line 297 of file DairikiDiff.php.
Diff::reverse | ( | ) |
|
protected |
If this diff complexity is exceeded, a ComplexityException is thrown 0 means no limit.
Definition at line 211 of file DairikiDiff.php.
DiffOp [] Diff::$edits |
Definition at line 205 of file DairikiDiff.php.
Referenced by getEdits().