MediaWiki  1.33.0
recompressTracked.php
Go to the documentation of this file.
1 <?php
29 
31 require __DIR__ . '/../commandLine.inc';
32 
33 if ( count( $args ) < 1 ) {
34  echo "Usage: php recompressTracked.php [options] <cluster> [... <cluster>...]
35 Moves blobs indexed by trackBlobs.php to a specified list of destination clusters,
36 and recompresses them in the process. Restartable.
37 
38 Options:
39  --procs <procs> Set the number of child processes (default 1)
40  --copy-only Copy only, do not update the text table. Restart
41  without this option to complete.
42  --debug-log <file> Log debugging data to the specified file
43  --info-log <file> Log progress messages to the specified file
44  --critical-log <file> Log error messages to the specified file
45 ";
46  exit( 1 );
47 }
48 
50 $job->execute();
51 
59  public $destClusters;
60  public $batchSize = 1000;
61  public $orphanBatchSize = 1000;
62  public $reportingInterval = 10;
63  public $numProcs = 1;
64  public $numBatches = 0;
67  public $copyOnly = false;
68  public $isChild = false;
69  public $replicaId = false;
70  public $noCount = false;
72  public $store;
73 
74  private static $optionsWithArgs = [
75  'procs',
76  'replica-id',
77  'debug-log',
78  'info-log',
79  'critical-log'
80  ];
81 
82  private static $cmdLineOptionMap = [
83  'no-count' => 'noCount',
84  'procs' => 'numProcs',
85  'copy-only' => 'copyOnly',
86  'child' => 'isChild',
87  'replica-id' => 'replicaId',
88  'debug-log' => 'debugLog',
89  'info-log' => 'infoLog',
90  'critical-log' => 'criticalLog',
91  ];
92 
93  static function getOptionsWithArgs() {
95  }
96 
97  static function newFromCommandLine( $args, $options ) {
98  $jobOptions = [ 'destClusters' => $args ];
99  foreach ( self::$cmdLineOptionMap as $cmdOption => $classOption ) {
100  if ( isset( $options[$cmdOption] ) ) {
101  $jobOptions[$classOption] = $options[$cmdOption];
102  }
103  }
104 
105  return new self( $jobOptions );
106  }
107 
108  function __construct( $options ) {
109  foreach ( $options as $name => $value ) {
110  $this->$name = $value;
111  }
112  $this->store = new ExternalStoreDB;
113  if ( !$this->isChild ) {
114  $GLOBALS['wgDebugLogPrefix'] = "RCT M: ";
115  } elseif ( $this->replicaId !== false ) {
116  $GLOBALS['wgDebugLogPrefix'] = "RCT {$this->replicaId}: ";
117  }
118  $this->pageBlobClass = function_exists( 'xdiff_string_bdiff' ) ?
120  $this->orphanBlobClass = ConcatenatedGzipHistoryBlob::class;
121  }
122 
123  function debug( $msg ) {
124  wfDebug( "$msg\n" );
125  if ( $this->debugLog ) {
126  $this->logToFile( $msg, $this->debugLog );
127  }
128  }
129 
130  function info( $msg ) {
131  echo "$msg\n";
132  if ( $this->infoLog ) {
133  $this->logToFile( $msg, $this->infoLog );
134  }
135  }
136 
137  function critical( $msg ) {
138  echo "$msg\n";
139  if ( $this->criticalLog ) {
140  $this->logToFile( $msg, $this->criticalLog );
141  }
142  }
143 
144  function logToFile( $msg, $file ) {
145  $header = '[' . date( 'd\TH:i:s' ) . '] ' . wfHostname() . ' ' . posix_getpid();
146  if ( $this->replicaId !== false ) {
147  $header .= "({$this->replicaId})";
148  }
149  $header .= ' ' . wfWikiID();
150  LegacyLogger::emit( sprintf( "%-50s %s\n", $header, $msg ), $file );
151  }
152 
158  function syncDBs() {
159  $dbw = wfGetDB( DB_MASTER );
160  $dbr = wfGetDB( DB_REPLICA );
161  $pos = $dbw->getMasterPos();
162  $dbr->masterPosWait( $pos, 100000 );
163  }
164 
168  function execute() {
169  if ( $this->isChild ) {
170  $this->executeChild();
171  } else {
172  $this->executeParent();
173  }
174  }
175 
179  function executeParent() {
180  if ( !$this->checkTrackingTable() ) {
181  return;
182  }
183 
184  $this->syncDBs();
185  $this->startReplicaProcs();
186  $this->doAllPages();
187  $this->doAllOrphans();
188  $this->killReplicaProcs();
189  }
190 
195  function checkTrackingTable() {
196  $dbr = wfGetDB( DB_REPLICA );
197  if ( !$dbr->tableExists( 'blob_tracking' ) ) {
198  $this->critical( "Error: blob_tracking table does not exist" );
199 
200  return false;
201  }
202  $row = $dbr->selectRow( 'blob_tracking', '*', '', __METHOD__ );
203  if ( !$row ) {
204  $this->info( "Warning: blob_tracking table contains no rows, skipping this wiki." );
205 
206  return false;
207  }
208 
209  return true;
210  }
211 
218  function startReplicaProcs() {
219  $cmd = 'php ' . Shell::escape( __FILE__ );
220  foreach ( self::$cmdLineOptionMap as $cmdOption => $classOption ) {
221  if ( $cmdOption == 'replica-id' ) {
222  continue;
223  } elseif ( in_array( $cmdOption, self::$optionsWithArgs ) && isset( $this->$classOption ) ) {
224  $cmd .= " --$cmdOption " . Shell::escape( $this->$classOption );
225  } elseif ( $this->$classOption ) {
226  $cmd .= " --$cmdOption";
227  }
228  }
229  $cmd .= ' --child' .
230  ' --wiki ' . Shell::escape( wfWikiID() ) .
231  ' ' . Shell::escape( ...$this->destClusters );
232 
233  $this->replicaPipes = $this->replicaProcs = [];
234  for ( $i = 0; $i < $this->numProcs; $i++ ) {
235  $pipes = [];
236  $spec = [
237  [ 'pipe', 'r' ],
238  [ 'file', 'php://stdout', 'w' ],
239  [ 'file', 'php://stderr', 'w' ]
240  ];
241  Wikimedia\suppressWarnings();
242  $proc = proc_open( "$cmd --replica-id $i", $spec, $pipes );
243  Wikimedia\restoreWarnings();
244  if ( !$proc ) {
245  $this->critical( "Error opening replica DB process: $cmd" );
246  exit( 1 );
247  }
248  $this->replicaProcs[$i] = $proc;
249  $this->replicaPipes[$i] = $pipes[0];
250  }
251  $this->prevReplicaId = -1;
252  }
253 
257  function killReplicaProcs() {
258  $this->info( "Waiting for replica DB processes to finish..." );
259  for ( $i = 0; $i < $this->numProcs; $i++ ) {
260  $this->dispatchToReplica( $i, 'quit' );
261  }
262  for ( $i = 0; $i < $this->numProcs; $i++ ) {
263  $status = proc_close( $this->replicaProcs[$i] );
264  if ( $status ) {
265  $this->critical( "Warning: child #$i exited with status $status" );
266  }
267  }
268  $this->info( "Done." );
269  }
270 
275  function dispatch( /*...*/ ) {
276  $args = func_get_args();
277  $pipes = $this->replicaPipes;
278  $x = [];
279  $y = [];
280  $numPipes = stream_select( $x, $pipes, $y, 3600 );
281  if ( !$numPipes ) {
282  $this->critical( "Error waiting to write to replica DBs. Aborting" );
283  exit( 1 );
284  }
285  for ( $i = 0; $i < $this->numProcs; $i++ ) {
286  $replicaId = ( $i + $this->prevReplicaId + 1 ) % $this->numProcs;
287  if ( isset( $pipes[$replicaId] ) ) {
288  $this->prevReplicaId = $replicaId;
289  $this->dispatchToReplica( $replicaId, $args );
290 
291  return;
292  }
293  }
294  $this->critical( "Unreachable" );
295  exit( 1 );
296  }
297 
304  $args = (array)$args;
305  $cmd = implode( ' ', $args );
306  fwrite( $this->replicaPipes[$replicaId], "$cmd\n" );
307  }
308 
312  function doAllPages() {
313  $dbr = wfGetDB( DB_REPLICA );
314  $i = 0;
315  $startId = 0;
316  if ( $this->noCount ) {
317  $numPages = '[unknown]';
318  } else {
319  $numPages = $dbr->selectField( 'blob_tracking',
320  'COUNT(DISTINCT bt_page)',
321  # A condition is required so that this query uses the index
322  [ 'bt_moved' => 0 ],
323  __METHOD__
324  );
325  }
326  if ( $this->copyOnly ) {
327  $this->info( "Copying pages..." );
328  } else {
329  $this->info( "Moving pages..." );
330  }
331  while ( true ) {
332  $res = $dbr->select( 'blob_tracking',
333  [ 'bt_page' ],
334  [
335  'bt_moved' => 0,
336  'bt_page > ' . $dbr->addQuotes( $startId )
337  ],
338  __METHOD__,
339  [
340  'DISTINCT',
341  'ORDER BY' => 'bt_page',
342  'LIMIT' => $this->batchSize,
343  ]
344  );
345  if ( !$res->numRows() ) {
346  break;
347  }
348  foreach ( $res as $row ) {
349  $startId = $row->bt_page;
350  $this->dispatch( 'doPage', $row->bt_page );
351  $i++;
352  }
353  $this->report( 'pages', $i, $numPages );
354  }
355  $this->report( 'pages', $i, $numPages );
356  if ( $this->copyOnly ) {
357  $this->info( "All page copies queued." );
358  } else {
359  $this->info( "All page moves queued." );
360  }
361  }
362 
369  function report( $label, $current, $end ) {
370  $this->numBatches++;
371  if ( $current == $end || $this->numBatches >= $this->reportingInterval ) {
372  $this->numBatches = 0;
373  $this->info( "$label: $current / $end" );
374  MediaWikiServices::getInstance()->getDBLoadBalancerFactory()->waitForReplication();
375  }
376  }
377 
381  function doAllOrphans() {
382  $dbr = wfGetDB( DB_REPLICA );
383  $startId = 0;
384  $i = 0;
385  if ( $this->noCount ) {
386  $numOrphans = '[unknown]';
387  } else {
388  $numOrphans = $dbr->selectField( 'blob_tracking',
389  'COUNT(DISTINCT bt_text_id)',
390  [ 'bt_moved' => 0, 'bt_page' => 0 ],
391  __METHOD__ );
392  if ( !$numOrphans ) {
393  return;
394  }
395  }
396  if ( $this->copyOnly ) {
397  $this->info( "Copying orphans..." );
398  } else {
399  $this->info( "Moving orphans..." );
400  }
401 
402  while ( true ) {
403  $res = $dbr->select( 'blob_tracking',
404  [ 'bt_text_id' ],
405  [
406  'bt_moved' => 0,
407  'bt_page' => 0,
408  'bt_text_id > ' . $dbr->addQuotes( $startId )
409  ],
410  __METHOD__,
411  [
412  'DISTINCT',
413  'ORDER BY' => 'bt_text_id',
414  'LIMIT' => $this->batchSize
415  ]
416  );
417  if ( !$res->numRows() ) {
418  break;
419  }
420  $ids = [];
421  foreach ( $res as $row ) {
422  $startId = $row->bt_text_id;
423  $ids[] = $row->bt_text_id;
424  $i++;
425  }
426  // Need to send enough orphan IDs to the child at a time to fill a blob,
427  // so orphanBatchSize needs to be at least ~100.
428  // batchSize can be smaller or larger.
429  while ( count( $ids ) > $this->orphanBatchSize ) {
430  $args = array_slice( $ids, 0, $this->orphanBatchSize );
431  $ids = array_slice( $ids, $this->orphanBatchSize );
432  array_unshift( $args, 'doOrphanList' );
433  $this->dispatch( ...$args );
434  }
435  if ( count( $ids ) ) {
436  $args = $ids;
437  array_unshift( $args, 'doOrphanList' );
438  $this->dispatch( ...$args );
439  }
440 
441  $this->report( 'orphans', $i, $numOrphans );
442  }
443  $this->report( 'orphans', $i, $numOrphans );
444  $this->info( "All orphans queued." );
445  }
446 
450  function executeChild() {
451  $this->debug( 'starting' );
452  $this->syncDBs();
453 
454  while ( !feof( STDIN ) ) {
455  $line = rtrim( fgets( STDIN ) );
456  if ( $line == '' ) {
457  continue;
458  }
459  $this->debug( $line );
460  $args = explode( ' ', $line );
461  $cmd = array_shift( $args );
462  switch ( $cmd ) {
463  case 'doPage':
464  $this->doPage( intval( $args[0] ) );
465  break;
466  case 'doOrphanList':
467  $this->doOrphanList( array_map( 'intval', $args ) );
468  break;
469  case 'quit':
470  return;
471  }
472  MediaWikiServices::getInstance()->getDBLoadBalancerFactory()->waitForReplication();
473  }
474  }
475 
481  function doPage( $pageId ) {
482  $title = Title::newFromID( $pageId );
483  if ( $title ) {
484  $titleText = $title->getPrefixedText();
485  } else {
486  $titleText = '[deleted]';
487  }
488  $dbr = wfGetDB( DB_REPLICA );
489 
490  // Finish any incomplete transactions
491  if ( !$this->copyOnly ) {
492  $this->finishIncompleteMoves( [ 'bt_page' => $pageId ] );
493  $this->syncDBs();
494  }
495 
496  $startId = 0;
497  $trx = new CgzCopyTransaction( $this, $this->pageBlobClass );
498 
499  $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
500  while ( true ) {
501  $res = $dbr->select(
502  [ 'blob_tracking', 'text' ],
503  '*',
504  [
505  'bt_page' => $pageId,
506  'bt_text_id > ' . $dbr->addQuotes( $startId ),
507  'bt_moved' => 0,
508  'bt_new_url IS NULL',
509  'bt_text_id=old_id',
510  ],
511  __METHOD__,
512  [
513  'ORDER BY' => 'bt_text_id',
514  'LIMIT' => $this->batchSize
515  ]
516  );
517  if ( !$res->numRows() ) {
518  break;
519  }
520 
521  $lastTextId = 0;
522  foreach ( $res as $row ) {
523  $startId = $row->bt_text_id;
524  if ( $lastTextId == $row->bt_text_id ) {
525  // Duplicate (null edit)
526  continue;
527  }
528  $lastTextId = $row->bt_text_id;
529  // Load the text
530  $text = Revision::getRevisionText( $row );
531  if ( $text === false ) {
532  $this->critical( "Error loading {$row->bt_rev_id}/{$row->bt_text_id}" );
533  continue;
534  }
535 
536  // Queue it
537  if ( !$trx->addItem( $text, $row->bt_text_id ) ) {
538  $this->debug( "$titleText: committing blob with " . $trx->getSize() . " items" );
539  $trx->commit();
540  $trx = new CgzCopyTransaction( $this, $this->pageBlobClass );
541  $lbFactory->waitForReplication();
542  }
543  }
544  }
545 
546  $this->debug( "$titleText: committing blob with " . $trx->getSize() . " items" );
547  $trx->commit();
548  }
549 
563  function moveTextRow( $textId, $url ) {
564  if ( $this->copyOnly ) {
565  $this->critical( "Internal error: can't call moveTextRow() in --copy-only mode" );
566  exit( 1 );
567  }
568  $dbw = wfGetDB( DB_MASTER );
569  $dbw->begin( __METHOD__ );
570  $dbw->update( 'text',
571  [ // set
572  'old_text' => $url,
573  'old_flags' => 'external,utf-8',
574  ],
575  [ // where
576  'old_id' => $textId
577  ],
578  __METHOD__
579  );
580  $dbw->update( 'blob_tracking',
581  [ 'bt_moved' => 1 ],
582  [ 'bt_text_id' => $textId ],
583  __METHOD__
584  );
585  $dbw->commit( __METHOD__ );
586  }
587 
598  function finishIncompleteMoves( $conds ) {
599  $dbr = wfGetDB( DB_REPLICA );
600  $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
601 
602  $startId = 0;
603  $conds = array_merge( $conds, [
604  'bt_moved' => 0,
605  'bt_new_url IS NOT NULL'
606  ] );
607  while ( true ) {
608  $res = $dbr->select( 'blob_tracking',
609  '*',
610  array_merge( $conds, [ 'bt_text_id > ' . $dbr->addQuotes( $startId ) ] ),
611  __METHOD__,
612  [
613  'ORDER BY' => 'bt_text_id',
614  'LIMIT' => $this->batchSize,
615  ]
616  );
617  if ( !$res->numRows() ) {
618  break;
619  }
620  $this->debug( 'Incomplete: ' . $res->numRows() . ' rows' );
621  foreach ( $res as $row ) {
622  $startId = $row->bt_text_id;
623  $this->moveTextRow( $row->bt_text_id, $row->bt_new_url );
624  if ( $row->bt_text_id % 10 == 0 ) {
625  $lbFactory->waitForReplication();
626  }
627  }
628  }
629  }
630 
635  function getTargetCluster() {
636  $cluster = next( $this->destClusters );
637  if ( $cluster === false ) {
638  $cluster = reset( $this->destClusters );
639  }
640 
641  return $cluster;
642  }
643 
649  function getExtDB( $cluster ) {
650  $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
651  $lb = $lbFactory->getExternalLB( $cluster );
652 
653  return $lb->getConnection( DB_MASTER );
654  }
655 
661  function doOrphanList( $textIds ) {
662  // Finish incomplete moves
663  if ( !$this->copyOnly ) {
664  $this->finishIncompleteMoves( [ 'bt_text_id' => $textIds ] );
665  $this->syncDBs();
666  }
667 
668  $trx = new CgzCopyTransaction( $this, $this->orphanBlobClass );
669 
670  $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
671  $res = wfGetDB( DB_REPLICA )->select(
672  [ 'text', 'blob_tracking' ],
673  [ 'old_id', 'old_text', 'old_flags' ],
674  [
675  'old_id' => $textIds,
676  'bt_text_id=old_id',
677  'bt_moved' => 0,
678  ],
679  __METHOD__,
680  [ 'DISTINCT' ]
681  );
682 
683  foreach ( $res as $row ) {
684  $text = Revision::getRevisionText( $row );
685  if ( $text === false ) {
686  $this->critical( "Error: cannot load revision text for old_id={$row->old_id}" );
687  continue;
688  }
689 
690  if ( !$trx->addItem( $text, $row->old_id ) ) {
691  $this->debug( "[orphan]: committing blob with " . $trx->getSize() . " rows" );
692  $trx->commit();
693  $trx = new CgzCopyTransaction( $this, $this->orphanBlobClass );
694  $lbFactory->waitForReplication();
695  }
696  }
697  $this->debug( "[orphan]: committing blob with " . $trx->getSize() . " rows" );
698  $trx->commit();
699  }
700 }
701 
707  public $parent;
708  public $blobClass;
710  public $cgz;
711  public $referrers;
712 
719  $this->blobClass = $blobClass;
720  $this->cgz = false;
721  $this->texts = [];
722  $this->parent = $parent;
723  }
724 
732  function addItem( $text, $textId ) {
733  if ( !$this->cgz ) {
734  $class = $this->blobClass;
735  $this->cgz = new $class;
736  }
737  $hash = $this->cgz->addItem( $text );
738  $this->referrers[$textId] = $hash;
739  $this->texts[$textId] = $text;
740 
741  return $this->cgz->isHappy();
742  }
743 
744  function getSize() {
745  return count( $this->texts );
746  }
747 
751  function recompress() {
752  $class = $this->blobClass;
753  $this->cgz = new $class;
754  $this->referrers = [];
755  foreach ( $this->texts as $textId => $text ) {
756  $hash = $this->cgz->addItem( $text );
757  $this->referrers[$textId] = $hash;
758  }
759  }
760 
766  function commit() {
767  $originalCount = count( $this->texts );
768  if ( !$originalCount ) {
769  return;
770  }
771 
772  /* Check to see if the target text_ids have been moved already.
773  *
774  * We originally read from the replica DB, so this can happen when a single
775  * text_id is shared between multiple pages. It's rare, but possible
776  * if a delete/move/undelete cycle splits up a null edit.
777  *
778  * We do a locking read to prevent closer-run race conditions.
779  */
780  $dbw = wfGetDB( DB_MASTER );
781  $dbw->begin( __METHOD__ );
782  $res = $dbw->select( 'blob_tracking',
783  [ 'bt_text_id', 'bt_moved' ],
784  [ 'bt_text_id' => array_keys( $this->referrers ) ],
785  __METHOD__, [ 'FOR UPDATE' ] );
786  $dirty = false;
787  foreach ( $res as $row ) {
788  if ( $row->bt_moved ) {
789  # This row has already been moved, remove it
790  $this->parent->debug( "TRX: conflict detected in old_id={$row->bt_text_id}" );
791  unset( $this->texts[$row->bt_text_id] );
792  $dirty = true;
793  }
794  }
795 
796  // Recompress the blob if necessary
797  if ( $dirty ) {
798  if ( !count( $this->texts ) ) {
799  // All have been moved already
800  if ( $originalCount > 1 ) {
801  // This is suspcious, make noise
802  $this->parent->critical(
803  "Warning: concurrent operation detected, are there two conflicting " .
804  "processes running, doing the same job?" );
805  }
806 
807  return;
808  }
809  $this->recompress();
810  }
811 
812  // Insert the data into the destination cluster
813  $targetCluster = $this->parent->getTargetCluster();
814  $store = $this->parent->store;
815  $targetDB = $store->getMaster( $targetCluster );
816  $targetDB->clearFlag( DBO_TRX ); // we manage the transactions
817  $targetDB->begin( __METHOD__ );
818  $baseUrl = $this->parent->store->store( $targetCluster, serialize( $this->cgz ) );
819 
820  // Write the new URLs to the blob_tracking table
821  foreach ( $this->referrers as $textId => $hash ) {
822  $url = $baseUrl . '/' . $hash;
823  $dbw->update( 'blob_tracking',
824  [ 'bt_new_url' => $url ],
825  [
826  'bt_text_id' => $textId,
827  'bt_moved' => 0, # Check for concurrent conflicting update
828  ],
829  __METHOD__
830  );
831  }
832 
833  $targetDB->commit( __METHOD__ );
834  // Critical section here: interruption at this point causes blob duplication
835  // Reversing the order of the commits would cause data loss instead
836  $dbw->commit( __METHOD__ );
837 
838  // Write the new URLs to the text table and set the moved flag
839  if ( !$this->parent->copyOnly ) {
840  foreach ( $this->referrers as $textId => $hash ) {
841  $url = $baseUrl . '/' . $hash;
842  $this->parent->moveTextRow( $textId, $url );
843  }
844  }
845  }
846 }
RecompressTracked\$cmdLineOptionMap
static $cmdLineOptionMap
Definition: recompressTracked.php:82
$status
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. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header '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:1266
MediaWiki\Shell\Shell
Executes shell commands.
Definition: Shell.php:44
$file
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Definition: router.php:42
query
For a write query
Definition: database.txt:26
RecompressTracked\info
info( $msg)
Definition: recompressTracked.php:130
RecompressTracked
Maintenance script that moves blobs indexed by trackBlobs.php to a specified list of destination clus...
Definition: recompressTracked.php:58
ExternalStoreDB
DB accessible external objects.
Definition: ExternalStoreDB.php:38
RecompressTracked\logToFile
logToFile( $msg, $file)
Definition: recompressTracked.php:144
CgzCopyTransaction\addItem
addItem( $text, $textId)
Add text.
Definition: recompressTracked.php:732
RecompressTracked\$copyOnly
$copyOnly
Definition: recompressTracked.php:67
captcha-old.count
count
Definition: captcha-old.py:249
ConcatenatedGzipHistoryBlob
Concatenated gzip (CGZ) storage Improves compression ratio by concatenating like objects before gzipp...
Definition: ConcatenatedGzipHistoryBlob.php:27
RecompressTracked\$optionsWithArgs
static $optionsWithArgs
Definition: recompressTracked.php:74
RecompressTracked\$debugLog
$debugLog
Definition: recompressTracked.php:71
RecompressTracked\getTargetCluster
getTargetCluster()
Returns the name of the next target cluster.
Definition: recompressTracked.php:635
RecompressTracked\debug
debug( $msg)
Definition: recompressTracked.php:123
wfHostname
wfHostname()
Fetch server name for use in error reporting etc.
Definition: GlobalFunctions.php:1352
RecompressTracked\$isChild
$isChild
Definition: recompressTracked.php:68
Revision\getRevisionText
static getRevisionText( $row, $prefix='old_', $wiki=false)
Get revision text associated with an old or archive row.
Definition: Revision.php:1048
$res
$res
Definition: database.txt:21
so
c Accompany it with the information you received as to the offer to distribute corresponding source complete source code means all the source code for all modules it plus any associated interface definition plus the scripts used to control compilation and installation of the executable as a special the source code distributed need not include anything that is normally and so on of the operating system on which the executable unless that component itself accompanies the executable If distribution of executable or object code is made by offering access to copy from a designated then offering equivalent access to copy the source code from the same place counts as distribution of the source even though third parties are not compelled to copy the source along with the object code You may not or distribute the Program except as expressly provided under this License Any attempt otherwise to sublicense or distribute the Program is and will automatically terminate your rights under this License parties who have received or from you under this License will not have their licenses terminated so long as such parties remain in full compliance You are not required to accept this since you have not signed it nothing else grants you permission to modify or distribute the Program or its derivative works These actions are prohibited by law if you do not accept this License by modifying or distributing the you indicate your acceptance of this License to do so
Definition: COPYING.txt:185
RecompressTracked\$replicaProcs
$replicaProcs
Definition: recompressTracked.php:66
CgzCopyTransaction\recompress
recompress()
Recompress text after some aberrant modification.
Definition: recompressTracked.php:751
serialize
serialize()
Definition: ApiMessageTrait.php:134
is
This document provides an overview of the usage of PageUpdater and that is
Definition: pageupdater.txt:3
RecompressTracked\getExtDB
getExtDB( $cluster)
Gets a DB master connection for the given external cluster name.
Definition: recompressTracked.php:649
RecompressTracked\executeParent
executeParent()
Execute the parent process.
Definition: recompressTracked.php:179
DBO_TRX
const DBO_TRX
Definition: defines.php:12
php
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
Definition: injection.txt:35
CgzCopyTransaction\getSize
getSize()
Definition: recompressTracked.php:744
Wikimedia\Rdbms\IDatabase
Basic database interface for live and lazy-loaded relation database handles.
Definition: IDatabase.php:38
RecompressTracked\$replicaId
$replicaId
Definition: recompressTracked.php:69
$dbr
$dbr
Definition: testCompression.php:50
RecompressTracked\$destClusters
$destClusters
Definition: recompressTracked.php:59
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:925
RecompressTracked\$orphanBlobClass
$orphanBlobClass
Definition: recompressTracked.php:65
RecompressTracked\$pageBlobClass
$pageBlobClass
Definition: recompressTracked.php:65
RecompressTracked\$prevReplicaId
$prevReplicaId
Definition: recompressTracked.php:66
RecompressTracked\finishIncompleteMoves
finishIncompleteMoves( $conds)
Moves are done in two phases: bt_new_url and then bt_moved.
Definition: recompressTracked.php:598
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2636
RecompressTracked\$reportingInterval
$reportingInterval
Definition: recompressTracked.php:62
RecompressTracked\critical
critical( $msg)
Definition: recompressTracked.php:137
CgzCopyTransaction\commit
commit()
Commit the blob.
Definition: recompressTracked.php:766
CgzCopyTransaction\$parent
RecompressTracked $parent
Definition: recompressTracked.php:707
RecompressTracked\$criticalLog
$criticalLog
Definition: recompressTracked.php:71
RecompressTracked\killReplicaProcs
killReplicaProcs()
Gracefully terminate the child processes.
Definition: recompressTracked.php:257
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
RecompressTracked\doPage
doPage( $pageId)
Move tracked text in a given page.
Definition: recompressTracked.php:481
RecompressTracked\$orphanBatchSize
$orphanBatchSize
Definition: recompressTracked.php:61
RecompressTracked\newFromCommandLine
static newFromCommandLine( $args, $options)
Definition: recompressTracked.php:97
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
DB_MASTER
const DB_MASTER
Definition: defines.php:26
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
wfDebug
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Definition: GlobalFunctions.php:949
RecompressTracked\$batchSize
$batchSize
Definition: recompressTracked.php:60
RecompressTracked\doAllOrphans
doAllOrphans()
Move all orphan text to the new clusters.
Definition: recompressTracked.php:381
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:271
CgzCopyTransaction\$referrers
$referrers
Definition: recompressTracked.php:711
$line
$line
Definition: cdb.php:59
RecompressTracked\$store
$store
Definition: recompressTracked.php:72
wfWikiID
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
Definition: GlobalFunctions.php:2602
CgzCopyTransaction\$blobClass
$blobClass
Definition: recompressTracked.php:708
$value
$value
Definition: styleTest.css.php:49
$header
$header
Definition: updateCredits.php:41
CgzCopyTransaction
Class to represent a recompression operation for a single CGZ blob.
Definition: recompressTracked.php:705
RecompressTracked\$replicaPipes
$replicaPipes
Definition: recompressTracked.php:66
RecompressTracked\report
report( $label, $current, $end)
Display a progress report.
Definition: recompressTracked.php:369
RecompressTracked\moveTextRow
moveTextRow( $textId, $url)
Atomic move operation.
Definition: recompressTracked.php:563
CgzCopyTransaction\__construct
__construct( $parent, $blobClass)
Create a transaction from a RecompressTracked object.
Definition: recompressTracked.php:718
$optionsWithArgs
$optionsWithArgs
Definition: recompressTracked.php:30
RecompressTracked\dispatchToReplica
dispatchToReplica( $replicaId, $args)
Dispatch a command to a specified replica DB.
Definition: recompressTracked.php:303
RecompressTracked\executeChild
executeChild()
Main entry point for worker processes.
Definition: recompressTracked.php:450
RecompressTracked\checkTrackingTable
checkTrackingTable()
Make sure the tracking table exists and isn't empty.
Definition: recompressTracked.php:195
$args
if( $line===false) $args
Definition: cdb.php:64
RecompressTracked\execute
execute()
Execute parent or child depending on the isChild option.
Definition: recompressTracked.php:168
$options
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:1985
$job
if(count( $args)< 1) $job
Definition: recompressTracked.php:49
as
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
Definition: distributors.txt:9
RecompressTracked\startReplicaProcs
startReplicaProcs()
Start the worker processes.
Definition: recompressTracked.php:218
RecompressTracked\$numProcs
$numProcs
Definition: recompressTracked.php:63
RecompressTracked\$numBatches
$numBatches
Definition: recompressTracked.php:64
RecompressTracked\$infoLog
$infoLog
Definition: recompressTracked.php:71
RecompressTracked\doAllPages
doAllPages()
Move all tracked pages to the new clusters.
Definition: recompressTracked.php:312
that
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global then executing the whole list after the page is displayed We don t do anything smart like collating updates to the same table or such because the list is almost always going to have just one item on if that
Definition: deferred.txt:11
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
RecompressTracked\dispatch
dispatch()
Dispatch a command to the next available replica DB.
Definition: recompressTracked.php:275
MediaWikiServices
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 MediaWikiServices
Definition: injection.txt:23
RecompressTracked\__construct
__construct( $options)
Definition: recompressTracked.php:108
RecompressTracked\syncDBs
syncDBs()
Wait until the selected replica DB has caught up to the master.
Definition: recompressTracked.php:158
Title\newFromID
static newFromID( $id, $flags=0)
Create a new Title from an article ID.
Definition: Title.php:457
RecompressTracked\$noCount
$noCount
Definition: recompressTracked.php:70
LegacyLogger
MediaWiki Logger LegacyLogger
Definition: logger.txt:54
CgzCopyTransaction\$cgz
ConcatenatedGzipHistoryBlob $cgz
Definition: recompressTracked.php:710
$GLOBALS
$GLOBALS['IP']
Definition: ComposerHookHandler.php:6
RecompressTracked\doOrphanList
doOrphanList( $textIds)
Move an orphan text_id to the new cluster.
Definition: recompressTracked.php:661
RecompressTracked\getOptionsWithArgs
static getOptionsWithArgs()
Definition: recompressTracked.php:93