2006-07-13 17:38:01 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
require_once( 'FiveUpgrade.inc' );
|
|
|
|
|
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
/**
|
|
|
|
|
* @ingroup Maintenance
|
|
|
|
|
*/
|
2006-07-13 17:38:01 +00:00
|
|
|
abstract class TableCleanup extends FiveUpgrade {
|
|
|
|
|
function __construct( $table, $dryrun = false ) {
|
|
|
|
|
parent::__construct();
|
|
|
|
|
|
|
|
|
|
$this->targetTable = $table;
|
|
|
|
|
$this->maxLag = 10; # if slaves are lagged more than 10 secs, wait
|
|
|
|
|
$this->dryrun = $dryrun;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function cleanup() {
|
|
|
|
|
if( $this->dryrun ) {
|
|
|
|
|
echo "Checking for bad titles...\n";
|
|
|
|
|
} else {
|
|
|
|
|
echo "Checking and fixing bad titles...\n";
|
|
|
|
|
}
|
|
|
|
|
$this->runTable( $this->targetTable,
|
|
|
|
|
'', //'WHERE page_namespace=0',
|
|
|
|
|
array( $this, 'processPage' ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function init( $count, $table ) {
|
|
|
|
|
$this->processed = 0;
|
|
|
|
|
$this->updated = 0;
|
|
|
|
|
$this->count = $count;
|
|
|
|
|
$this->startTime = wfTime();
|
|
|
|
|
$this->table = $table;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function progress( $updated ) {
|
|
|
|
|
$this->updated += $updated;
|
|
|
|
|
$this->processed++;
|
|
|
|
|
if( $this->processed % 100 != 0 ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
$portion = $this->processed / $this->count;
|
|
|
|
|
$updateRate = $this->updated / $this->processed;
|
|
|
|
|
|
|
|
|
|
$now = wfTime();
|
|
|
|
|
$delta = $now - $this->startTime;
|
|
|
|
|
$estimatedTotalTime = $delta / $portion;
|
|
|
|
|
$eta = $this->startTime + $estimatedTotalTime;
|
|
|
|
|
|
|
|
|
|
printf( "%s %s: %6.2f%% done on %s; ETA %s [%d/%d] %.2f/sec <%.2f%% updated>\n",
|
2006-10-04 09:06:18 +00:00
|
|
|
wfWikiID(),
|
2006-07-13 17:38:01 +00:00
|
|
|
wfTimestamp( TS_DB, intval( $now ) ),
|
|
|
|
|
$portion * 100.0,
|
|
|
|
|
$this->table,
|
|
|
|
|
wfTimestamp( TS_DB, intval( $eta ) ),
|
|
|
|
|
$this->processed,
|
|
|
|
|
$this->count,
|
|
|
|
|
$this->processed / $delta,
|
|
|
|
|
$updateRate * 100.0 );
|
|
|
|
|
flush();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function runTable( $table, $where, $callback ) {
|
2009-02-16 19:09:28 +00:00
|
|
|
$count = $this->dbw->selectField( $table, 'count(*)', '', __METHOD__ );
|
2006-07-13 17:38:01 +00:00
|
|
|
$this->init( $count, $table );
|
|
|
|
|
$this->log( "Processing $table..." );
|
|
|
|
|
|
|
|
|
|
$tableName = $this->dbr->tableName( $table );
|
|
|
|
|
$sql = "SELECT * FROM $tableName $where";
|
2009-02-16 19:09:28 +00:00
|
|
|
$result = $this->dbr->query( $sql, __METHOD__ );
|
2006-07-13 17:38:01 +00:00
|
|
|
|
2009-02-16 19:09:28 +00:00
|
|
|
foreach( $result as $row ) {
|
2007-01-12 05:50:03 +00:00
|
|
|
call_user_func( $callback, $row );
|
2006-07-13 17:38:01 +00:00
|
|
|
}
|
|
|
|
|
$this->log( "Finished $table... $this->updated of $this->processed rows updated" );
|
2009-02-16 19:09:28 +00:00
|
|
|
$result->free();
|
2006-07-13 17:38:01 +00:00
|
|
|
}
|
2006-07-13 21:54:13 +00:00
|
|
|
|
|
|
|
|
function hexChar( $matches ) {
|
|
|
|
|
return sprintf( "\\x%02x", ord( $matches[1] ) );
|
|
|
|
|
}
|
2006-07-13 17:38:01 +00:00
|
|
|
|
|
|
|
|
abstract function processPage( $row );
|
|
|
|
|
|
|
|
|
|
}
|