MediaWiki master
purgeModuleDeps.php
Go to the documentation of this file.
1<?php
23
24// @codeCoverageIgnoreStart
25require_once __DIR__ . '/Maintenance.php';
26// @codeCoverageIgnoreEnd
27
34 public function __construct() {
35 parent::__construct();
36 $this->addDescription(
37 'Remove all cache entries for ResourceLoader modules from the database' );
38 $this->setBatchSize( 500 );
39 }
40
41 public function execute() {
42 $this->output( "Cleaning up module_deps table...\n" );
43
44 $dbw = $this->getPrimaryDB();
45 $res = $dbw->newSelectQueryBuilder()
46 ->select( [ 'md_module', 'md_skin' ] )
47 ->from( 'module_deps' )
48 ->caller( __METHOD__ )->fetchResultSet();
49 $rows = iterator_to_array( $res, false );
50
51 $modDeps = $dbw->tableName( 'module_deps' );
52 $i = 1;
53 foreach ( array_chunk( $rows, $this->getBatchSize() ) as $chunk ) {
54 // WHERE ( mod=A AND skin=A ) OR ( mod=A AND skin=B) ..
55 $conds = array_map( static function ( stdClass $row ) use ( $dbw ) {
56 return $dbw->makeList( (array)$row, IDatabase::LIST_AND );
57 }, $chunk );
58 $conds = $dbw->makeList( $conds, IDatabase::LIST_OR );
59
60 $this->beginTransaction( $dbw, __METHOD__ );
61 $dbw->query( "DELETE FROM $modDeps WHERE $conds", __METHOD__ );
62 $numRows = $dbw->affectedRows();
63 $this->output( "Batch $i: $numRows rows\n" );
64 $this->commitTransaction( $dbw, __METHOD__ );
65
66 $i++;
67 }
68
69 $this->output( "Done\n" );
70 }
71}
72
73// @codeCoverageIgnoreStart
74$maintClass = PurgeModuleDeps::class;
75require_once RUN_MAINTENANCE_IF_MAIN;
76// @codeCoverageIgnoreEnd
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
beginTransaction(IDatabase $dbw, $fname)
Begin a transaction on a DB.
commitTransaction(IDatabase $dbw, $fname)
Commit the transaction on a DB handle and wait for replica DBs to catch up.
output( $out, $channel=null)
Throw some output to the user.
getBatchSize()
Returns batch size.
addDescription( $text)
Set the description text.
setBatchSize( $s=0)
Maintenance script to purge the module_deps database cache table for ResourceLoader.
execute()
Do the actual work.
__construct()
Default constructor.
Interface to a relational database.
Definition IDatabase.php:48
$maintClass