2005-04-24 04:16:50 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
# Run this script periodically if you have miser mode enabled, to refresh the caches
|
2005-07-10 18:23:06 +00:00
|
|
|
$options = array('only','help');
|
2005-04-24 04:16:50 +00:00
|
|
|
|
|
|
|
|
require_once( 'commandLine.inc' );
|
|
|
|
|
|
|
|
|
|
require_once( 'SpecialPage.php' );
|
|
|
|
|
require_once( 'QueryPage.php' );
|
|
|
|
|
|
2005-10-05 23:02:33 +00:00
|
|
|
if(@$options['help']) {
|
2005-07-10 18:23:06 +00:00
|
|
|
print "usage:updateSpecialPages.php [--help] [--only=page]\n";
|
|
|
|
|
print " --help : this help message\n";
|
2005-10-23 11:39:17 +00:00
|
|
|
print " --list : list special pages names\n";
|
2005-07-10 18:23:06 +00:00
|
|
|
print " --only=page : only update 'page'. Ex: --only=BrokenRedirects\n";
|
2006-01-14 02:49:43 +00:00
|
|
|
wfDie();
|
2005-07-10 18:23:06 +00:00
|
|
|
}
|
|
|
|
|
|
2005-04-24 04:16:50 +00:00
|
|
|
$wgOut->disable();
|
2007-01-22 23:50:42 +00:00
|
|
|
$dbw = wfGetDB( DB_MASTER );
|
2005-04-24 04:16:50 +00:00
|
|
|
|
|
|
|
|
foreach ( $wgQueryPages as $page ) {
|
2005-10-12 03:46:42 +00:00
|
|
|
@list( $class, $special, $limit ) = $page;
|
2005-04-24 04:16:50 +00:00
|
|
|
|
2005-10-23 11:39:17 +00:00
|
|
|
# --list : just show the name of pages
|
|
|
|
|
if( @$options['list'] ) {
|
|
|
|
|
print "$special\n";
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2007-01-16 21:01:54 +00:00
|
|
|
if ( $wgDisableQueryPageUpdate && in_array( $special, $wgDisableQueryPageUpdate ) ) {
|
2006-12-30 16:44:31 +00:00
|
|
|
printf("%-30s disabled\n", $special);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2007-01-16 21:01:54 +00:00
|
|
|
|
2006-07-14 06:17:00 +00:00
|
|
|
$specialObj = SpecialPage::getPage( $special );
|
2005-04-24 04:16:50 +00:00
|
|
|
if ( !$specialObj ) {
|
|
|
|
|
print "No such special page: $special\n";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
2006-07-12 13:01:50 +00:00
|
|
|
if ( !class_exists( $class ) ) {
|
|
|
|
|
$file = $specialObj->getFile();
|
2005-04-24 04:16:50 +00:00
|
|
|
require_once( $file );
|
|
|
|
|
}
|
|
|
|
|
$queryPage = new $class;
|
|
|
|
|
|
2005-07-10 18:23:06 +00:00
|
|
|
if( !(isset($options['only'])) or ($options['only'] == $queryPage->getName()) ) {
|
2006-12-30 16:44:31 +00:00
|
|
|
printf( '%-30s ', $special );
|
2005-04-24 04:16:50 +00:00
|
|
|
|
|
|
|
|
if ( $queryPage->isExpensive() ) {
|
|
|
|
|
$t1 = explode( ' ', microtime() );
|
2005-04-24 08:31:12 +00:00
|
|
|
# Do the query
|
2006-12-04 22:17:12 +00:00
|
|
|
$num = $queryPage->recache( $limit === null ? $wgQueryCacheLimit : $limit );
|
2005-04-24 04:16:50 +00:00
|
|
|
$t2 = explode( ' ', microtime() );
|
|
|
|
|
|
2005-04-24 08:31:12 +00:00
|
|
|
if ( $num === false ) {
|
|
|
|
|
print "FAILED: database error\n";
|
|
|
|
|
} else {
|
|
|
|
|
print "got $num rows in ";
|
2005-04-24 04:16:50 +00:00
|
|
|
|
2005-04-24 08:31:12 +00:00
|
|
|
$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 );
|
2005-04-24 04:16:50 +00:00
|
|
|
}
|
2005-04-24 08:31:12 +00:00
|
|
|
|
|
|
|
|
# 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();
|
2005-04-24 04:16:50 +00:00
|
|
|
}
|
2005-06-19 01:09:02 +00:00
|
|
|
|
|
|
|
|
# Wait for the slave to catch up
|
2006-12-30 16:44:31 +00:00
|
|
|
/*
|
2007-01-22 23:50:42 +00:00
|
|
|
$slaveDB = wfGetDB( DB_SLAVE, array('QueryPage::recache', 'vslow' ) );
|
2005-06-19 01:09:02 +00:00
|
|
|
while( $slaveDB->getLag() > 600 ) {
|
|
|
|
|
print "Slave lagged, waiting...\n";
|
|
|
|
|
sleep(30);
|
|
|
|
|
|
|
|
|
|
}
|
2006-12-30 16:44:31 +00:00
|
|
|
*/
|
|
|
|
|
wfWaitForSlaves( 5 );
|
2005-06-19 01:09:02 +00:00
|
|
|
|
2005-04-24 04:16:50 +00:00
|
|
|
} else {
|
|
|
|
|
print "cheap, skipped\n";
|
|
|
|
|
}
|
2005-07-10 18:23:06 +00:00
|
|
|
}
|
2005-04-24 04:16:50 +00:00
|
|
|
}
|
|
|
|
|
|
2007-06-29 01:19:14 +00:00
|
|
|
|