4 * Rebuild the localisation cache. Useful if you disabled automatic updates
5 * using $wgLocalisationCacheConf['manualRecache'] = true;
8 * php rebuildLocalisationCache.php [--force] [--threads=N]
10 * Use --force to rebuild all files, even the ones that are not out of date.
11 * Use --threads=N to fork more threads.
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License along
24 * with this program; if not, write to the Free Software Foundation, Inc.,
25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26 * http://www.gnu.org/copyleft/gpl.html
29 * @ingroup Maintenance
32 require_once( __DIR__
. '/Maintenance.php' );
35 * Maintenance script to rebuild the localisation cache.
37 * @ingroup Maintenance
39 class RebuildLocalisationCache
extends Maintenance
{
40 public function __construct() {
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)',
49 public function memoryLimit() {
50 if ( $this->hasOption( 'memory-limit' ) ) {
51 return parent
::memoryLimit();
56 public function execute() {
57 global $wgLocalisationCacheConf;
59 $force = $this->hasOption( 'force' );
60 $threads = $this->getOption( 'threads', 1 );
61 if ( $threads < 1 ||
$threads != intval( $threads ) ) {
62 $this->output( "Invalid thread count specified; running single-threaded.\n" );
65 if ( $threads > 1 && wfIsWindows() ) {
66 $this->output( "Threaded rebuild is not supported on Windows; running single-threaded.\n" );
69 if ( $threads > 1 && !function_exists( 'pcntl_fork' ) ) {
70 $this->output( "PHP pcntl extension is not present; running single-threaded.\n" );
74 $conf = $wgLocalisationCacheConf;
75 $conf['manualRecache'] = false; // Allow fallbacks to create CDB files
77 $conf['forceRecache'] = true;
79 if ( $this->hasOption( 'outdir' ) ) {
80 $conf['storeDirectory'] = $this->getOption( 'outdir' );
82 $lc = new LocalisationCache_BulkLoad( $conf );
84 $codes = array_keys( Language
::fetchLanguageNames( null, 'mwfile' ) );
87 // Initialise and split into chunks
89 $total = count( $codes );
90 $chunks = array_chunk( $codes, ceil( count( $codes ) / $threads ) );
92 foreach ( $chunks as $codes ) {
93 // Do not fork for only one thread
94 $pid = ( $threads > 1 ) ?
pcntl_fork() : -1;
97 // Child, reseed because there is no bug in PHP:
98 // http://bugs.php.net/bug.php?id=42465
99 mt_srand( getmypid() );
100 $numRebuilt = $this->doRebuild( $codes, $lc, $force );
101 // Abuse the exit value for the count of rebuild languages
103 } elseif ( $pid === -1 ) {
104 // Fork failed or one thread, do it serialized
105 $numRebuilt +
= $this->doRebuild( $codes, $lc, $force );
111 // Wait for all children
112 foreach ( $pids as $pid ) {
114 pcntl_waitpid( $pid, $status );
115 // Fetch the count from the return value
116 $numRebuilt +
= pcntl_wexitstatus( $status );
119 $this->output( "$numRebuilt languages rebuilt out of $total\n" );
120 if ( $numRebuilt === 0 ) {
121 $this->output( "Use --force to rebuild the caches which are still fresh.\n" );
126 * Helper function to rebuild list of languages codes. Prints the code
127 * for each language which is rebuilt.
128 * @param $codes array List of language codes to rebuild.
129 * @param $lc LocalisationCache Instance of LocalisationCache_BulkLoad (?)
130 * @param $force bool Rebuild up-to-date languages
131 * @return int Number of rebuilt languages
133 private function doRebuild( $codes, $lc, $force ) {
135 foreach ( $codes as $code ) {
136 if ( $force ||
$lc->isExpired( $code ) ) {
137 $this->output( "Rebuilding $code...\n" );
138 $lc->recache( $code );
146 * Sets whether a run of this maintenance script has the force parameter set
148 * @param bool $forced
150 public function setForce( $forced = true ) {
151 $this->mOptions
['force'] = $forced;
155 $maintClass = "RebuildLocalisationCache";
156 require_once( RUN_MAINTENANCE_IF_MAIN
);