Go to the documentation of this file.
32 require_once __DIR__ .
'/Maintenance.php';
41 parent::__construct();
42 $this->mDescription =
"Rebuild the localisation cache";
43 $this->
addOption(
'force',
'Rebuild all files, even ones not out of date' );
44 $this->
addOption(
'threads',
'Fork more than one thread',
false,
true );
45 $this->
addOption(
'outdir',
'Override the output directory (normally $wgCacheDirectory)',
47 $this->
addOption(
'lang',
'Only rebuild these languages, comma separated.',
52 if ( $this->
hasOption(
'memory-limit' ) ) {
53 return parent::memoryLimit();
59 # This script needs to be run to build the inital l10n cache. But if
60 # $wgLanguageCode is not 'en', it won't be able to run because there is
61 # no l10n cache. Break the cycle by forcing $wgLanguageCode = 'en'.
63 $wgLanguageCode =
'en';
68 global $wgLocalisationCacheConf;
71 $threads = $this->
getOption(
'threads', 1 );
72 if ( $threads < 1 || $threads != intval( $threads ) ) {
73 $this->
output(
"Invalid thread count specified; running single-threaded.\n" );
77 $this->
output(
"Threaded rebuild is not supported on Windows; running single-threaded.\n" );
80 if ( $threads > 1 && !function_exists(
'pcntl_fork' ) ) {
81 $this->
output(
"PHP pcntl extension is not present; running single-threaded.\n" );
85 $conf = $wgLocalisationCacheConf;
86 $conf[
'manualRecache'] =
false;
88 $conf[
'forceRecache'] =
true;
91 $conf[
'storeDirectory'] = $this->
getOption(
'outdir' );
97 # Validate requested languages
98 $codes = array_intersect( $allCodes,
99 explode(
',', $this->
getOption(
'lang' ) ) );
100 # Bailed out if nothing is left
101 if ( count( $codes ) == 0 ) {
102 $this->
error(
'None of the languages specified exists.', 1 );
105 # By default get all languages
113 $chunks = array_chunk( $codes, ceil( count( $codes ) / $threads ) );
115 foreach ( $chunks
as $codes ) {
117 $pid = ( $threads > 1 ) ? pcntl_fork() : -1;
122 mt_srand( getmypid() );
123 $numRebuilt = $this->
doRebuild( $codes, $lc, $force );
126 } elseif ( $pid === -1 ) {
128 $numRebuilt += $this->
doRebuild( $codes, $lc, $force );
135 foreach ( $pids
as $pid ) {
137 pcntl_waitpid( $pid, $status );
139 $numRebuilt += pcntl_wexitstatus( $status );
142 $this->
output(
"$numRebuilt languages rebuilt out of $total\n" );
143 if ( $numRebuilt === 0 ) {
144 $this->
output(
"Use --force to rebuild the caches which are still fresh.\n" );
158 foreach ( $codes
as $code ) {
159 if ( $force || $lc->isExpired( $code ) ) {
160 $this->
output(
"Rebuilding $code...\n" );
161 $lc->recache( $code );
174 $this->mOptions[
'force'] = $forced;
setForce( $forced=true)
Sets whether a run of this maintenance script has the force parameter set.
__construct()
Default constructor.
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
execute()
Do the actual work.
finalSetup()
Handle some last-minute setup here.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false)
Add a parameter to the script.
require_once RUN_MAINTENANCE_IF_MAIN
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
A localisation cache optimised for loading large amounts of data for many languages.
static fetchLanguageNames( $inLanguage=null, $include='mw')
Get an array of language names, indexed by code.
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
when a variable name is used in a it is silently declared as a new masking the global
Maintenance script to rebuild the localisation cache.
wfIsWindows()
Check if the operating system is Windows.
getOption( $name, $default=null)
Get an option, or return the default.
memoryLimit()
Normally we disable the memory_limit when running admin scripts.
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
doRebuild( $codes, $lc, $force)
Helper function to rebuild list of languages codes.
error( $err, $die=0)
Throw an error to the user.
output( $out, $channel=null)
Throw some output to the user.
hasOption( $name)
Checks to see if a particular param exists.