2 /***************************************************************
5 * (c) 1999-2011 Kasper Skårhøj (kasperYYYY@typo3.com)
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
16 * A copy is found in the textfile GPL.txt and important notices to the license
17 * from the author is found in LICENSE.txt distributed with these scripts.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
28 * Contains class which has functions that generates a difference output of a content string
30 * Revised for TYPO3 3.6 November/2003 by Kasper Skårhøj
33 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
38 * This class has functions which generates a difference output of a content string
40 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
47 var $stripTags = 0; // If set, the HTML tags are stripped from the input strings first.
48 var $diffOptions = ''; // Diff options. eg "--unified=3"
51 var $clearBufferIdx = 0; // This indicates the number of times the function addClearBuffer has been called - and used to detect the very first call...
52 var $differenceLgd = 0;
56 * This will produce a color-marked-up diff output in HTML from the input strings.
58 * @param string String 1
59 * @param string String 2
60 * @param string Setting the wrapping tag name
61 * @return string Formatted output.
63 function makeDiffDisplay($str1, $str2, $wrapTag = 'span') {
64 if ($this->stripTags
) {
65 $str1 = strip_tags($str1);
66 $str2 = strip_tags($str2);
68 $str1 = $this->tagSpace($str1);
69 $str2 = $this->tagSpace($str2);
71 $str1Lines = $this->explodeStringIntoWords($str1);
72 $str2Lines = $this->explodeStringIntoWords($str2);
74 $diffRes = $this->getDiff(implode(LF
, $str1Lines) . LF
, implode(LF
, $str2Lines) . LF
);
76 if (is_array($diffRes)) {
78 $diffResArray = array();
80 foreach ($diffRes as $lValue) {
81 if (intval($lValue)) {
83 $diffResArray[$c]['changeInfo'] = $lValue;
85 if (substr($lValue, 0, 1) == '<') {
86 $differenceStr .= $diffResArray[$c]['old'][] = substr($lValue, 2);
88 if (substr($lValue, 0, 1) == '>') {
89 $differenceStr .= $diffResArray[$c]['new'][] = substr($lValue, 2);
93 $this->differenceLgd
= strlen($differenceStr);
97 for ($a = -1; $a < count($str1Lines); $a++
) {
98 if (is_array($diffResArray[$a +
1])) {
99 if (strstr($diffResArray[$a +
1]['changeInfo'], 'a')) { // a=Add, c=change, d=delete: If a, then the content is Added after the entry and we must insert the line content as well.
100 $clearBuffer .= htmlspecialchars($str1Lines[$a]) . ' ';
103 $outString .= $this->addClearBuffer($clearBuffer);
105 if (is_array($diffResArray[$a +
1]['old'])) {
106 $outString .= '<' . $wrapTag . ' class="diff-r">' . htmlspecialchars(implode(' ', $diffResArray[$a +
1]['old'])) . '</' . $wrapTag . '> ';
108 if (is_array($diffResArray[$a +
1]['new'])) {
109 $outString .= '<' . $wrapTag . ' class="diff-g">' . htmlspecialchars(implode(' ', $diffResArray[$a +
1]['new'])) . '</' . $wrapTag . '> ';
111 $chInfParts = explode(',', $diffResArray[$a +
1]['changeInfo']);
112 if (!strcmp($chInfParts[0], $a +
1)) {
113 $newLine = intval($chInfParts[1]) - 1;
116 } // Security that $a is not set lower than current for some reason...
119 $clearBuffer .= htmlspecialchars($str1Lines[$a]) . ' ';
122 $outString .= $this->addClearBuffer($clearBuffer, 1);
124 $outString = str_replace(' ', LF
, $outString);
125 if (!$this->stripTags
) {
126 $outString = $this->tagSpace($outString, 1);
133 * Produce a diff (using the "diff" application) between two strings
134 * The function will write the two input strings to temporary files, then execute the diff program, delete the temp files and return the result.
136 * @param string String 1
137 * @param string String 2
138 * @return array The result from the exec() function call.
141 function getDiff($str1, $str2) {
142 // Create file 1 and write string
143 $file1 = t3lib_div
::tempnam('diff1_');
144 t3lib_div
::writeFile($file1, $str1);
145 // Create file 2 and write string
146 $file2 = t3lib_div
::tempnam('diff2_');
147 t3lib_div
::writeFile($file2, $str2);
149 $cmd = $GLOBALS['TYPO3_CONF_VARS']['BE']['diff_path'] . ' ' . $this->diffOptions
. ' ' . $file1 . ' ' . $file2;
151 t3lib_utility_Command
::exec($cmd, $res);
160 * Will bring down the length of strings to < 150 chars if they were longer than 200 chars. This done by preserving the 70 first and last chars and concatenate those strings with "..." and a number indicating the string length
162 * @param string The input string.
163 * @param boolean If set, it indicates that the string should just end with ... (thus no "complete" ending)
164 * @return string Processed string.
167 function addClearBuffer($clearBuffer, $last = 0) {
168 if (strlen($clearBuffer) > 200) {
169 $clearBuffer = ($this->clearBufferIdx ? t3lib_div
::fixed_lgd_cs($clearBuffer, 70) : '') . '[' . strlen($clearBuffer) . ']' . (!$last ? t3lib_div
::fixed_lgd_cs($clearBuffer, -70) : '');
171 $this->clearBufferIdx++
;
176 * Explodes the input string into words.
177 * This is done by splitting first by lines, then by space char. Each word will be in stored as a value in an array. Lines will be indicated by two subsequent empty values.
179 * @param string The string input
180 * @return array Array with words.
183 function explodeStringIntoWords($str) {
184 $strArr = t3lib_div
::trimExplode(LF
, $str);
186 foreach ($strArr as $lineOfWords) {
187 $allWords = t3lib_div
::trimExplode(' ', $lineOfWords, 1);
188 $outArray = array_merge($outArray, $allWords);
196 * Adds a space character before and after HTML tags (more precisely any found < or >)
198 * @param string String to process
199 * @param boolean If set, the < > searched for will be < and >
200 * @return string Processed string
203 function tagSpace($str, $rev = 0) {
205 return str_replace(' <', '<', str_replace('> ', '>', $str));
207 return str_replace('<', ' <', str_replace('>', '> ', $str));
212 if (defined('TYPO3_MODE') && isset($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE
]['XCLASS']['t3lib/class.t3lib_diff.php'])) {
213 include_once($GLOBALS['TYPO3_CONF_VARS'][TYPO3_MODE
]['XCLASS']['t3lib/class.t3lib_diff.php']);