26use Wikimedia\Assert\Assert;
53 private $statsdDataFactory;
62 private $externalEngine;
67 return $this->engine === self::ENGINE_WIKIDIFF2_INLINE ? [
68 phpversion(
'wikidiff2' ),
'inline'
78 public static function diff( $oldText, $newText ) {
80 $slotDiffRenderer = MediaWikiServices::getInstance()
81 ->getContentHandlerFactory()
83 ->getSlotDiffRenderer( RequestContext::getMain() );
84 '@phan-var TextSlotDiffRenderer $slotDiffRenderer';
85 return $slotDiffRenderer->getTextDiff( $oldText, $newText );
92 $this->statsdDataFactory = $statsdDataFactory;
99 $this->language = $language;
110 Assert::parameter( in_array(
$type, $engines,
true ),
'$type',
111 'must be one of the TextSlotDiffRenderer::ENGINE_* constants' );
112 if (
$type === self::ENGINE_EXTERNAL ) {
113 Assert::parameter( is_string( $executable ) && is_executable( $executable ),
'$executable',
114 'must be a path to a valid executable' );
116 Assert::parameter( $executable ===
null,
'$executable',
117 'must not be set unless $type is ENGINE_EXTERNAL' );
119 $this->engine =
$type;
120 $this->externalEngine = $executable;
127 $oldText = $oldContent->serialize();
128 $newText = $newContent->serialize();
140 $diff =
function () use ( $oldText, $newText ) {
141 $time = microtime(
true );
145 $time = intval( ( microtime(
true ) - $time ) * 1000 );
146 if ( $this->statsdDataFactory ) {
147 $this->statsdDataFactory->timing(
'diff_time', $time );
167 $error =
static function ( $status ) {
168 throw new FatalError( $status->getWikiText() );
172 if ( strlen( $oldText ) + strlen( $newText ) > 20000 ) {
174 md5( $oldText ) . md5( $newText ),
175 [
'doWork' => $diff,
'error' => $error ]
177 return $work->execute();
196 $oldText = str_replace(
"\r\n",
"\n", $oldText );
197 $newText = str_replace(
"\r\n",
"\n", $newText );
201 if ( $this->engine === self::ENGINE_WIKIDIFF2 ) {
202 $wikidiff2Version = phpversion(
'wikidiff2' );
204 $wikidiff2Version !==
false &&
205 version_compare( $wikidiff2Version,
'1.5.0',
'>=' ) &&
206 version_compare( $wikidiff2Version,
'1.8.0',
'<' )
208 $text = wikidiff2_do_diff(
216 $text = wikidiff2_do_diff(
224 } elseif ( $this->engine === self::ENGINE_EXTERNAL ) {
227 $tempName1 = tempnam( $tmpDir,
'diff_' );
228 $tempName2 = tempnam( $tmpDir,
'diff_' );
230 $tempFile1 = fopen( $tempName1,
"w" );
232 throw new Exception(
"Could not create temporary file $tempName1 for external diffing" );
234 $tempFile2 = fopen( $tempName2,
"w" );
236 throw new Exception(
"Could not create temporary file $tempName2 for external diffing" );
238 fwrite( $tempFile1, $oldText );
239 fwrite( $tempFile2, $newText );
240 fclose( $tempFile1 );
241 fclose( $tempFile2 );
242 $cmd = [ $this->externalEngine, $tempName1, $tempName2 ];
243 $result = Shell::command( $cmd )
245 $exitCode = $result->getExitCode();
246 if ( $exitCode !== 0 ) {
247 throw new Exception(
"External diff command returned code {$exitCode}. Stderr: "
251 $difftext = $result->getStdout();
252 unlink( $tempName1 );
253 unlink( $tempName2 );
256 } elseif ( $this->engine === self::ENGINE_PHP ) {
257 if ( $this->language ) {
258 $oldText = $this->language->segmentForDiff( $oldText );
259 $newText = $this->language->segmentForDiff( $newText );
261 $ota = explode(
"\n", $oldText );
262 $nta = explode(
"\n", $newText );
263 $diffs =
new Diff( $ota, $nta );
265 $difftext = $formatter->format( $diffs );
266 if ( $this->language ) {
267 $difftext = $this->language->unsegmentForDiff( $difftext );
271 } elseif ( $this->engine === self::ENGINE_WIKIDIFF2_INLINE ) {
276 return '<tr><td colspan="4">' . wikidiff2_inline_diff( $oldText, $newText, 2 ) .
'</td></tr>';
278 throw new LogicException(
'Invalid engine: ' . $this->engine );
wfTempDir()
Tries to get the system directory for temporary files.
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
Class representing a 'diff' between two sequences of strings.
Abort the web request with a custom HTML string that will represent the entire response.
Base class for language-specific code.
Convenience class for dealing with PoolCounters using callbacks.
Renders a diff for a single slot (that is, a diff between two content objects).
normalizeContents(Content &$oldContent=null, Content &$newContent=null, $allowedClasses=null)
Helper method to normalize the input of getDiff().
Renders a slot diff by doing a text diff on the native representation.
setStatsdDataFactory(IBufferingStatsdDataFactory $statsdDataFactory)
setEngine( $type, $executable=null)
Set which diff engine to use.
const ENGINE_PHP
Use the PHP diff implementation (DiffEngine).
const ENGINE_EXTERNAL
Use an external executable.
getTextDiffInternal( $oldText, $newText)
Diff the text representations of two content objects (or just two pieces of text in general).
const ENGINE_WIKIDIFF2
Use the wikidiff2 PHP module.
getDiff(Content $oldContent=null, Content $newContent=null)
Get a diff between two content objects.One of them might be null (meaning a slot was created or remov...
setLanguage(Language $language)
getExtraCacheKeys()
Return any extra keys to split the diff cache by.to override string[]
getTextDiff(string $oldText, string $newText)
Diff the text representations of two content objects (or just two pieces of text in general).
const ENGINE_WIKIDIFF2_INLINE
Use the wikidiff2 PHP module.
static diff( $oldText, $newText)
Convenience helper to use getTextDiff without an instance.
Base interface for content objects.
MediaWiki adaptation of StatsdDataFactory that provides buffering functionality.