2 /***************************************************************
5 * (c) 1999-2008 Kasper Skaarhoj (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
31 * Revised for TYPO3 3.6 November/2003 by Kasper Skaarhoj
34 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
37 * [CLASS/FUNCTION INDEX of SCRIPT]
41 * 66: class t3lib_diff
42 * 86: function makeDiffDisplay($str1,$str2,$wrapTag='span')
43 * 163: function getDiff($str1,$str2)
44 * 189: function addClearBuffer($clearBuffer,$last=0)
45 * 205: function explodeStringIntoWords($str)
46 * 226: function tagSpace($str,$rev=0)
49 * (This index is automatically created/updated by the extension "extdeveval")
60 * This class has functions which generates a difference output of a content string
62 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
69 var $stripTags = 0; // If set, the HTML tags are stripped from the input strings first.
70 var $diffOptions = ''; // Diff options. eg "--unified=3"
73 var $clearBufferIdx=0; // This indicates the number of times the function addClearBuffer has been called - and used to detect the very first call...
79 * This will produce a color-marked-up diff output in HTML from the input strings.
81 * @param string String 1
82 * @param string String 2
83 * @param string Setting the wrapping tag name
84 * @return string Formatted output.
86 function makeDiffDisplay($str1,$str2,$wrapTag='span') {
87 if ($this->stripTags
) {
88 $str1 = strip_tags($str1);
89 $str2 = strip_tags($str2);
91 $str1 = $this->tagSpace($str1);
92 $str2 = $this->tagSpace($str2);
94 $str1Lines = $this->explodeStringIntoWords($str1);
95 $str2Lines = $this->explodeStringIntoWords($str2);
97 $diffRes = $this->getDiff(implode(chr(10),$str1Lines).chr(10),implode(chr(10),$str2Lines).chr(10));
99 if (is_array($diffRes)) {
102 $diffResArray=array();
104 while(list(,$lValue)=each($diffRes)) {
105 if (intval($lValue)) {
107 $diffResArray[$c]['changeInfo']=$lValue;
109 if (substr($lValue,0,1)=='<') {
110 $differenceStr.= $diffResArray[$c]['old'][] = substr($lValue,2);
112 if (substr($lValue,0,1)=='>') {
113 $differenceStr.= $diffResArray[$c]['new'][] = substr($lValue,2);
117 $this->differenceLgd
= strlen($differenceStr);
121 for ($a=-1;$a<count($str1Lines);$a++
) {
122 if (is_array($diffResArray[$a+
1])) {
123 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.
124 $clearBuffer.=htmlspecialchars($str1Lines[$a]).' ';
127 $outString.=$this->addClearBuffer($clearBuffer);
129 if (is_array($diffResArray[$a+
1]['old'])) {
130 $outString.='<'.$wrapTag.' class="diff-r">'.htmlspecialchars(implode(' ',$diffResArray[$a+
1]['old'])).'</'.$wrapTag.'> ';
132 if (is_array($diffResArray[$a+
1]['new'])) {
133 $outString.='<'.$wrapTag.' class="diff-g">'.htmlspecialchars(implode(' ',$diffResArray[$a+
1]['new'])).'</'.$wrapTag.'> ';
135 $chInfParts = explode(',',$diffResArray[$a+
1]['changeInfo']);
136 if (!strcmp($chInfParts[0],$a+
1)) {
137 $newLine = intval($chInfParts[1])-1;
138 if ($newLine>$a) $a=$newLine; // Security that $a is not set lower than current for some reason...
141 $clearBuffer.=htmlspecialchars($str1Lines[$a]).' ';
144 $outString.=$this->addClearBuffer($clearBuffer,1);
146 $outString = str_replace(' ',chr(10),$outString);
147 if (!$this->stripTags
) {
148 $outString = $this->tagSpace($outString,1);
155 * Produce a diff (using the "diff" application) between two strings
156 * The function will write the two input strings to temporary files, then execute the diff program, delete the temp files and return the result.
158 * @param string String 1
159 * @param string String 2
160 * @return array The result from the exec() function call.
163 function getDiff($str1,$str2) {
164 // Create file 1 and write string
165 $file1 = t3lib_div
::tempnam('diff1_');
166 t3lib_div
::writeFile($file1,$str1);
167 // Create file 2 and write string
168 $file2 = t3lib_div
::tempnam('diff2_');
169 t3lib_div
::writeFile($file2,$str2);
171 $cmd = $GLOBALS['TYPO3_CONF_VARS']['BE']['diff_path'].' '.$this->diffOptions
.' '.$file1.' '.$file2;
182 * 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
184 * @param string The input string.
185 * @param boolean If set, it indicates that the string should just end with ... (thus no "complete" ending)
186 * @return string Processed string.
189 function addClearBuffer($clearBuffer,$last=0) {
190 if (strlen($clearBuffer)>200) {
191 $clearBuffer=($this->clearBufferIdx?t3lib_div
::fixed_lgd_cs($clearBuffer,70):'').'['.strlen($clearBuffer).']'.(!$last?t3lib_div
::fixed_lgd_cs($clearBuffer,-70):'');
193 $this->clearBufferIdx++
;
198 * Explodes the input string into words.
199 * 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.
201 * @param string The string input
202 * @return array Array with words.
205 function explodeStringIntoWords($str) {
206 $strArr = t3lib_div
::trimExplode(chr(10),$str);
209 while(list(,$lineOfWords)=each($strArr)) {
210 $allWords = t3lib_div
::trimExplode(' ',$lineOfWords,1);
211 $outArray = array_merge($outArray,$allWords);
219 * Adds a space character before and after HTML tags (more precisely any found < or >)
221 * @param string String to process
222 * @param boolean If set, the < > searched for will be < and >
223 * @return string Processed string
226 function tagSpace($str,$rev=0) {
228 return str_replace(' <','<',str_replace('> ','>',$str));
230 return str_replace('<',' <',str_replace('>','> ',$str));
235 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['t3lib/class.t3lib_diff.php']) {
236 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['t3lib/class.t3lib_diff.php']);