* Convert "$dbw =& wfGetDB( DB_MASTER );" --> "$dbw = wfGetDB( DB_MASTER );" * convert "$skin =& $wgUser->getSkin();" --> "$skin = $wgUser->getSkin();" For the time being have not changed the function definitions of wfGetDB() or User::getSkin() [i.e. they are still both return-by-ref], so as to ensure the interface does not change for extensions [some of which may still be trying to run on PHP4 environments]. However presumably at some point this can be changed too. Also includes tiny tweak to newlines in parserTests - will show 1 rather than 2 newlines between the "Reading tests from" strings when in quiet mode.
104 lines
2.5 KiB
PHP
104 lines
2.5 KiB
PHP
<?php
|
|
|
|
# Run this script periodically if you have miser mode enabled, to refresh the caches
|
|
$options = array('only','help');
|
|
|
|
require_once( 'commandLine.inc' );
|
|
|
|
require_once( 'SpecialPage.php' );
|
|
require_once( 'QueryPage.php' );
|
|
|
|
if(@$options['help']) {
|
|
print "usage:updateSpecialPages.php [--help] [--only=page]\n";
|
|
print " --help : this help message\n";
|
|
print " --list : list special pages names\n";
|
|
print " --only=page : only update 'page'. Ex: --only=BrokenRedirects\n";
|
|
wfDie();
|
|
}
|
|
|
|
$wgOut->disable();
|
|
$dbw = wfGetDB( DB_MASTER );
|
|
|
|
foreach ( $wgQueryPages as $page ) {
|
|
@list( $class, $special, $limit ) = $page;
|
|
|
|
# --list : just show the name of pages
|
|
if( @$options['list'] ) {
|
|
print "$special\n";
|
|
continue;
|
|
}
|
|
|
|
if ( $wgDisableQueryPageUpdate && in_array( $special, $wgDisableQueryPageUpdate ) ) {
|
|
printf("%-30s disabled\n", $special);
|
|
continue;
|
|
}
|
|
|
|
$specialObj = SpecialPage::getPage( $special );
|
|
if ( !$specialObj ) {
|
|
print "No such special page: $special\n";
|
|
exit;
|
|
}
|
|
if ( !class_exists( $class ) ) {
|
|
$file = $specialObj->getFile();
|
|
require_once( $file );
|
|
}
|
|
$queryPage = new $class;
|
|
|
|
if( !(isset($options['only'])) or ($options['only'] == $queryPage->getName()) ) {
|
|
printf( '%-30s ', $special );
|
|
|
|
if ( $queryPage->isExpensive() ) {
|
|
$t1 = explode( ' ', microtime() );
|
|
# Do the query
|
|
$num = $queryPage->recache( $limit === null ? $wgQueryCacheLimit : $limit );
|
|
$t2 = explode( ' ', microtime() );
|
|
|
|
if ( $num === false ) {
|
|
print "FAILED: database error\n";
|
|
} else {
|
|
print "got $num rows in ";
|
|
|
|
$elapsed = ($t2[0] - $t1[0]) + ($t2[1] - $t1[1]);
|
|
$hours = intval( $elapsed / 3600 );
|
|
$minutes = intval( $elapsed % 3600 / 60 );
|
|
$seconds = $elapsed - $hours * 3600 - $minutes * 60;
|
|
if ( $hours ) {
|
|
print $hours . 'h ';
|
|
}
|
|
if ( $minutes ) {
|
|
print $minutes . 'm ';
|
|
}
|
|
printf( "%.2fs\n", $seconds );
|
|
}
|
|
|
|
# Reopen any connections that have closed
|
|
if ( !$wgLoadBalancer->pingAll()) {
|
|
print "\n";
|
|
do {
|
|
print "Connection failed, reconnecting in 10 seconds...\n";
|
|
sleep(10);
|
|
} while ( !$wgLoadBalancer->pingAll() );
|
|
print "Reconnected\n\n";
|
|
} else {
|
|
# Commit the results
|
|
$dbw->immediateCommit();
|
|
}
|
|
|
|
# Wait for the slave to catch up
|
|
/*
|
|
$slaveDB = wfGetDB( DB_SLAVE, array('QueryPage::recache', 'vslow' ) );
|
|
while( $slaveDB->getLag() > 600 ) {
|
|
print "Slave lagged, waiting...\n";
|
|
sleep(30);
|
|
|
|
}
|
|
*/
|
|
wfWaitForSlaves( 5 );
|
|
|
|
} else {
|
|
print "cheap, skipped\n";
|
|
}
|
|
}
|
|
}
|
|
|
|
?>
|