2006-07-13 17:38:01 +00:00
|
|
|
<?php
|
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
|
|
|
/**
|
2012-06-25 19:54:41 +00:00
|
|
|
* Generic class to cleanup a database table.
|
2009-08-24 02:14:52 +00:00
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
2010-09-05 13:15:48 +00:00
|
|
|
* @file
|
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
|
|
|
|
2013-05-17 00:16:59 +00:00
|
|
|
require_once __DIR__ . '/Maintenance.php';
|
2009-08-24 02:14:52 +00:00
|
|
|
|
2012-06-25 19:54:41 +00:00
|
|
|
/**
|
|
|
|
|
* Generic class to cleanup a database table. Already subclasses Maintenance.
|
|
|
|
|
*
|
|
|
|
|
* @ingroup Maintenance
|
|
|
|
|
*/
|
2009-09-24 04:19:25 +00:00
|
|
|
class TableCleanup extends Maintenance {
|
|
|
|
|
protected $defaultParams = array(
|
|
|
|
|
'table' => 'page',
|
|
|
|
|
'conds' => array(),
|
|
|
|
|
'index' => 'page_id',
|
|
|
|
|
'callback' => 'processRow',
|
|
|
|
|
);
|
|
|
|
|
|
2009-08-24 02:14:52 +00:00
|
|
|
protected $dryrun = false;
|
|
|
|
|
protected $maxLag = 10; # if slaves are lagged more than 10 secs, wait
|
2009-09-24 04:19:25 +00:00
|
|
|
public $batchSize = 100;
|
|
|
|
|
public $reportInterval = 100;
|
2009-08-24 02:14:52 +00:00
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
|
parent::__construct();
|
|
|
|
|
$this->addOption( 'dry-run', 'Perform a dry run' );
|
2006-07-13 17:38:01 +00:00
|
|
|
}
|
|
|
|
|
|
2009-08-24 02:14:52 +00:00
|
|
|
public function execute() {
|
|
|
|
|
global $wgUser;
|
2011-12-28 19:49:44 +00:00
|
|
|
$wgUser = User::newFromName( 'Conversion script' );
|
2009-08-24 02:14:52 +00:00
|
|
|
$this->dryrun = $this->hasOption( 'dry-run' );
|
2010-05-22 16:50:39 +00:00
|
|
|
if ( $this->dryrun ) {
|
2009-08-24 02:14:52 +00:00
|
|
|
$this->output( "Checking for bad titles...\n" );
|
2006-07-13 17:38:01 +00:00
|
|
|
} else {
|
2009-08-24 02:14:52 +00:00
|
|
|
$this->output( "Checking and fixing bad titles...\n" );
|
2006-07-13 17:38:01 +00:00
|
|
|
}
|
2009-09-24 04:19:25 +00:00
|
|
|
$this->runTable( $this->defaultParams );
|
2006-07-13 17:38:01 +00:00
|
|
|
}
|
|
|
|
|
|
2009-08-24 02:14:52 +00:00
|
|
|
protected function init( $count, $table ) {
|
2006-07-13 17:38:01 +00:00
|
|
|
$this->processed = 0;
|
|
|
|
|
$this->updated = 0;
|
|
|
|
|
$this->count = $count;
|
2012-09-04 19:05:40 +00:00
|
|
|
$this->startTime = microtime( true );
|
2006-07-13 17:38:01 +00:00
|
|
|
$this->table = $table;
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-24 02:14:52 +00:00
|
|
|
protected function progress( $updated ) {
|
2006-07-13 17:38:01 +00:00
|
|
|
$this->updated += $updated;
|
|
|
|
|
$this->processed++;
|
2010-05-22 16:50:39 +00:00
|
|
|
if ( $this->processed % $this->reportInterval != 0 ) {
|
2006-07-13 17:38:01 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
$portion = $this->processed / $this->count;
|
|
|
|
|
$updateRate = $this->updated / $this->processed;
|
|
|
|
|
|
2012-09-04 19:05:40 +00:00
|
|
|
$now = microtime( true );
|
2006-07-13 17:38:01 +00:00
|
|
|
$delta = $now - $this->startTime;
|
|
|
|
|
$estimatedTotalTime = $delta / $portion;
|
|
|
|
|
$eta = $this->startTime + $estimatedTotalTime;
|
|
|
|
|
|
2010-05-22 16:50:39 +00:00
|
|
|
$this->output(
|
2009-08-24 02:14:52 +00:00
|
|
|
sprintf( "%s %s: %6.2f%% done on %s; ETA %s [%d/%d] %.2f/sec <%.2f%% updated>\n",
|
|
|
|
|
wfWikiID(),
|
|
|
|
|
wfTimestamp( TS_DB, intval( $now ) ),
|
|
|
|
|
$portion * 100.0,
|
|
|
|
|
$this->table,
|
|
|
|
|
wfTimestamp( TS_DB, intval( $eta ) ),
|
|
|
|
|
$this->processed,
|
|
|
|
|
$this->count,
|
|
|
|
|
$this->processed / $delta,
|
2010-05-22 16:50:39 +00:00
|
|
|
$updateRate * 100.0
|
2009-08-24 02:14:52 +00:00
|
|
|
)
|
|
|
|
|
);
|
2006-07-13 17:38:01 +00:00
|
|
|
flush();
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-24 04:19:25 +00:00
|
|
|
public function runTable( $params ) {
|
2009-09-21 17:34:24 +00:00
|
|
|
$dbr = wfGetDB( DB_SLAVE );
|
2009-09-24 04:19:25 +00:00
|
|
|
|
|
|
|
|
if ( array_diff( array_keys( $params ),
|
2010-05-22 16:50:39 +00:00
|
|
|
array( 'table', 'conds', 'index', 'callback' ) ) )
|
2009-09-24 04:19:25 +00:00
|
|
|
{
|
2010-05-22 16:50:39 +00:00
|
|
|
throw new MWException( __METHOD__ . ': Missing parameter ' . implode( ', ', $params ) );
|
2009-09-24 04:19:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$table = $params['table'];
|
2011-07-08 22:08:19 +00:00
|
|
|
// count(*) would melt the DB for huge tables, we can estimate here
|
2011-07-08 22:15:29 +00:00
|
|
|
$count = $dbr->estimateRowCount( $table, '*', '', __METHOD__ );
|
2006-07-13 17:38:01 +00:00
|
|
|
$this->init( $count, $table );
|
2009-09-24 04:19:25 +00:00
|
|
|
$this->output( "Processing $table...\n" );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$index = (array)$params['index'];
|
|
|
|
|
$indexConds = array();
|
|
|
|
|
$options = array(
|
|
|
|
|
'ORDER BY' => implode( ',', $index ),
|
|
|
|
|
'LIMIT' => $this->batchSize
|
|
|
|
|
);
|
|
|
|
|
$callback = array( $this, $params['callback'] );
|
2006-07-13 17:38:01 +00:00
|
|
|
|
2009-09-24 04:19:25 +00:00
|
|
|
while ( true ) {
|
|
|
|
|
$conds = array_merge( $params['conds'], $indexConds );
|
|
|
|
|
$res = $dbr->select( $table, '*', $conds, __METHOD__, $options );
|
|
|
|
|
if ( !$res->numRows() ) {
|
|
|
|
|
// Done
|
|
|
|
|
break;
|
|
|
|
|
}
|
2006-07-13 17:38:01 +00:00
|
|
|
|
2009-09-24 04:19:25 +00:00
|
|
|
foreach ( $res as $row ) {
|
|
|
|
|
call_user_func( $callback, $row );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $res->numRows() < $this->batchSize ) {
|
|
|
|
|
// Done
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Update the conditions to select the next batch.
|
|
|
|
|
// Construct a condition string by starting with the least significant part
|
|
|
|
|
// of the index, and adding more significant parts progressively to the left
|
|
|
|
|
// of the string.
|
|
|
|
|
$nextCond = '';
|
|
|
|
|
foreach ( array_reverse( $index ) as $field ) {
|
|
|
|
|
$encValue = $dbr->addQuotes( $row->$field );
|
|
|
|
|
if ( $nextCond === '' ) {
|
|
|
|
|
$nextCond = "$field > $encValue";
|
|
|
|
|
} else {
|
|
|
|
|
$nextCond = "$field > $encValue OR ($field = $encValue AND ($nextCond))";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$indexConds = array( $nextCond );
|
2006-07-13 17:38:01 +00:00
|
|
|
}
|
2009-09-24 04:19:25 +00:00
|
|
|
|
2009-08-24 02:14:52 +00:00
|
|
|
$this->output( "Finished $table... $this->updated of $this->processed rows updated\n" );
|
2006-07-13 17:38:01 +00:00
|
|
|
}
|
2006-07-13 21:54:13 +00:00
|
|
|
|
2009-08-24 02:14:52 +00:00
|
|
|
protected function hexChar( $matches ) {
|
2006-07-13 21:54:13 +00:00
|
|
|
return sprintf( "\\x%02x", ord( $matches[1] ) );
|
|
|
|
|
}
|
2006-07-13 17:38:01 +00:00
|
|
|
}
|
2009-09-24 04:19:25 +00:00
|
|
|
|
|
|
|
|
class TableCleanupTest extends TableCleanup {
|
|
|
|
|
function processRow( $row ) {
|
|
|
|
|
$this->progress( mt_rand( 0, 1 ) );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|