3 * Fills the rev_sha1 and ar_sha1 columns of revision
4 * and archive tables for revisions created before MW 1.19.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
22 * @ingroup Maintenance
25 require_once __DIR__
. '/Maintenance.php';
28 * Maintenance script that fills the rev_sha1 and ar_sha1 columns of revision
29 * and archive tables for revisions created before MW 1.19.
31 * @ingroup Maintenance
33 class PopulateRevisionSha1
extends LoggedUpdateMaintenance
{
34 public function __construct() {
35 parent
::__construct();
36 $this->mDescription
= "Populates the rev_sha1 and ar_sha1 fields";
37 $this->setBatchSize( 200 );
40 protected function getUpdateKey() {
41 return 'populate rev_sha1';
44 protected function doDBUpdates() {
45 $db = $this->getDB( DB_MASTER
);
47 if ( !$db->tableExists( 'revision' ) ) {
48 $this->error( "revision table does not exist", true );
49 } elseif ( !$db->tableExists( 'archive' ) ) {
50 $this->error( "archive table does not exist", true );
51 } elseif ( !$db->fieldExists( 'revision', 'rev_sha1', __METHOD__
) ) {
52 $this->output( "rev_sha1 column does not exist\n\n", true );
57 $this->output( "Populating rev_sha1 column\n" );
58 $rc = $this->doSha1Updates( 'revision', 'rev_id', 'rev' );
60 $this->output( "Populating ar_sha1 column\n" );
61 $ac = $this->doSha1Updates( 'archive', 'ar_rev_id', 'ar' );
62 $this->output( "Populating ar_sha1 column legacy rows\n" );
63 $ac +
= $this->doSha1LegacyUpdates();
65 $this->output( "rev_sha1 and ar_sha1 population complete "
66 . "[$rc revision rows, $ac archive rows].\n" );
72 * @param string $table
73 * @param string $idCol
74 * @param string $prefix
75 * @return int Rows changed
77 protected function doSha1Updates( $table, $idCol, $prefix ) {
78 $db = $this->getDB( DB_MASTER
);
79 $start = $db->selectField( $table, "MIN($idCol)", false, __METHOD__
);
80 $end = $db->selectField( $table, "MAX($idCol)", false, __METHOD__
);
81 if ( !$start ||
!$end ) {
82 $this->output( "...$table table seems to be empty.\n" );
89 $end +
= $this->mBatchSize
- 1;
91 $blockEnd = $start +
$this->mBatchSize
- 1;
92 while ( $blockEnd <= $end ) {
93 $this->output( "...doing $idCol from $blockStart to $blockEnd\n" );
94 $cond = "$idCol BETWEEN $blockStart AND $blockEnd
95 AND $idCol IS NOT NULL AND {$prefix}_sha1 = ''";
96 $res = $db->select( $table, '*', $cond, __METHOD__
);
98 $db->begin( __METHOD__
);
99 foreach ( $res as $row ) {
100 if ( $this->upgradeRow( $row, $table, $idCol, $prefix ) ) {
104 $db->commit( __METHOD__
);
106 $blockStart +
= $this->mBatchSize
;
107 $blockEnd +
= $this->mBatchSize
;
117 protected function doSha1LegacyUpdates() {
119 $db = $this->getDB( DB_MASTER
);
120 $res = $db->select( 'archive', '*',
121 array( 'ar_rev_id IS NULL', 'ar_sha1' => '' ), __METHOD__
);
124 $db->begin( __METHOD__
);
125 foreach ( $res as $row ) {
126 if ( $this->upgradeLegacyArchiveRow( $row ) ) {
129 if ( ++
$updateSize >= 100 ) {
131 $db->commit( __METHOD__
);
132 $this->output( "Commited row with ar_timestamp={$row->ar_timestamp}\n" );
134 $db->begin( __METHOD__
);
137 $db->commit( __METHOD__
);
143 * @param stdClass $row
144 * @param string $table
145 * @param string $idCol
146 * @param string $prefix
149 protected function upgradeRow( $row, $table, $idCol, $prefix ) {
150 $db = $this->getDB( DB_MASTER
);
152 $rev = ( $table === 'archive' )
153 ? Revision
::newFromArchiveRow( $row )
154 : new Revision( $row );
155 $text = $rev->getSerializedData();
156 } catch ( MWException
$e ) {
157 $this->output( "Data of revision with {$idCol}={$row->$idCol} unavailable!\n" );
159 return false; // bug 22624?
161 if ( !is_string( $text ) ) {
162 # This should not happen, but sometimes does (bug 20757)
163 $this->output( "Data of revision with {$idCol}={$row->$idCol} unavailable!\n" );
168 array( "{$prefix}_sha1" => Revision
::base36Sha1( $text ) ),
169 array( $idCol => $row->$idCol ),
178 * @param stdClass $row
181 protected function upgradeLegacyArchiveRow( $row ) {
182 $db = $this->getDB( DB_MASTER
);
184 $rev = Revision
::newFromArchiveRow( $row );
185 } catch ( MWException
$e ) {
186 $this->output( "Text of revision with timestamp {$row->ar_timestamp} unavailable!\n" );
188 return false; // bug 22624?
190 $text = $rev->getSerializedData();
191 if ( !is_string( $text ) ) {
192 # This should not happen, but sometimes does (bug 20757)
193 $this->output( "Data of revision with timestamp {$row->ar_timestamp} unavailable!\n" );
197 # Archive table as no PK, but (NS,title,time) should be near unique.
198 # Any duplicates on those should also have duplicated text anyway.
199 $db->update( 'archive',
200 array( 'ar_sha1' => Revision
::base36Sha1( $text ) ),
202 'ar_namespace' => $row->ar_namespace
,
203 'ar_title' => $row->ar_title
,
204 'ar_timestamp' => $row->ar_timestamp
,
205 'ar_len' => $row->ar_len
// extra sanity
215 $maintClass = "PopulateRevisionSha1";
216 require_once RUN_MAINTENANCE_IF_MAIN
;