MediaWiki REL1_31
recompressTracked.php
Go to the documentation of this file.
1<?php
27
29require __DIR__ . '/../commandLine.inc';
30
31if ( count( $args ) < 1 ) {
32 echo "Usage: php recompressTracked.php [options] <cluster> [... <cluster>...]
33Moves blobs indexed by trackBlobs.php to a specified list of destination clusters,
34and recompresses them in the process. Restartable.
35
36Options:
37 --procs <procs> Set the number of child processes (default 1)
38 --copy-only Copy only, do not update the text table. Restart
39 without this option to complete.
40 --debug-log <file> Log debugging data to the specified file
41 --info-log <file> Log progress messages to the specified file
42 --critical-log <file> Log error messages to the specified file
43";
44 exit( 1 );
45}
46
48$job->execute();
49
58 public $batchSize = 1000;
59 public $orphanBatchSize = 1000;
60 public $reportingInterval = 10;
61 public $numProcs = 1;
62 public $numBatches = 0;
65 public $copyOnly = false;
66 public $isChild = false;
67 public $replicaId = false;
68 public $noCount = false;
70 public $store;
71
72 private static $optionsWithArgs = [
73 'procs',
74 'replica-id',
75 'debug-log',
76 'info-log',
77 'critical-log'
78 ];
79
80 private static $cmdLineOptionMap = [
81 'no-count' => 'noCount',
82 'procs' => 'numProcs',
83 'copy-only' => 'copyOnly',
84 'child' => 'isChild',
85 'replica-id' => 'replicaId',
86 'debug-log' => 'debugLog',
87 'info-log' => 'infoLog',
88 'critical-log' => 'criticalLog',
89 ];
90
91 static function getOptionsWithArgs() {
93 }
94
95 static function newFromCommandLine( $args, $options ) {
96 $jobOptions = [ 'destClusters' => $args ];
97 foreach ( self::$cmdLineOptionMap as $cmdOption => $classOption ) {
98 if ( isset( $options[$cmdOption] ) ) {
99 $jobOptions[$classOption] = $options[$cmdOption];
100 }
101 }
102
103 return new self( $jobOptions );
104 }
105
106 function __construct( $options ) {
107 foreach ( $options as $name => $value ) {
108 $this->$name = $value;
109 }
110 $this->store = new ExternalStoreDB;
111 if ( !$this->isChild ) {
112 $GLOBALS['wgDebugLogPrefix'] = "RCT M: ";
113 } elseif ( $this->replicaId !== false ) {
114 $GLOBALS['wgDebugLogPrefix'] = "RCT {$this->replicaId}: ";
115 }
116 $this->pageBlobClass = function_exists( 'xdiff_string_bdiff' ) ?
117 DiffHistoryBlob::class : ConcatenatedGzipHistoryBlob::class;
118 $this->orphanBlobClass = ConcatenatedGzipHistoryBlob::class;
119 }
120
121 function debug( $msg ) {
122 wfDebug( "$msg\n" );
123 if ( $this->debugLog ) {
124 $this->logToFile( $msg, $this->debugLog );
125 }
126 }
127
128 function info( $msg ) {
129 echo "$msg\n";
130 if ( $this->infoLog ) {
131 $this->logToFile( $msg, $this->infoLog );
132 }
133 }
134
135 function critical( $msg ) {
136 echo "$msg\n";
137 if ( $this->criticalLog ) {
138 $this->logToFile( $msg, $this->criticalLog );
139 }
140 }
141
142 function logToFile( $msg, $file ) {
143 $header = '[' . date( 'd\TH:i:s' ) . '] ' . wfHostname() . ' ' . posix_getpid();
144 if ( $this->replicaId !== false ) {
145 $header .= "({$this->replicaId})";
146 }
147 $header .= ' ' . wfWikiID();
148 LegacyLogger::emit( sprintf( "%-50s %s\n", $header, $msg ), $file );
149 }
150
156 function syncDBs() {
157 $dbw = wfGetDB( DB_MASTER );
159 $pos = $dbw->getMasterPos();
160 $dbr->masterPosWait( $pos, 100000 );
161 }
162
166 function execute() {
167 if ( $this->isChild ) {
168 $this->executeChild();
169 } else {
170 $this->executeParent();
171 }
172 }
173
177 function executeParent() {
178 if ( !$this->checkTrackingTable() ) {
179 return;
180 }
181
182 $this->syncDBs();
183 $this->startReplicaProcs();
184 $this->doAllPages();
185 $this->doAllOrphans();
186 $this->killReplicaProcs();
187 }
188
195 if ( !$dbr->tableExists( 'blob_tracking' ) ) {
196 $this->critical( "Error: blob_tracking table does not exist" );
197
198 return false;
199 }
200 $row = $dbr->selectRow( 'blob_tracking', '*', '', __METHOD__ );
201 if ( !$row ) {
202 $this->info( "Warning: blob_tracking table contains no rows, skipping this wiki." );
203
204 return false;
205 }
206
207 return true;
208 }
209
216 function startReplicaProcs() {
217 $cmd = 'php ' . wfEscapeShellArg( __FILE__ );
218 foreach ( self::$cmdLineOptionMap as $cmdOption => $classOption ) {
219 if ( $cmdOption == 'replica-id' ) {
220 continue;
221 } elseif ( in_array( $cmdOption, self::$optionsWithArgs ) && isset( $this->$classOption ) ) {
222 $cmd .= " --$cmdOption " . wfEscapeShellArg( $this->$classOption );
223 } elseif ( $this->$classOption ) {
224 $cmd .= " --$cmdOption";
225 }
226 }
227 $cmd .= ' --child' .
228 ' --wiki ' . wfEscapeShellArg( wfWikiID() ) .
229 ' ' . call_user_func_array( 'wfEscapeShellArg', $this->destClusters );
230
231 $this->replicaPipes = $this->replicaProcs = [];
232 for ( $i = 0; $i < $this->numProcs; $i++ ) {
233 $pipes = [];
234 $spec = [
235 [ 'pipe', 'r' ],
236 [ 'file', 'php://stdout', 'w' ],
237 [ 'file', 'php://stderr', 'w' ]
238 ];
239 Wikimedia\suppressWarnings();
240 $proc = proc_open( "$cmd --replica-id $i", $spec, $pipes );
241 Wikimedia\restoreWarnings();
242 if ( !$proc ) {
243 $this->critical( "Error opening replica DB process: $cmd" );
244 exit( 1 );
245 }
246 $this->replicaProcs[$i] = $proc;
247 $this->replicaPipes[$i] = $pipes[0];
248 }
249 $this->prevReplicaId = -1;
250 }
251
255 function killReplicaProcs() {
256 $this->info( "Waiting for replica DB processes to finish..." );
257 for ( $i = 0; $i < $this->numProcs; $i++ ) {
258 $this->dispatchToReplica( $i, 'quit' );
259 }
260 for ( $i = 0; $i < $this->numProcs; $i++ ) {
261 $status = proc_close( $this->replicaProcs[$i] );
262 if ( $status ) {
263 $this->critical( "Warning: child #$i exited with status $status" );
264 }
265 }
266 $this->info( "Done." );
267 }
268
273 function dispatch( /*...*/ ) {
274 $args = func_get_args();
275 $pipes = $this->replicaPipes;
276 $numPipes = stream_select( $x = [], $pipes, $y = [], 3600 );
277 if ( !$numPipes ) {
278 $this->critical( "Error waiting to write to replica DBs. Aborting" );
279 exit( 1 );
280 }
281 for ( $i = 0; $i < $this->numProcs; $i++ ) {
282 $replicaId = ( $i + $this->prevReplicaId + 1 ) % $this->numProcs;
283 if ( isset( $pipes[$replicaId] ) ) {
284 $this->prevReplicaId = $replicaId;
285 $this->dispatchToReplica( $replicaId, $args );
286
287 return;
288 }
289 }
290 $this->critical( "Unreachable" );
291 exit( 1 );
292 }
293
300 $args = (array)$args;
301 $cmd = implode( ' ', $args );
302 fwrite( $this->replicaPipes[$replicaId], "$cmd\n" );
303 }
304
308 function doAllPages() {
310 $i = 0;
311 $startId = 0;
312 if ( $this->noCount ) {
313 $numPages = '[unknown]';
314 } else {
315 $numPages = $dbr->selectField( 'blob_tracking',
316 'COUNT(DISTINCT bt_page)',
317 # A condition is required so that this query uses the index
318 [ 'bt_moved' => 0 ],
319 __METHOD__
320 );
321 }
322 if ( $this->copyOnly ) {
323 $this->info( "Copying pages..." );
324 } else {
325 $this->info( "Moving pages..." );
326 }
327 while ( true ) {
328 $res = $dbr->select( 'blob_tracking',
329 [ 'bt_page' ],
330 [
331 'bt_moved' => 0,
332 'bt_page > ' . $dbr->addQuotes( $startId )
333 ],
334 __METHOD__,
335 [
336 'DISTINCT',
337 'ORDER BY' => 'bt_page',
338 'LIMIT' => $this->batchSize,
339 ]
340 );
341 if ( !$res->numRows() ) {
342 break;
343 }
344 foreach ( $res as $row ) {
345 $startId = $row->bt_page;
346 $this->dispatch( 'doPage', $row->bt_page );
347 $i++;
348 }
349 $this->report( 'pages', $i, $numPages );
350 }
351 $this->report( 'pages', $i, $numPages );
352 if ( $this->copyOnly ) {
353 $this->info( "All page copies queued." );
354 } else {
355 $this->info( "All page moves queued." );
356 }
357 }
358
365 function report( $label, $current, $end ) {
366 $this->numBatches++;
367 if ( $current == $end || $this->numBatches >= $this->reportingInterval ) {
368 $this->numBatches = 0;
369 $this->info( "$label: $current / $end" );
370 MediaWikiServices::getInstance()->getDBLoadBalancerFactory()->waitForReplication();
371 }
372 }
373
377 function doAllOrphans() {
379 $startId = 0;
380 $i = 0;
381 if ( $this->noCount ) {
382 $numOrphans = '[unknown]';
383 } else {
384 $numOrphans = $dbr->selectField( 'blob_tracking',
385 'COUNT(DISTINCT bt_text_id)',
386 [ 'bt_moved' => 0, 'bt_page' => 0 ],
387 __METHOD__ );
388 if ( !$numOrphans ) {
389 return;
390 }
391 }
392 if ( $this->copyOnly ) {
393 $this->info( "Copying orphans..." );
394 } else {
395 $this->info( "Moving orphans..." );
396 }
397
398 while ( true ) {
399 $res = $dbr->select( 'blob_tracking',
400 [ 'bt_text_id' ],
401 [
402 'bt_moved' => 0,
403 'bt_page' => 0,
404 'bt_text_id > ' . $dbr->addQuotes( $startId )
405 ],
406 __METHOD__,
407 [
408 'DISTINCT',
409 'ORDER BY' => 'bt_text_id',
410 'LIMIT' => $this->batchSize
411 ]
412 );
413 if ( !$res->numRows() ) {
414 break;
415 }
416 $ids = [];
417 foreach ( $res as $row ) {
418 $startId = $row->bt_text_id;
419 $ids[] = $row->bt_text_id;
420 $i++;
421 }
422 // Need to send enough orphan IDs to the child at a time to fill a blob,
423 // so orphanBatchSize needs to be at least ~100.
424 // batchSize can be smaller or larger.
425 while ( count( $ids ) > $this->orphanBatchSize ) {
426 $args = array_slice( $ids, 0, $this->orphanBatchSize );
427 $ids = array_slice( $ids, $this->orphanBatchSize );
428 array_unshift( $args, 'doOrphanList' );
429 call_user_func_array( [ $this, 'dispatch' ], $args );
430 }
431 if ( count( $ids ) ) {
432 $args = $ids;
433 array_unshift( $args, 'doOrphanList' );
434 call_user_func_array( [ $this, 'dispatch' ], $args );
435 }
436
437 $this->report( 'orphans', $i, $numOrphans );
438 }
439 $this->report( 'orphans', $i, $numOrphans );
440 $this->info( "All orphans queued." );
441 }
442
446 function executeChild() {
447 $this->debug( 'starting' );
448 $this->syncDBs();
449
450 while ( !feof( STDIN ) ) {
451 $line = rtrim( fgets( STDIN ) );
452 if ( $line == '' ) {
453 continue;
454 }
455 $this->debug( $line );
456 $args = explode( ' ', $line );
457 $cmd = array_shift( $args );
458 switch ( $cmd ) {
459 case 'doPage':
460 $this->doPage( intval( $args[0] ) );
461 break;
462 case 'doOrphanList':
463 $this->doOrphanList( array_map( 'intval', $args ) );
464 break;
465 case 'quit':
466 return;
467 }
468 MediaWikiServices::getInstance()->getDBLoadBalancerFactory()->waitForReplication();
469 }
470 }
471
477 function doPage( $pageId ) {
478 $title = Title::newFromID( $pageId );
479 if ( $title ) {
480 $titleText = $title->getPrefixedText();
481 } else {
482 $titleText = '[deleted]';
483 }
485
486 // Finish any incomplete transactions
487 if ( !$this->copyOnly ) {
488 $this->finishIncompleteMoves( [ 'bt_page' => $pageId ] );
489 $this->syncDBs();
490 }
491
492 $startId = 0;
493 $trx = new CgzCopyTransaction( $this, $this->pageBlobClass );
494
495 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
496 while ( true ) {
497 $res = $dbr->select(
498 [ 'blob_tracking', 'text' ],
499 '*',
500 [
501 'bt_page' => $pageId,
502 'bt_text_id > ' . $dbr->addQuotes( $startId ),
503 'bt_moved' => 0,
504 'bt_new_url IS NULL',
505 'bt_text_id=old_id',
506 ],
507 __METHOD__,
508 [
509 'ORDER BY' => 'bt_text_id',
510 'LIMIT' => $this->batchSize
511 ]
512 );
513 if ( !$res->numRows() ) {
514 break;
515 }
516
517 $lastTextId = 0;
518 foreach ( $res as $row ) {
519 $startId = $row->bt_text_id;
520 if ( $lastTextId == $row->bt_text_id ) {
521 // Duplicate (null edit)
522 continue;
523 }
524 $lastTextId = $row->bt_text_id;
525 // Load the text
526 $text = Revision::getRevisionText( $row );
527 if ( $text === false ) {
528 $this->critical( "Error loading {$row->bt_rev_id}/{$row->bt_text_id}" );
529 continue;
530 }
531
532 // Queue it
533 if ( !$trx->addItem( $text, $row->bt_text_id ) ) {
534 $this->debug( "$titleText: committing blob with " . $trx->getSize() . " items" );
535 $trx->commit();
536 $trx = new CgzCopyTransaction( $this, $this->pageBlobClass );
537 $lbFactory->waitForReplication();
538 }
539 }
540 }
541
542 $this->debug( "$titleText: committing blob with " . $trx->getSize() . " items" );
543 $trx->commit();
544 }
545
559 function moveTextRow( $textId, $url ) {
560 if ( $this->copyOnly ) {
561 $this->critical( "Internal error: can't call moveTextRow() in --copy-only mode" );
562 exit( 1 );
563 }
564 $dbw = wfGetDB( DB_MASTER );
565 $dbw->begin( __METHOD__ );
566 $dbw->update( 'text',
567 [ // set
568 'old_text' => $url,
569 'old_flags' => 'external,utf-8',
570 ],
571 [ // where
572 'old_id' => $textId
573 ],
574 __METHOD__
575 );
576 $dbw->update( 'blob_tracking',
577 [ 'bt_moved' => 1 ],
578 [ 'bt_text_id' => $textId ],
579 __METHOD__
580 );
581 $dbw->commit( __METHOD__ );
582 }
583
594 function finishIncompleteMoves( $conds ) {
596 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
597
598 $startId = 0;
599 $conds = array_merge( $conds, [
600 'bt_moved' => 0,
601 'bt_new_url IS NOT NULL'
602 ] );
603 while ( true ) {
604 $res = $dbr->select( 'blob_tracking',
605 '*',
606 array_merge( $conds, [ 'bt_text_id > ' . $dbr->addQuotes( $startId ) ] ),
607 __METHOD__,
608 [
609 'ORDER BY' => 'bt_text_id',
610 'LIMIT' => $this->batchSize,
611 ]
612 );
613 if ( !$res->numRows() ) {
614 break;
615 }
616 $this->debug( 'Incomplete: ' . $res->numRows() . ' rows' );
617 foreach ( $res as $row ) {
618 $startId = $row->bt_text_id;
619 $this->moveTextRow( $row->bt_text_id, $row->bt_new_url );
620 if ( $row->bt_text_id % 10 == 0 ) {
621 $lbFactory->waitForReplication();
622 }
623 }
624 }
625 }
626
631 function getTargetCluster() {
632 $cluster = next( $this->destClusters );
633 if ( $cluster === false ) {
634 $cluster = reset( $this->destClusters );
635 }
636
637 return $cluster;
638 }
639
645 function getExtDB( $cluster ) {
646 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
647 $lb = $lbFactory->getExternalLB( $cluster );
648
649 return $lb->getConnection( DB_MASTER );
650 }
651
657 function doOrphanList( $textIds ) {
658 // Finish incomplete moves
659 if ( !$this->copyOnly ) {
660 $this->finishIncompleteMoves( [ 'bt_text_id' => $textIds ] );
661 $this->syncDBs();
662 }
663
664 $trx = new CgzCopyTransaction( $this, $this->orphanBlobClass );
665
666 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
667 $res = wfGetDB( DB_REPLICA )->select(
668 [ 'text', 'blob_tracking' ],
669 [ 'old_id', 'old_text', 'old_flags' ],
670 [
671 'old_id' => $textIds,
672 'bt_text_id=old_id',
673 'bt_moved' => 0,
674 ],
675 __METHOD__,
676 [ 'DISTINCT' ]
677 );
678
679 foreach ( $res as $row ) {
680 $text = Revision::getRevisionText( $row );
681 if ( $text === false ) {
682 $this->critical( "Error: cannot load revision text for old_id={$row->old_id}" );
683 continue;
684 }
685
686 if ( !$trx->addItem( $text, $row->old_id ) ) {
687 $this->debug( "[orphan]: committing blob with " . $trx->getSize() . " rows" );
688 $trx->commit();
689 $trx = new CgzCopyTransaction( $this, $this->orphanBlobClass );
690 $lbFactory->waitForReplication();
691 }
692 }
693 $this->debug( "[orphan]: committing blob with " . $trx->getSize() . " rows" );
694 $trx->commit();
695 }
696}
697
703 public $parent;
706 public $cgz;
708
715 $this->blobClass = $blobClass;
716 $this->cgz = false;
717 $this->texts = [];
718 $this->parent = $parent;
719 }
720
728 function addItem( $text, $textId ) {
729 if ( !$this->cgz ) {
730 $class = $this->blobClass;
731 $this->cgz = new $class;
732 }
733 $hash = $this->cgz->addItem( $text );
734 $this->referrers[$textId] = $hash;
735 $this->texts[$textId] = $text;
736
737 return $this->cgz->isHappy();
738 }
739
740 function getSize() {
741 return count( $this->texts );
742 }
743
747 function recompress() {
748 $class = $this->blobClass;
749 $this->cgz = new $class;
750 $this->referrers = [];
751 foreach ( $this->texts as $textId => $text ) {
752 $hash = $this->cgz->addItem( $text );
753 $this->referrers[$textId] = $hash;
754 }
755 }
756
762 function commit() {
763 $originalCount = count( $this->texts );
764 if ( !$originalCount ) {
765 return;
766 }
767
768 /* Check to see if the target text_ids have been moved already.
769 *
770 * We originally read from the replica DB, so this can happen when a single
771 * text_id is shared between multiple pages. It's rare, but possible
772 * if a delete/move/undelete cycle splits up a null edit.
773 *
774 * We do a locking read to prevent closer-run race conditions.
775 */
776 $dbw = wfGetDB( DB_MASTER );
777 $dbw->begin( __METHOD__ );
778 $res = $dbw->select( 'blob_tracking',
779 [ 'bt_text_id', 'bt_moved' ],
780 [ 'bt_text_id' => array_keys( $this->referrers ) ],
781 __METHOD__, [ 'FOR UPDATE' ] );
782 $dirty = false;
783 foreach ( $res as $row ) {
784 if ( $row->bt_moved ) {
785 # This row has already been moved, remove it
786 $this->parent->debug( "TRX: conflict detected in old_id={$row->bt_text_id}" );
787 unset( $this->texts[$row->bt_text_id] );
788 $dirty = true;
789 }
790 }
791
792 // Recompress the blob if necessary
793 if ( $dirty ) {
794 if ( !count( $this->texts ) ) {
795 // All have been moved already
796 if ( $originalCount > 1 ) {
797 // This is suspcious, make noise
798 $this->parent->critical(
799 "Warning: concurrent operation detected, are there two conflicting " .
800 "processes running, doing the same job?" );
801 }
802
803 return;
804 }
805 $this->recompress();
806 }
807
808 // Insert the data into the destination cluster
809 $targetCluster = $this->parent->getTargetCluster();
810 $store = $this->parent->store;
811 $targetDB = $store->getMaster( $targetCluster );
812 $targetDB->clearFlag( DBO_TRX ); // we manage the transactions
813 $targetDB->begin( __METHOD__ );
814 $baseUrl = $this->parent->store->store( $targetCluster, serialize( $this->cgz ) );
815
816 // Write the new URLs to the blob_tracking table
817 foreach ( $this->referrers as $textId => $hash ) {
818 $url = $baseUrl . '/' . $hash;
819 $dbw->update( 'blob_tracking',
820 [ 'bt_new_url' => $url ],
821 [
822 'bt_text_id' => $textId,
823 'bt_moved' => 0, # Check for concurrent conflicting update
824 ],
825 __METHOD__
826 );
827 }
828
829 $targetDB->commit( __METHOD__ );
830 // Critical section here: interruption at this point causes blob duplication
831 // Reversing the order of the commits would cause data loss instead
832 $dbw->commit( __METHOD__ );
833
834 // Write the new URLs to the text table and set the moved flag
835 if ( !$this->parent->copyOnly ) {
836 foreach ( $this->referrers as $textId => $hash ) {
837 $url = $baseUrl . '/' . $hash;
838 $this->parent->moveTextRow( $textId, $url );
839 }
840 }
841 }
842}
serialize()
$GLOBALS['IP']
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfHostname()
Fetch server name for use in error reporting etc.
wfEscapeShellArg()
Version of escapeshellarg() that works better on Windows.
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
$line
Definition cdb.php:59
if( $line===false) $args
Definition cdb.php:64
Class to represent a recompression operation for a single CGZ blob.
ConcatenatedGzipHistoryBlob $cgz
RecompressTracked $parent
addItem( $text, $textId)
Add text.
commit()
Commit the blob.
recompress()
Recompress text after some aberrant modification.
__construct( $parent, $blobClass)
Create a transaction from a RecompressTracked object.
Concatenated gzip (CGZ) storage Improves compression ratio by concatenating like objects before gzipp...
DB accessible external objects.
PSR-3 logger that mimics the historic implementation of MediaWiki's wfErrorLog logging implementation...
MediaWikiServices is the service locator for the application scope of MediaWiki.
Maintenance script that moves blobs indexed by trackBlobs.php to a specified list of destination clus...
executeChild()
Main entry point for worker processes.
moveTextRow( $textId, $url)
Atomic move operation.
dispatch()
Dispatch a command to the next available replica DB.
report( $label, $current, $end)
Display a progress report.
execute()
Execute parent or child depending on the isChild option.
getExtDB( $cluster)
Gets a DB master connection for the given external cluster name.
doOrphanList( $textIds)
Move an orphan text_id to the new cluster.
doAllOrphans()
Move all orphan text to the new clusters.
static newFromCommandLine( $args, $options)
finishIncompleteMoves( $conds)
Moves are done in two phases: bt_new_url and then bt_moved.
doPage( $pageId)
Move tracked text in a given page.
syncDBs()
Wait until the selected replica DB has caught up to the master.
startReplicaProcs()
Start the worker processes.
getTargetCluster()
Returns the name of the next target cluster.
executeParent()
Execute the parent process.
doAllPages()
Move all tracked pages to the new clusters.
killReplicaProcs()
Gracefully terminate the child processes.
dispatchToReplica( $replicaId, $args)
Dispatch a command to a specified replica DB.
checkTrackingTable()
Make sure the tracking table exists and isn't empty.
$res
Definition database.txt:21
the array() calling protocol came about after MediaWiki 1.4rc1.
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action or null $user:User who performed the tagging when the tagging is subsequent to the action or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy: boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
Definition hooks.txt:1051
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition hooks.txt:2001
const DB_REPLICA
Definition defines.php:25
const DB_MASTER
Definition defines.php:29
const DBO_TRX
Definition defines.php:12
$optionsWithArgs
if(count( $args)< 1) $job
$header