27 require_once __DIR__ .
'/Maintenance.php';
45 parent::__construct();
47 $categoryCollation = $this->
getConfig()->get(
'CategoryCollation' );
49 This script will find all rows in the categorylinks table whose collation is
50 out-of-date (cl_collation !=
'$categoryCollation') and repopulate cl_sortkey
51 using the page title and cl_sortkey_prefix. If all collations are
52 up-to-date, it will
do nothing.
56 $this->
addOption(
'force',
'Run on all rows, even if the collation is ' .
57 'supposed to be up-to-date.',
false,
false,
'f' );
58 $this->
addOption(
'previous-collation',
'Set the previous value of ' .
59 '$wgCategoryCollation here to speed up this script, especially if your ' .
60 'categorylinks table is large. This will only update rows with that ' .
61 'collation, though, so it may miss out-of-date rows with a different, ' .
62 'even older collation.',
false,
true );
63 $this->
addOption(
'target-collation',
'Set this to the new collation type to ' .
64 'use instead of $wgCategoryCollation. Usually you should not use this, ' .
65 'you should just update $wgCategoryCollation in LocalSettings.php.',
67 $this->
addOption(
'dry-run',
'Don\'t actually change the collations, just ' .
68 'compile statistics.' );
69 $this->
addOption(
'verbose-stats',
'Show more statistics.' );
77 $verboseStats = $this->
getOption(
'verbose-stats' );
78 if ( $this->
hasOption(
'target-collation' ) ) {
79 $collationName = $this->
getOption(
'target-collation' );
82 $collationName = $this->
getConfig()->get(
'CategoryCollation' );
88 $collation->getFirstLetter(
'MediaWiki' );
94 if ( $this->
hasOption(
'previous-collation' ) ) {
95 $orderBy =
'cl_to, cl_type, cl_from';
97 $orderBy =
'cl_collation, cl_to, cl_type, cl_from';
101 'ORDER BY' => $orderBy,
105 $collationConds = [];
107 if ( $this->
hasOption(
'previous-collation' ) ) {
108 $collationConds[
'cl_collation'] = $this->
getOption(
'previous-collation' );
110 $collationConds = [ 0 =>
111 'cl_collation != ' . $dbw->addQuotes( $collationName )
115 $count =
$dbr->estimateRowCount(
122 if ( $count < 1000000 ) {
123 $count =
$dbr->selectField(
131 $this->
output(
"Collations up-to-date.\n" );
136 $this->
output(
"$count rows would be updated.\n" );
138 $this->
output(
"Fixing collation for $count rows.\n" );
145 $this->
output(
"Selecting next " . self::BATCH_SIZE .
" rows..." );
149 if ( $dbw->getType() ===
'mysql' ) {
150 $clType =
'cl_type+0 AS "cl_type_numeric"';
155 [
'categorylinks',
'page' ],
156 [
'cl_from',
'cl_to',
'cl_sortkey_prefix',
'cl_collation',
157 'cl_sortkey', $clType,
158 'page_namespace',
'page_title'
160 array_merge( $collationConds, $batchConds, [
'cl_from = page_id' ] ),
164 $this->
output(
" processing..." );
169 foreach (
$res as $row ) {
171 if ( !$row->cl_collation ) {
172 # This is an old-style row, so the sortkey needs to be
174 if ( $row->cl_sortkey ==
$title->getText()
175 || $row->cl_sortkey ==
$title->getPrefixedText()
179 # Custom sortkey, use it as a prefix
180 $prefix = $row->cl_sortkey;
183 $prefix = $row->cl_sortkey_prefix;
185 # cl_type will be wrong for lots of pages if cl_collation is 0,
186 # so let's update it while we're here.
187 $type = MediaWikiServices::getInstance()->getNamespaceInfo()->
188 getCategoryLinkType(
$title->getNamespace() );
189 $newSortKey = $collation->getSortKey(
190 $title->getCategorySortkey( $prefix ) );
191 if ( $verboseStats ) {
198 $count += ( $row->cl_sortkey !== $newSortKey );
203 'cl_sortkey' => $newSortKey,
204 'cl_sortkey_prefix' => $prefix,
205 'cl_collation' => $collationName,
207 'cl_timestamp = cl_timestamp',
209 [
'cl_from' => $row->cl_from,
'cl_to' => $row->cl_to ],
223 $this->
output(
"$count rows would be updated so far.\n" );
225 $this->
output(
"$count done.\n" );
230 $this->
output(
"$count rows processed\n" );
233 if ( $verboseStats ) {
247 if ( $this->
hasOption(
'previous-collation' ) ) {
248 $fields = [
'cl_to',
'cl_type',
'cl_from' ];
250 $fields = [
'cl_collation',
'cl_to',
'cl_type',
'cl_from' ];
255 foreach ( $fields as $field ) {
256 if ( $dbw->getType() ===
'mysql' && $field ===
'cl_type' ) {
259 $encValue = intval( $row->cl_type_numeric );
261 $encValue = $dbw->addQuotes( $row->$field );
263 $inequality =
"$field > $encValue";
264 $equality =
"$field = $encValue";
270 $cond .=
" OR ($prefix AND $inequality)";
271 $prefix .=
" AND $equality";
279 $length = strlen( $key );
280 if ( !isset( $this->sizeHistogram[$length] ) ) {
281 $this->sizeHistogram[$length] = 0;
283 $this->sizeHistogram[$length]++;
287 $maxLength = max( array_keys( $this->sizeHistogram ) );
288 if ( $maxLength == 0 ) {
292 $coarseHistogram = array_fill( 0, $numBins, 0 );
293 $coarseBoundaries = [];
295 for ( $i = 0; $i < $numBins - 1; $i++ ) {
296 $boundary += $maxLength / $numBins;
297 $coarseBoundaries[$i] = round( $boundary );
299 $coarseBoundaries[$numBins - 1] = $maxLength + 1;
301 for ( $i = 0; $i <= $maxLength; $i++ ) {
305 $val = $this->sizeHistogram[$i] ?? 0;
306 for ( $coarseIndex = 0; $coarseIndex < $numBins - 1; $coarseIndex++ ) {
307 if ( $coarseBoundaries[$coarseIndex] > $i ) {
308 $coarseHistogram[$coarseIndex] += $val;
312 if ( $coarseIndex == $numBins - 1 ) {
313 $coarseHistogram[$coarseIndex] += $val;
318 $this->
output(
"Sort key size histogram\nRaw data: $raw\n\n" );
320 $maxBinVal = max( $coarseHistogram );
321 $scale = 60 / $maxBinVal;
323 for ( $coarseIndex = 0; $coarseIndex < $numBins; $coarseIndex++ ) {
324 $val = $coarseHistogram[$coarseIndex] ?? 0;
325 $boundary = $coarseBoundaries[$coarseIndex];
326 $this->
output( sprintf(
"%-10s %-10d |%s\n",
327 $prevBoundary .
'-' . ( $boundary - 1 ) .
': ',
329 str_repeat(
'*', $scale * $val ) ) );
330 $prevBoundary = $boundary;