1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
|
<?php
/**
* Rebuild the localisation cache. Useful if you disabled automatic updates
* using $wgLocalisationCacheConf['manualRecache'] = true;
*
* Usage:
* php rebuildLocalisationCache.php [--force] [--threads=N]
*
* Use --force to rebuild all files, even the ones that are not out of date.
* Use --threads=N to fork more threads.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
* @ingroup Maintenance
*/
use MediaWiki\Config\ServiceOptions;
use MediaWiki\Languages\LanguageNameUtils;
use MediaWiki\Logger\LoggerFactory;
use MediaWiki\MainConfigNames;
use MediaWiki\ResourceLoader\MessageBlobStore;
use MediaWiki\Settings\SettingsBuilder;
// @codeCoverageIgnoreStart
require_once __DIR__ . '/Maintenance.php';
// @codeCoverageIgnoreEnd
/**
* Maintenance script to rebuild the localisation cache.
*
* @ingroup Maintenance
*/
class RebuildLocalisationCache extends Maintenance {
public function __construct() {
parent::__construct();
$this->addDescription( 'Rebuild the localisation cache' );
$this->addOption( 'dry-run', 'Determine what languages need to be rebuilt without changing anything' );
$this->addOption( 'force', 'Rebuild all files, even ones not out of date' );
$this->addOption( 'threads', 'Fork more than one thread', false, true );
$this->addOption( 'outdir', 'Override the output directory (normally $wgCacheDirectory)',
false, true );
$this->addOption( 'lang', 'Only rebuild these languages, comma separated.',
false, true );
$this->addOption(
'store-class',
'Override the LC store class (normally $wgLocalisationCacheConf[\'storeClass\'])',
false,
true
);
$this->addOption(
'no-database',
'EXPERIMENTAL: Disable the database backend. Setting this option will result in an error ' .
'if you have extensions or use site configuration that need the database. This is an ' .
'experimental feature to allow offline building of the localisation cache. Known limitations:' .
"\n" .
'* Incompatible with LCStoreDB, which always requires a database. ' . "\n" .
'* The message purge may require a database. See --skip-message-purge.'
);
// T237148: The Gadget extension (bundled with MediaWiki by default) requires a database`
// connection to register its modules for MessageBlobStore.
$this->addOption(
'skip-message-purge',
'Skip purging of MessageBlobStore. The purge operation may require a database, depending ' .
'on the configuration and extensions on this wiki. If skipping the purge now, you need to ' .
'run purgeMessageBlobStore.php shortly after deployment.'
);
$this->addOption(
'no-progress',
"Don't print a message for each rebuilt language file. Use this instead of " .
"--quiet to get a brief summary of the operation."
);
}
public function finalSetup( SettingsBuilder $settingsBuilder ) {
# This script needs to be run to build the initial l10n cache. But if
# LanguageCode is not 'en', it won't be able to run because there is
# no l10n cache. Break the cycle by forcing the LanguageCode setting to 'en'.
$settingsBuilder->putConfigValue( MainConfigNames::LanguageCode, 'en' );
parent::finalSetup( $settingsBuilder );
}
public function execute() {
$force = $this->hasOption( 'force' );
$threads = $this->getOption( 'threads', 1 );
if ( $threads < 1 || $threads != intval( $threads ) ) {
$this->output( "Invalid thread count specified; running single-threaded.\n" );
$threads = 1;
}
if ( $threads > 1 && wfIsWindows() ) {
$this->output( "Threaded rebuild is not supported on Windows; running single-threaded.\n" );
$threads = 1;
}
if ( $threads > 1 && ( !extension_loaded( 'sockets' ) || !function_exists( 'pcntl_fork' ) ) ) {
$this->output( "Threaded rebuild requires ext-pcntl and ext-sockets; running single-threaded.\n" );
$threads = 1;
}
$conf = $this->getConfig()->get( MainConfigNames::LocalisationCacheConf );
// Allow fallbacks to create CDB files
$conf['manualRecache'] = false;
$conf['forceRecache'] = $force || !empty( $conf['forceRecache'] );
if ( $this->hasOption( 'outdir' ) ) {
$conf['storeDirectory'] = $this->getOption( 'outdir' );
}
if ( $this->hasOption( 'store-class' ) ) {
$conf['storeClass'] = $this->getOption( 'store-class' );
}
// XXX Copy-pasted from ServiceWiring.php. Do we need a factory for this one caller?
$services = $this->getServiceContainer();
$lc = new LocalisationCacheBulkLoad(
new ServiceOptions(
LocalisationCache::CONSTRUCTOR_OPTIONS,
$conf,
$services->getMainConfig()
),
LocalisationCache::getStoreFromConf( $conf, $this->getConfig()->get( MainConfigNames::CacheDirectory ) ),
LoggerFactory::getInstance( 'localisation' ),
$this->hasOption( 'skip-message-purge' ) ? [] :
[ static function () use ( $services ) {
MessageBlobStore::clearGlobalCacheEntry( $services->getMainWANObjectCache() );
} ],
$services->getLanguageNameUtils(),
$services->getHookContainer()
);
$allCodes = array_keys( $services
->getLanguageNameUtils()
->getLanguageNames( LanguageNameUtils::AUTONYMS, LanguageNameUtils::SUPPORTED ) );
if ( $this->hasOption( 'lang' ) ) {
# Validate requested languages
$codes = array_intersect( $allCodes,
explode( ',', $this->getOption( 'lang' ) ) );
# Bailed out if nothing is left
if ( count( $codes ) == 0 ) {
$this->fatalError( 'None of the languages specified exists.' );
}
} else {
# By default get all languages
$codes = $allCodes;
}
sort( $codes );
$numRebuilt = 0;
$total = count( $codes );
$parentStatus = 0;
if ( $threads <= 1 ) {
// Single-threaded implementation
$numRebuilt += $this->doRebuild( $codes, $lc, $force );
} else {
// Multi-threaded implementation
$chunks = array_chunk( $codes, ceil( count( $codes ) / $threads ) );
// Map from PID to readable socket
$sockets = [];
foreach ( $chunks as $codes ) {
$socketpair = [];
// Create a pair of sockets so that the child can communicate
// the number of rebuilt langs to the parent.
if ( !socket_create_pair( AF_UNIX, SOCK_STREAM, 0, $socketpair ) ) {
$this->fatalError( 'socket_create_pair failed' );
}
$pid = pcntl_fork();
if ( $pid === -1 ) {
$this->fatalError( ' pcntl_fork failed' );
} elseif ( $pid === 0 ) {
// Child, reseed because there is no bug in PHP:
// https://bugs.php.net/bug.php?id=42465
mt_srand( getmypid() );
$numRebuilt = $this->doRebuild( $codes, $lc, $force );
// Report the number of rebuilt langs to the parent.
$msg = "$numRebuilt\n";
socket_write( $socketpair[1], $msg, strlen( $msg ) );
// Child exits.
return;
} else {
// Main thread
$sockets[$pid] = $socketpair[0];
}
}
// Wait for all children
foreach ( $sockets as $pid => $socket ) {
$status = 0;
pcntl_waitpid( $pid, $status );
if ( pcntl_wifexited( $status ) ) {
$code = pcntl_wexitstatus( $status );
if ( $code ) {
$this->output( "Pid $pid exited with status $code !!\n" );
} else {
// Good exit status from child. Read the number of rebuilt langs from it.
$res = socket_read( $socket, 512, PHP_NORMAL_READ );
if ( $res === false ) {
$this->output( "socket_read failed in parent\n" );
} else {
$numRebuilt += intval( $res );
}
}
// Mush all child statuses into a single value in the parent.
$parentStatus |= $code;
} elseif ( pcntl_wifsignaled( $status ) ) {
$signum = pcntl_wtermsig( $status );
$this->output( "Pid $pid terminated by signal $signum !!\n" );
$parentStatus |= 1;
}
}
}
$this->output( "$numRebuilt languages rebuilt out of $total\n" );
if ( $numRebuilt === 0 ) {
$this->output( "Use --force to rebuild the caches which are still fresh.\n" );
}
if ( $parentStatus ) {
$this->fatalError( 'Failed.', $parentStatus );
}
}
/**
* Helper function to rebuild list of languages codes. Prints the code
* for each language which is rebuilt.
* @param string[] $codes List of language codes to rebuild.
* @param LocalisationCache $lc
* @param bool $force Rebuild up-to-date languages
* @return int Number of rebuilt languages
*/
private function doRebuild( $codes, $lc, $force ) {
$numRebuilt = 0;
$operation = $this->hasOption( 'dry-run' ) ? "Would rebuild" : "Rebuilding";
foreach ( $codes as $code ) {
if ( $force || $lc->isExpired( $code ) ) {
if ( !$this->hasOption( 'no-progress' ) ) {
$this->output( "$operation $code...\n" );
}
if ( !$this->hasOption( 'dry-run' ) ) {
$lc->recache( $code );
}
$numRebuilt++;
}
}
return $numRebuilt;
}
/** @inheritDoc */
public function getDbType() {
if ( $this->hasOption( 'no-database' ) ) {
return Maintenance::DB_NONE;
}
return parent::getDbType();
}
/**
* Sets whether a run of this maintenance script has the force parameter set
*
* @param bool $forced
*/
public function setForce( $forced = true ) {
$this->setOption( 'force', $forced );
}
}
// @codeCoverageIgnoreStart
$maintClass = RebuildLocalisationCache::class;
require_once RUN_MAINTENANCE_IF_MAIN;
// @codeCoverageIgnoreEnd
|