Merge "maintenance: Script to rename titles for Unicode uppercasing changes"
[lhc/web/wiklou.git] / maintenance / populateContentTables.php
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 * @ingroup Maintenance
20 */
21
22 use MediaWiki\MediaWikiServices;
23 use MediaWiki\Revision\SlotRecord;
24 use MediaWiki\Storage\BlobStore;
25 use MediaWiki\Storage\NameTableStore;
26 use MediaWiki\Storage\SqlBlobStore;
27 use Wikimedia\Assert\Assert;
28 use Wikimedia\Rdbms\IDatabase;
29 use Wikimedia\Rdbms\IResultWrapper;
30
31 require_once __DIR__ . '/Maintenance.php';
32
33 /**
34 * Populate the content and slot tables.
35 * @since 1.32
36 */
37 class PopulateContentTables extends Maintenance {
38
39 /** @var IDatabase */
40 private $dbw;
41
42 /** @var NameTableStore */
43 private $contentModelStore;
44
45 /** @var BlobStore */
46 private $blobStore;
47
48 /** @var int */
49 private $mainRoleId;
50
51 /** @var array|null Map "{$modelId}:{$address}" to content_id */
52 private $contentRowMap = null;
53
54 private $count = 0, $totalCount = 0;
55
56 public function __construct() {
57 parent::__construct();
58
59 $this->addDescription( 'Populate content and slot tables' );
60 $this->addOption( 'table', 'revision or archive table, or `all` to populate both', false,
61 true );
62 $this->addOption( 'reuse-content',
63 'Reuse content table rows when the address and model are the same. '
64 . 'This will increase the script\'s time and memory usage, perhaps significantly.',
65 false, false );
66 $this->addOption( 'start-revision', 'The rev_id to start at', false, true );
67 $this->addOption( 'start-archive', 'The ar_rev_id to start at', false, true );
68 $this->setBatchSize( 500 );
69 }
70
71 private function initServices() {
72 $this->dbw = $this->getDB( DB_MASTER );
73 $this->contentModelStore = MediaWikiServices::getInstance()->getContentModelStore();
74 $this->blobStore = MediaWikiServices::getInstance()->getBlobStore();
75 $this->mainRoleId = MediaWikiServices::getInstance()->getSlotRoleStore()
76 ->acquireId( SlotRecord::MAIN );
77 }
78
79 public function execute() {
80 global $wgMultiContentRevisionSchemaMigrationStage;
81
82 $t0 = microtime( true );
83
84 if ( ( $wgMultiContentRevisionSchemaMigrationStage & SCHEMA_COMPAT_WRITE_NEW ) === 0 ) {
85 $this->writeln(
86 '...cannot update while \$wgMultiContentRevisionSchemaMigrationStage '
87 . 'does not have the SCHEMA_COMPAT_WRITE_NEW bit set.'
88 );
89 return false;
90 }
91
92 $this->initServices();
93
94 if ( $this->getOption( 'reuse-content', false ) ) {
95 $this->loadContentMap();
96 }
97
98 foreach ( $this->getTables() as $table ) {
99 $this->populateTable( $table );
100 }
101
102 $elapsed = microtime( true ) - $t0;
103 $this->writeln( "Done. Processed $this->totalCount rows in $elapsed seconds" );
104 return true;
105 }
106
107 /**
108 * @return string[]
109 */
110 private function getTables() {
111 $table = $this->getOption( 'table', 'all' );
112 $validTableOptions = [ 'all', 'revision', 'archive' ];
113
114 if ( !in_array( $table, $validTableOptions ) ) {
115 $this->fatalError( 'Invalid table. Must be either `revision` or `archive` or `all`' );
116 }
117
118 if ( $table === 'all' ) {
119 $tables = [ 'revision', 'archive' ];
120 } else {
121 $tables = [ $table ];
122 }
123
124 return $tables;
125 }
126
127 private function loadContentMap() {
128 $t0 = microtime( true );
129 $this->writeln( "Loading existing content table rows..." );
130 $this->contentRowMap = [];
131 $dbr = $this->getDB( DB_REPLICA );
132 $from = false;
133 while ( true ) {
134 $res = $dbr->select(
135 'content',
136 [ 'content_id', 'content_address', 'content_model' ],
137 $from ? "content_id > $from" : '',
138 __METHOD__,
139 [ 'ORDER BY' => 'content_id', 'LIMIT' => $this->getBatchSize() ]
140 );
141 if ( !$res || !$res->numRows() ) {
142 break;
143 }
144 foreach ( $res as $row ) {
145 $from = $row->content_id;
146 $this->contentRowMap["{$row->content_model}:{$row->content_address}"] = $row->content_id;
147 }
148 }
149 $elapsed = microtime( true ) - $t0;
150 $this->writeln( "Loaded " . count( $this->contentRowMap ) . " rows in $elapsed seconds" );
151 }
152
153 /**
154 * @param string $table
155 */
156 private function populateTable( $table ) {
157 $t0 = microtime( true );
158 $this->count = 0;
159 $this->writeln( "Populating $table..." );
160
161 if ( $table === 'revision' ) {
162 $idField = 'rev_id';
163 $tables = [ 'revision', 'slots', 'page' ];
164 $fields = [
165 'rev_id',
166 'len' => 'rev_len',
167 'sha1' => 'rev_sha1',
168 'text_id' => 'rev_text_id',
169 'content_model' => 'rev_content_model',
170 'namespace' => 'page_namespace',
171 'title' => 'page_title',
172 ];
173 $joins = [
174 'slots' => [ 'LEFT JOIN', 'rev_id=slot_revision_id' ],
175 'page' => [ 'LEFT JOIN', 'rev_page=page_id' ],
176 ];
177 $startOption = 'start-revision';
178 } else {
179 $idField = 'ar_rev_id';
180 $tables = [ 'archive', 'slots' ];
181 $fields = [
182 'rev_id' => 'ar_rev_id',
183 'len' => 'ar_len',
184 'sha1' => 'ar_sha1',
185 'text_id' => 'ar_text_id',
186 'content_model' => 'ar_content_model',
187 'namespace' => 'ar_namespace',
188 'title' => 'ar_title',
189 ];
190 $joins = [
191 'slots' => [ 'LEFT JOIN', 'ar_rev_id=slot_revision_id' ],
192 ];
193 $startOption = 'start-archive';
194 }
195
196 if ( !$this->dbw->fieldExists( $table, $fields['text_id'], __METHOD__ ) ) {
197 $this->writeln( "No need to populate, $table.{$fields['text_id']} field does not exist" );
198 return;
199 }
200
201 $minmax = $this->dbw->selectRow(
202 $table,
203 [ 'min' => "MIN( $idField )", 'max' => "MAX( $idField )" ],
204 '',
205 __METHOD__
206 );
207 if ( $this->hasOption( $startOption ) ) {
208 $minmax->min = (int)$this->getOption( $startOption );
209 }
210 if ( !$minmax || !is_numeric( $minmax->min ) || !is_numeric( $minmax->max ) ) {
211 // No rows?
212 $minmax = (object)[ 'min' => 1, 'max' => 0 ];
213 }
214
215 $batchSize = $this->getBatchSize();
216
217 for ( $startId = $minmax->min; $startId <= $minmax->max; $startId += $batchSize ) {
218 $endId = min( $startId + $batchSize - 1, $minmax->max );
219 $rows = $this->dbw->select(
220 $tables,
221 $fields,
222 [
223 "$idField >= $startId",
224 "$idField <= $endId",
225 'slot_revision_id IS NULL',
226 ],
227 __METHOD__,
228 [ 'ORDER BY' => 'rev_id' ],
229 $joins
230 );
231 if ( $rows->numRows() !== 0 ) {
232 $this->populateContentTablesForRowBatch( $rows, $startId, $table );
233 }
234
235 $elapsed = microtime( true ) - $t0;
236 $this->writeln(
237 "... $table processed up to revision id $endId of {$minmax->max}"
238 . " ($this->count rows in $elapsed seconds)"
239 );
240 }
241
242 $elapsed = microtime( true ) - $t0;
243 $this->writeln( "Done populating $table table. Processed $this->count rows in $elapsed seconds" );
244 }
245
246 /**
247 * @param IResultWrapper $rows
248 * @param int $startId
249 * @param string $table
250 * @return int|null
251 */
252 private function populateContentTablesForRowBatch( IResultWrapper $rows, $startId, $table ) {
253 $this->beginTransaction( $this->dbw, __METHOD__ );
254
255 if ( $this->contentRowMap === null ) {
256 $map = [];
257 } else {
258 $map = &$this->contentRowMap;
259 }
260 $contentKeys = [];
261
262 try {
263 // Step 1: Figure out content rows needing insertion.
264 $contentRows = [];
265 foreach ( $rows as $row ) {
266 $revisionId = $row->rev_id;
267
268 Assert::invariant( $revisionId !== null, 'rev_id must not be null' );
269
270 $model = $this->getContentModel( $row );
271 $modelId = $this->contentModelStore->acquireId( $model );
272 $address = SqlBlobStore::makeAddressFromTextId( $row->text_id );
273
274 $key = "{$modelId}:{$address}";
275 $contentKeys[$revisionId] = $key;
276
277 if ( !isset( $map[$key] ) ) {
278 $this->fillMissingFields( $row, $model, $address );
279
280 $map[$key] = false;
281 $contentRows[] = [
282 'content_size' => (int)$row->len,
283 'content_sha1' => $row->sha1,
284 'content_model' => $modelId,
285 'content_address' => $address,
286 ];
287 }
288 }
289
290 // Step 2: Insert them, then read them back in for use in the next step.
291 if ( $contentRows ) {
292 $id = $this->dbw->selectField( 'content', 'MAX(content_id)', '', __METHOD__ );
293 $this->dbw->insert( 'content', $contentRows, __METHOD__ );
294 $res = $this->dbw->select(
295 'content',
296 [ 'content_id', 'content_model', 'content_address' ],
297 'content_id > ' . (int)$id,
298 __METHOD__
299 );
300 foreach ( $res as $row ) {
301 $key = $row->content_model . ':' . $row->content_address;
302 $map[$key] = $row->content_id;
303 }
304 }
305
306 // Step 3: Insert the slot rows.
307 $slotRows = [];
308 foreach ( $rows as $row ) {
309 $revisionId = $row->rev_id;
310 $contentId = $map[$contentKeys[$revisionId]] ?? false;
311 if ( $contentId === false ) {
312 throw new \RuntimeException( "Content row for $revisionId not found after content insert" );
313 }
314 $slotRows[] = [
315 'slot_revision_id' => $revisionId,
316 'slot_role_id' => $this->mainRoleId,
317 'slot_content_id' => $contentId,
318 // There's no way to really know the previous revision, so assume no inheriting.
319 // rev_parent_id can get changed on undeletions, and deletions can screw up
320 // rev_timestamp ordering.
321 'slot_origin' => $revisionId,
322 ];
323 }
324 $this->dbw->insert( 'slots', $slotRows, __METHOD__ );
325 $this->count += count( $slotRows );
326 $this->totalCount += count( $slotRows );
327 } catch ( \Exception $e ) {
328 $this->rollbackTransaction( $this->dbw, __METHOD__ );
329 $this->fatalError( "Failed to populate content table $table row batch starting at $startId "
330 . "due to exception: " . $e->__toString() );
331 }
332
333 $this->commitTransaction( $this->dbw, __METHOD__ );
334 }
335
336 /**
337 * @param \stdClass $row
338 * @return string
339 */
340 private function getContentModel( $row ) {
341 if ( isset( $row->content_model ) ) {
342 return $row->content_model;
343 }
344
345 $title = Title::makeTitle( $row->namespace, $row->title );
346
347 return ContentHandler::getDefaultModelFor( $title );
348 }
349
350 /**
351 * @param string $msg
352 */
353 private function writeln( $msg ) {
354 $this->output( "$msg\n" );
355 }
356
357 /**
358 * Compute any missing fields in $row.
359 * The way the missing values are computed must correspond to the way this is done in SlotRecord.
360 *
361 * @param object $row to be modified
362 * @param string $model
363 * @param string $address
364 */
365 private function fillMissingFields( $row, $model, $address ) {
366 if ( !isset( $row->content_model ) ) {
367 // just for completeness
368 $row->content_model = $model;
369 }
370
371 if ( isset( $row->len ) && isset( $row->sha1 ) && $row->sha1 !== '' ) {
372 // No need to load the content, quite now.
373 return;
374 }
375
376 $blob = $this->blobStore->getBlob( $address );
377
378 if ( !isset( $row->len ) ) {
379 // NOTE: The nominal size of the content may not be the length of the raw blob.
380 $handler = ContentHandler::getForModelID( $model );
381 $content = $handler->unserializeContent( $blob );
382
383 $row->len = $content->getSize();
384 }
385
386 if ( !isset( $row->sha1 ) || $row->sha1 === '' ) {
387 $row->sha1 = SlotRecord::base36Sha1( $blob );
388 }
389 }
390 }
391
392 $maintClass = 'PopulateContentTables';
393 require_once RUN_MAINTENANCE_IF_MAIN;