Go to the documentation of this file.
24 require_once __DIR__ .
'/Maintenance.php';
35 parent::__construct();
36 $this->
addDescription(
'Populates the rev_len and ar_len fields' );
41 return 'populate rev_len and ar_len';
46 if ( !$dbw->tableExists(
'revision' ) ) {
47 $this->
error(
"revision table does not exist",
true );
48 } elseif ( !$dbw->tableExists(
'archive' ) ) {
49 $this->
error(
"archive table does not exist",
true );
50 } elseif ( !$dbw->fieldExists(
'revision',
'rev_len', __METHOD__ ) ) {
51 $this->
output(
"rev_len column does not exist\n\n",
true );
56 $this->
output(
"Populating rev_len column\n" );
59 $this->
output(
"Populating ar_len column\n" );
62 $this->
output(
"rev_len and ar_len population complete "
63 .
"[$rev revision rows, $ar archive rows].\n" );
75 protected function doLenUpdates( $table, $idCol, $prefix, $fields ) {
78 $start = $dbw->selectField( $table,
"MIN($idCol)",
false, __METHOD__ );
79 $end = $dbw->selectField( $table,
"MAX($idCol)",
false, __METHOD__ );
80 if ( !$start || !$end ) {
81 $this->
output(
"...$table table seems to be empty.\n" );
87 $blockStart = intval( $start );
88 $blockEnd = intval( $start ) + $this->mBatchSize - 1;
91 while ( $blockStart <= $end ) {
92 $this->
output(
"...doing $idCol from $blockStart to $blockEnd\n" );
97 "$idCol >= $blockStart",
98 "$idCol <= $blockEnd",
99 "{$prefix}_len IS NULL"
104 if (
$res->numRows() > 0 ) {
106 # Go through and update rev_len from these rows.
107 foreach (
$res as $row ) {
108 if ( $this->
upgradeRow( $row, $table, $idCol, $prefix ) ) {
130 protected function upgradeRow( $row, $table, $idCol, $prefix ) {
133 $rev = ( $table ===
'archive' )
137 $content =
$rev->getContent();
139 # This should not happen, but sometimes does (T22757)
141 $this->
output(
"Content of $table $id unavailable!\n" );
147 $dbw->update( $table,
148 [
"{$prefix}_len" => $content->getSize() ],
149 [ $idCol => $row->$idCol ],
static newFromArchiveRow( $row, $overrides=[])
Make a fake revision object from an archive table row.
int $mBatchSize
Batch size.
Maintenance script that populates the rev_len and ar_len fields when they are NULL.
doDBUpdates()
Do the actual work.
upgradeRow( $row, $table, $idCol, $prefix)
addDescription( $text)
Set the description text.
require_once RUN_MAINTENANCE_IF_MAIN
wfWaitForSlaves( $ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
beginTransaction(IDatabase $dbw, $fname)
Begin a transcation on a DB.
Class for scripts that perform database maintenance and want to log the update in updatelog so we can...
getUpdateKey()
Get the update key name to go in the update log table.
doLenUpdates( $table, $idCol, $prefix, $fields)
static selectArchiveFields()
Return the list of revision fields that should be selected to create a new revision from an archive r...
commitTransaction(IDatabase $dbw, $fname)
Commit the transcation on a DB handle and wait for replica DBs to catch up.
__construct()
Default constructor.
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
error( $err, $die=0)
Throw an error to the user.
output( $out, $channel=null)
Throw some output to the user.
static selectFields()
Return the list of revision fields that should be selected to create a new revision.
setBatchSize( $s=0)
Set the batch size.