Skip to content

Commit 445c563

Browse files
committed
Merge pull request #5 from Actinarium/mb_support
Fixed multi-byte support for HTML output
2 parents 4c7bd74 + e2ed4e8 commit 445c563

File tree

2 files changed

+38
-28
lines changed

2 files changed

+38
-28
lines changed

lib/Diff/Renderer/Html/Array.php

+30-24
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,31 @@
55
* PHP version 5
66
*
77
* Copyright (c) 2009 Chris Boulton <[email protected]>
8-
*
8+
*
99
* All rights reserved.
10-
*
11-
* Redistribution and use in source and binary forms, with or without
10+
*
11+
* Redistribution and use in source and binary forms, with or without
1212
* modification, are permitted provided that the following conditions are met:
1313
*
1414
* - Redistributions of source code must retain the above copyright notice,
1515
* this list of conditions and the following disclaimer.
1616
* - Redistributions in binary form must reproduce the above copyright notice,
1717
* this list of conditions and the following disclaimer in the documentation
1818
* and/or other materials provided with the distribution.
19-
* - Neither the name of the Chris Boulton nor the names of its contributors
20-
* may be used to endorse or promote products derived from this software
19+
* - Neither the name of the Chris Boulton nor the names of its contributors
20+
* may be used to endorse or promote products derived from this software
2121
* without specific prior written permission.
2222
*
23-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
24-
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25-
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26-
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
27-
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28-
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29-
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30-
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31-
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32-
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
23+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
24+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26+
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
27+
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28+
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30+
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31+
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3333
* POSSIBILITY OF SUCH DAMAGE.
3434
*
3535
* @package DiffLib
@@ -82,12 +82,18 @@ public function render()
8282

8383
list($start, $end) = $this->getChangeExtent($fromLine, $toLine);
8484
if($start != 0 || $end != 0) {
85-
$last = $end + strlen($fromLine);
86-
$fromLine = substr_replace($fromLine, "\0", $start, 0);
87-
$fromLine = substr_replace($fromLine, "\1", $last + 1, 0);
88-
$last = $end + strlen($toLine);
89-
$toLine = substr_replace($toLine, "\0", $start, 0);
90-
$toLine = substr_replace($toLine, "\1", $last + 1, 0);
85+
$realEnd = mb_strlen($fromLine) + $end;
86+
$fromLine = mb_substr($fromLine, 0, $start)
87+
. "\0"
88+
. mb_substr($fromLine, $start, $realEnd - $start)
89+
. "\1"
90+
. mb_substr($fromLine, $realEnd);
91+
$realEnd = mb_strlen($toLine) + $end;
92+
$toLine = mb_substr($toLine, 0, $start)
93+
. "\0"
94+
. mb_substr($toLine, $start, $realEnd - $start)
95+
. "\1"
96+
. mb_substr($toLine, $realEnd);
9197
$a[$i1 + $i] = $fromLine;
9298
$b[$j1 + $i] = $toLine;
9399
}
@@ -149,13 +155,13 @@ public function render()
149155
private function getChangeExtent($fromLine, $toLine)
150156
{
151157
$start = 0;
152-
$limit = min(strlen($fromLine), strlen($toLine));
153-
while($start < $limit && $fromLine{$start} == $toLine{$start}) {
158+
$limit = min(mb_strlen($fromLine), mb_strlen($toLine));
159+
while($start < $limit && mb_substr($fromLine, $start, 1) == mb_substr($toLine, $start, 1)) {
154160
++$start;
155161
}
156162
$end = -1;
157163
$limit = $limit - $start;
158-
while(-$end <= $limit && substr($fromLine, $end, 1) == substr($toLine, $end, 1)) {
164+
while(-$end <= $limit && mb_substr($fromLine, $end, 1) == mb_substr($toLine, $end, 1)) {
159165
--$end;
160166
}
161167
return array(

lib/Diff/SequenceMatcher.php

+8-4
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ class Diff_SequenceMatcher
6969

7070
private $options = array();
7171

72+
private $matchingBlocks = null;
73+
private $opCodes = null;
74+
private $fullBCount = null;
75+
7276
private $defaultOptions = array(
7377
'ignoreNewLines' => false,
7478
'ignoreWhitespace' => false,
@@ -217,7 +221,7 @@ private function chainB()
217221
*/
218222
private function isBJunk($b)
219223
{
220-
if(isset($this->juncDict[$b])) {
224+
if(isset($this->junkDict[$b])) {
221225
return true;
222226
}
223227

@@ -258,7 +262,7 @@ public function findLongestMatch($alo, $ahi, $blo, $bhi)
258262
for($i = $alo; $i < $ahi; ++$i) {
259263
$newJ2Len = array();
260264
$jDict = $this->arrayGetDefault($this->b2j, $a[$i], $nothing);
261-
foreach($jDict as $jKey => $j) {
265+
foreach($jDict as $j) {
262266
if($j < $blo) {
263267
continue;
264268
}
@@ -291,7 +295,7 @@ public function findLongestMatch($alo, $ahi, $blo, $bhi)
291295
}
292296

293297
while($bestI > $alo && $bestJ > $blo && $this->isBJunk($b[$bestJ - 1]) &&
294-
!$this->isLineDifferent($bestI - 1, $bestJ - 1)) {
298+
!$this->linesAreDifferent($bestI - 1, $bestJ - 1)) {
295299
--$bestI;
296300
--$bestJ;
297301
++$bestSize;
@@ -745,4 +749,4 @@ private function tupleSort($a, $b)
745749
return 1;
746750
}
747751
}
748-
}
752+
}

0 commit comments

Comments
 (0)