MediaWiki REL1_30
compareParserCache.php
Go to the documentation of this file.
1<?php
22require_once __DIR__ . '/Maintenance.php';
23
25
30 public function __construct() {
31 parent::__construct();
32 $this->addDescription( 'Parse random pages and compare output to cache.' );
33 $this->addOption( 'namespace', 'Page namespace number', true, true );
34 $this->addOption( 'maxpages', 'Number of pages to try', true, true );
35 }
36
37 public function execute() {
38 $pages = $this->getOption( 'maxpages' );
39
40 $dbr = $this->getDB( DB_REPLICA );
41
42 $totalsec = 0.0;
43 $scanned = 0;
44 $withcache = 0;
45 $withdiff = 0;
46 $parserCache = MediaWikiServices::getInstance()->getParserCache();
47 while ( $pages-- > 0 ) {
48 $row = $dbr->selectRow( 'page', '*',
49 [
50 'page_namespace' => $this->getOption( 'namespace' ),
51 'page_is_redirect' => 0,
52 'page_random >= ' . wfRandom()
53 ],
54 __METHOD__,
55 [
56 'ORDER BY' => 'page_random',
57 ]
58 );
59
60 if ( !$row ) {
61 continue;
62 }
63 ++$scanned;
64
65 $title = Title::newFromRow( $row );
66 $page = WikiPage::factory( $title );
67 $revision = $page->getRevision();
68 $content = $revision->getContent( Revision::RAW );
69
70 $parserOptions = $page->makeParserOptions( 'canonical' );
71
72 $parserOutputOld = $parserCache->get( $page, $parserOptions );
73
74 if ( $parserOutputOld ) {
75 $t1 = microtime( true );
76 $parserOutputNew = $content->getParserOutput(
77 $title, $revision->getId(), $parserOptions, false );
78 $sec = microtime( true ) - $t1;
79 $totalsec += $sec;
80
81 $this->output( "Parsed '{$title->getPrefixedText()}' in $sec seconds.\n" );
82
83 $this->output( "Found cache entry found for '{$title->getPrefixedText()}'..." );
84 $oldHtml = trim( preg_replace( '#<!-- .+-->#Us', '', $parserOutputOld->getText() ) );
85 $newHtml = trim( preg_replace( '#<!-- .+-->#Us', '', $parserOutputNew->getText() ) );
86 $diff = wfDiff( $oldHtml, $newHtml );
87 if ( strlen( $diff ) ) {
88 $this->output( "differences found:\n\n$diff\n\n" );
89 ++$withdiff;
90 } else {
91 $this->output( "No differences found.\n" );
92 }
93 ++$withcache;
94 } else {
95 $this->output( "No parser cache entry found for '{$title->getPrefixedText()}'.\n" );
96 }
97 }
98
99 $ave = $totalsec ? $totalsec / $scanned : 0;
100 $this->output( "Checked $scanned pages; $withcache had prior cache entries.\n" );
101 $this->output( "Pages with differences found: $withdiff\n" );
102 $this->output( "Average parse time: $ave sec\n" );
103 }
104}
105
106$maintClass = "CompareParserCache";
107require_once RUN_MAINTENANCE_IF_MAIN;
wfRandom()
Get a random decimal value between 0 and 1, in a way not likely to give duplicate values for any real...
wfDiff( $before, $after, $params='-u')
Returns unified plain-text diff of two texts.
execute()
Do the actual work.
__construct()
Default constructor.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
MediaWikiServices is the service locator for the application scope of MediaWiki.
const RAW
Definition Revision.php:100
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition WikiPage.php:121
if(! $regexes) $dbr
Definition cleanup.php:94
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
require_once RUN_MAINTENANCE_IF_MAIN
const DB_REPLICA
Definition defines.php:25