27require_once __DIR__ .
'/Maintenance.php';
45 parent::__construct();
48This script will find all rows in the categorylinks table whose collation is
50repopulate cl_sortkey
using the page title and cl_sortkey_prefix. If all
51collations are up-to-date, it will
do nothing.
55 $this->
addOption(
'force',
'Run on all rows, even if the collation is ' .
56 'supposed to be up-to-date.',
false,
false,
'f' );
57 $this->
addOption(
'previous-collation',
'Set the previous value of ' .
58 '$wgCategoryCollation here to speed up this script, especially if your ' .
59 'categorylinks table is large. This will only update rows with that ' .
60 'collation, though, so it may miss out-of-date rows with a different, ' .
61 'even older collation.',
false,
true );
62 $this->
addOption(
'target-collation',
'Set this to the new collation type to ' .
63 'use instead of $wgCategoryCollation. Usually you should not use this, ' .
64 'you should just update $wgCategoryCollation in LocalSettings.php.',
66 $this->
addOption(
'dry-run',
'Don\'t actually change the collations, just ' .
67 'compile statistics.' );
68 $this->
addOption(
'verbose-stats',
'Show more statistics.' );
76 $verboseStats = $this->
getOption(
'verbose-stats' );
77 if ( $this->
hasOption(
'target-collation' ) ) {
78 $collationName = $this->
getOption(
'target-collation' );
81 $collationName = $this->
getConfig()->get(
'CategoryCollation' );
87 $collation->getFirstLetter(
'MediaWiki' );
93 if ( $this->
hasOption(
'previous-collation' ) ) {
94 $orderBy =
'cl_to, cl_type, cl_from';
96 $orderBy =
'cl_collation, cl_to, cl_type, cl_from';
100 'ORDER BY' => $orderBy,
104 $collationConds = [];
106 if ( $this->
hasOption(
'previous-collation' ) ) {
107 $collationConds[
'cl_collation'] = $this->
getOption(
'previous-collation' );
109 $collationConds = [ 0 =>
110 'cl_collation != ' . $dbw->addQuotes( $collationName )
114 $count =
$dbr->estimateRowCount(
121 if ( $count < 1000000 ) {
122 $count =
$dbr->selectField(
130 $this->
output(
"Collations up-to-date.\n" );
135 $this->
output(
"$count rows would be updated.\n" );
137 $this->
output(
"Fixing collation for $count rows.\n" );
144 $this->
output(
"Selecting next " . self::BATCH_SIZE .
" rows..." );
148 if ( $dbw->getType() ===
'mysql' ) {
149 $clType =
'cl_type+0 AS "cl_type_numeric"';
154 [
'categorylinks',
'page' ],
155 [
'cl_from',
'cl_to',
'cl_sortkey_prefix',
'cl_collation',
156 'cl_sortkey', $clType,
157 'page_namespace',
'page_title'
159 array_merge( $collationConds, $batchConds, [
'cl_from = page_id' ] ),
163 $this->
output(
" processing..." );
168 foreach (
$res as $row ) {
169 $title = Title::newFromRow( $row );
170 if ( !$row->cl_collation ) {
171 # This is an old-style row, so the sortkey needs to be
173 if ( $row->cl_sortkey ==
$title->getText()
174 || $row->cl_sortkey ==
$title->getPrefixedText()
178 # Custom sortkey, use it as a prefix
179 $prefix = $row->cl_sortkey;
182 $prefix = $row->cl_sortkey_prefix;
184 # cl_type will be wrong for lots of pages if cl_collation is 0,
185 # so let's update it while we're here.
186 $type = MediaWikiServices::getInstance()->getNamespaceInfo()->
187 getCategoryLinkType(
$title->getNamespace() );
188 $newSortKey = $collation->getSortKey(
189 $title->getCategorySortkey( $prefix ) );
190 if ( $verboseStats ) {
197 $count += ( $row->cl_sortkey !== $newSortKey );
202 'cl_sortkey' => $newSortKey,
203 'cl_sortkey_prefix' => $prefix,
204 'cl_collation' => $collationName,
206 'cl_timestamp = cl_timestamp',
208 [
'cl_from' => $row->cl_from,
'cl_to' => $row->cl_to ],
222 $this->
output(
"$count rows would be updated so far.\n" );
224 $this->
output(
"$count done.\n" );
226 }
while (
$res->numRows() == self::BATCH_SIZE );
229 $this->
output(
"$count rows processed\n" );
232 if ( $verboseStats ) {
246 if ( $this->
hasOption(
'previous-collation' ) ) {
247 $fields = [
'cl_to',
'cl_type',
'cl_from' ];
249 $fields = [
'cl_collation',
'cl_to',
'cl_type',
'cl_from' ];
254 foreach ( $fields as $field ) {
255 if ( $dbw->getType() ===
'mysql' && $field ===
'cl_type' ) {
258 $encValue = intval( $row->cl_type_numeric );
260 $encValue = $dbw->addQuotes( $row->$field );
262 $inequality =
"$field > $encValue";
263 $equality =
"$field = $encValue";
269 $cond .=
" OR ($prefix AND $inequality)";
270 $prefix .=
" AND $equality";
278 $length = strlen( $key );
279 if ( !isset( $this->sizeHistogram[$length] ) ) {
280 $this->sizeHistogram[$length] = 0;
282 $this->sizeHistogram[$length]++;
286 $maxLength = max( array_keys( $this->sizeHistogram ) );
287 if ( $maxLength == 0 ) {
291 $coarseHistogram = array_fill( 0, $numBins, 0 );
292 $coarseBoundaries = [];
294 for ( $i = 0; $i < $numBins - 1; $i++ ) {
295 $boundary += $maxLength / $numBins;
296 $coarseBoundaries[$i] = round( $boundary );
298 $coarseBoundaries[$numBins - 1] = $maxLength + 1;
300 for ( $i = 0; $i <= $maxLength; $i++ ) {
304 $val = $this->sizeHistogram[$i] ?? 0;
305 for ( $coarseIndex = 0; $coarseIndex < $numBins - 1; $coarseIndex++ ) {
306 if ( $coarseBoundaries[$coarseIndex] > $i ) {
307 $coarseHistogram[$coarseIndex] += $val;
311 if ( $coarseIndex == $numBins - 1 ) {
312 $coarseHistogram[$coarseIndex] += $val;
317 $this->
output(
"Sort key size histogram\nRaw data: $raw\n\n" );
319 $maxBinVal = max( $coarseHistogram );
320 $scale = 60 / $maxBinVal;
322 for ( $coarseIndex = 0; $coarseIndex < $numBins; $coarseIndex++ ) {
323 $val = $coarseHistogram[$coarseIndex] ?? 0;
324 $boundary = $coarseBoundaries[$coarseIndex];
325 $this->
output( sprintf(
"%-10s %-10d |%s\n",
326 $prevBoundary .
'-' . ( $boundary - 1 ) .
': ',
328 str_repeat(
'*', $scale * $val ) ) );
329 $prevBoundary = $boundary;
$wgCategoryCollation
Specify how category names should be sorted, when listed on a category page.
wfWaitForSlaves( $ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
const RUN_MAINTENANCE_IF_MAIN
static factory( $collationName)
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
beginTransaction(IDatabase $dbw, $fname)
Begin a transcation on a DB.
commitTransaction(IDatabase $dbw, $fname)
Commit the transcation on a DB handle and wait for replica DBs to catch up.
output( $out, $channel=null)
Throw some output to the user.
hasOption( $name)
Checks to see if a particular option exists.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
Maintenance script that will find all rows in the categorylinks table whose collation is out-of-date.
showSortKeySizeHistogram()
execute()
Do the actual work.
__construct()
Default constructor.
updateSortKeySizeHistogram( $key)
getBatchCondition( $row, $dbw)
Return an SQL expression selecting rows which sort above the given row, assuming an ordering of cl_co...