3 * Find all rows in the categorylinks table whose collation is out-of-date
4 * (cl_collation != $wgCategoryCollation) and repopulate cl_sortkey
5 * using the page title and cl_sortkey_prefix.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
23 * @ingroup Maintenance
24 * @author Aryeh Gregor (Simetrical)
27 #$optionsWithArgs = array( 'begin', 'max-slave-lag' );
29 require_once __DIR__
. '/Maintenance.php';
32 * Maintenance script that will find all rows in the categorylinks table
33 * whose collation is out-of-date.
35 * @ingroup Maintenance
37 class UpdateCollation
extends Maintenance
{
38 const BATCH_SIZE
= 10000; // Number of rows to process in one batch
39 const SYNC_INTERVAL
= 20; // Wait for slaves after this many batches
41 public $sizeHistogram = array();
43 public function __construct() {
44 parent
::__construct();
46 global $wgCategoryCollation;
47 $this->mDescription
= <<<TEXT
48 This script will find all rows in the categorylinks table whose collation is
49 out-of-date (cl_collation != '$wgCategoryCollation') and repopulate cl_sortkey
50 using the page title and cl_sortkey_prefix. If everything's collation is
51 up-to-date, it will do nothing.
54 $this->addOption( 'force', 'Run on all rows, even if the collation is ' .
55 'supposed to be up-to-date.' );
56 $this->addOption( 'previous-collation', 'Set the previous value of ' .
57 '$wgCategoryCollation here to speed up this script, especially if your ' .
58 'categorylinks table is large. This will only update rows with that ' .
59 'collation, though, so it may miss out-of-date rows with a different, ' .
60 'even older collation.', false, true );
61 $this->addOption( 'target-collation', 'Set this to the new collation type to ' .
62 'use instead of $wgCategoryCollation. Usually you should not use this, ' .
63 'you should just update $wgCategoryCollation in LocalSettings.php.',
65 $this->addOption( 'dry-run', 'Don\'t actually change the collations, just ' .
66 'compile statistics.' );
67 $this->addOption( 'verbose-stats', 'Show more statistics.' );
70 public function execute() {
71 global $wgCategoryCollation;
73 $dbw = $this->getDB( DB_MASTER
);
74 $force = $this->getOption( 'force' );
75 $dryRun = $this->getOption( 'dry-run' );
76 $verboseStats = $this->getOption( 'verbose-stats' );
77 if ( $this->hasOption( 'target-collation' ) ) {
78 $collationName = $this->getOption( 'target-collation' );
79 $collation = Collation
::factory( $collationName );
81 $collationName = $wgCategoryCollation;
82 $collation = Collation
::singleton();
86 'LIMIT' => self
::BATCH_SIZE
,
87 'ORDER BY' => 'cl_to, cl_type, cl_from',
91 if ( $force ||
$dryRun ) {
92 $collationConds = array();
94 if ( $this->hasOption( 'previous-collation' ) ) {
95 $collationConds['cl_collation'] = $this->getOption( 'previous-collation' );
97 $collationConds = array( 0 =>
98 'cl_collation != ' . $dbw->addQuotes( $collationName )
102 $count = $dbw->estimateRowCount(
108 // Improve estimate if feasible
109 if ( $count < 1000000 ) {
110 $count = $dbw->selectField(
118 $this->output( "Collations up-to-date.\n" );
121 $this->output( "Fixing collation for $count rows.\n" );
126 $batchConds = array();
128 $this->output( "Selecting next " . self
::BATCH_SIZE
. " rows..." );
130 array( 'categorylinks', 'page' ),
131 array( 'cl_from', 'cl_to', 'cl_sortkey_prefix', 'cl_collation',
132 'cl_sortkey', 'cl_type', 'page_namespace', 'page_title'
134 array_merge( $collationConds, $batchConds, array( 'cl_from = page_id' ) ),
138 $this->output( " processing..." );
141 $dbw->begin( __METHOD__
);
143 foreach ( $res as $row ) {
144 $title = Title
::newFromRow( $row );
145 if ( !$row->cl_collation
) {
146 # This is an old-style row, so the sortkey needs to be
148 if ( $row->cl_sortkey
== $title->getText()
149 ||
$row->cl_sortkey
== $title->getPrefixedText() ) {
152 # Custom sortkey, use it as a prefix
153 $prefix = $row->cl_sortkey
;
156 $prefix = $row->cl_sortkey_prefix
;
158 # cl_type will be wrong for lots of pages if cl_collation is 0,
159 # so let's update it while we're here.
160 if ( $title->getNamespace() == NS_CATEGORY
) {
162 } elseif ( $title->getNamespace() == NS_FILE
) {
167 $newSortKey = $collation->getSortKey(
168 $title->getCategorySortkey( $prefix ) );
169 if ( $verboseStats ) {
170 $this->updateSortKeySizeHistogram( $newSortKey );
177 'cl_sortkey' => $newSortKey,
178 'cl_sortkey_prefix' => $prefix,
179 'cl_collation' => $collationName,
181 'cl_timestamp = cl_timestamp',
183 array( 'cl_from' => $row->cl_from
, 'cl_to' => $row->cl_to
),
189 $dbw->commit( __METHOD__
);
193 $batchConds = array( $this->getBatchCondition( $row ) );
196 $count +
= $res->numRows();
197 $this->output( "$count done.\n" );
199 if ( !$dryRun && ++
$batchCount % self
::SYNC_INTERVAL
== 0 ) {
200 $this->output( "Waiting for slaves ... " );
202 $this->output( "done\n" );
204 } while ( $res->numRows() == self
::BATCH_SIZE
);
206 $this->output( "$count rows processed\n" );
208 if ( $verboseStats ) {
209 $this->output( "\n" );
210 $this->showSortKeySizeHistogram();
215 * Return an SQL expression selecting rows which sort above the given row,
216 * assuming an ordering of cl_to, cl_type, cl_from
218 function getBatchCondition( $row ) {
219 $dbw = $this->getDB( DB_MASTER
);
220 $fields = array( 'cl_to', 'cl_type', 'cl_from' );
224 foreach ( $fields as $field ) {
225 $encValue = $dbw->addQuotes( $row->$field );
226 $inequality = "$field > $encValue";
227 $equality = "$field = $encValue";
233 $cond .= " OR ($prefix AND $inequality)";
234 $prefix .= " AND $equality";
240 function updateSortKeySizeHistogram( $key ) {
241 $length = strlen( $key );
242 if ( !isset( $this->sizeHistogram
[$length] ) ) {
243 $this->sizeHistogram
[$length] = 0;
245 $this->sizeHistogram
[$length]++
;
248 function showSortKeySizeHistogram() {
249 $maxLength = max( array_keys( $this->sizeHistogram
) );
250 if ( $maxLength == 0 ) {
254 $coarseHistogram = array_fill( 0, $numBins, 0 );
255 $coarseBoundaries = array();
257 for ( $i = 0; $i < $numBins - 1; $i++
) {
258 $boundary +
= $maxLength / $numBins;
259 $coarseBoundaries[$i] = round( $boundary );
261 $coarseBoundaries[$numBins - 1] = $maxLength +
1;
263 for ( $i = 0; $i <= $maxLength; $i++
) {
267 if ( !isset( $this->sizeHistogram
[$i] ) ) {
270 $val = $this->sizeHistogram
[$i];
272 for ( $coarseIndex = 0; $coarseIndex < $numBins - 1; $coarseIndex++
) {
273 if ( $coarseBoundaries[$coarseIndex] > $i ) {
274 $coarseHistogram[$coarseIndex] +
= $val;
278 if ( $coarseIndex == $numBins - 1 ) {
279 $coarseHistogram[$coarseIndex] +
= $val;
284 $this->output( "Sort key size histogram\nRaw data: $raw\n\n" );
286 $maxBinVal = max( $coarseHistogram );
287 $scale = 60 / $maxBinVal;
289 for ( $coarseIndex = 0; $coarseIndex < $numBins; $coarseIndex++
) {
290 if ( !isset( $coarseHistogram[$coarseIndex] ) ) {
293 $val = $coarseHistogram[$coarseIndex];
295 $boundary = $coarseBoundaries[$coarseIndex];
296 $this->output( sprintf( "%-10s %-10d |%s\n",
297 $prevBoundary . '-' . ( $boundary - 1 ) . ': ',
299 str_repeat( '*', $scale * $val ) ) );
300 $prevBoundary = $boundary;
305 $maintClass = "UpdateCollation";
306 require_once RUN_MAINTENANCE_IF_MAIN
;