Merge "[FileBackend] Optimized concatenate() to use getLocalReferenceMulti()."
[lhc/web/wiklou.git] / maintenance / rebuildLocalisationCache.php
1 <?php
2
3 /**
4 * Rebuild the localisation cache. Useful if you disabled automatic updates
5 * using $wgLocalisationCacheConf['manualRecache'] = true;
6 *
7 * Usage:
8 * php rebuildLocalisationCache.php [--force] [--threads=N]
9 *
10 * Use --force to rebuild all files, even the ones that are not out of date.
11 * Use --threads=N to fork more threads.
12 *
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.
17 *
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.
22 *
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
27 *
28 * @file
29 * @ingroup Maintenance
30 */
31
32 require_once( __DIR__ . '/Maintenance.php' );
33
34 /**
35 * Maintenance script to rebuild the localisation cache.
36 *
37 * @ingroup Maintenance
38 */
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)',
46 false, true );
47 }
48
49 public function memoryLimit() {
50 if ( $this->hasOption( 'memory-limit' ) ) {
51 return parent::memoryLimit();
52 }
53 return '1000M';
54 }
55
56 public function execute() {
57 global $wgLocalisationCacheConf;
58
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" );
63 $threads = 1;
64 }
65 if ( $threads > 1 && wfIsWindows() ) {
66 $this->output( "Threaded rebuild is not supported on Windows; running single-threaded.\n" );
67 $threads = 1;
68 }
69 if ( $threads > 1 && !function_exists( 'pcntl_fork' ) ) {
70 $this->output( "PHP pcntl extension is not present; running single-threaded.\n" );
71 $threads = 1;
72 }
73
74 $conf = $wgLocalisationCacheConf;
75 $conf['manualRecache'] = false; // Allow fallbacks to create CDB files
76 if ( $force ) {
77 $conf['forceRecache'] = true;
78 }
79 if ( $this->hasOption( 'outdir' ) ) {
80 $conf['storeDirectory'] = $this->getOption( 'outdir' );
81 }
82 $lc = new LocalisationCache_BulkLoad( $conf );
83
84 $codes = array_keys( Language::fetchLanguageNames( null, 'mwfile' ) );
85 sort( $codes );
86
87 // Initialise and split into chunks
88 $numRebuilt = 0;
89 $total = count( $codes );
90 $chunks = array_chunk( $codes, ceil( count( $codes ) / $threads ) );
91 $pids = array();
92 foreach ( $chunks as $codes ) {
93 // Do not fork for only one thread
94 $pid = ( $threads > 1 ) ? pcntl_fork() : -1;
95
96 if ( $pid === 0 ) {
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
102 exit( $numRebuilt );
103 } elseif ( $pid === -1 ) {
104 // Fork failed or one thread, do it serialized
105 $numRebuilt += $this->doRebuild( $codes, $lc, $force );
106 } else {
107 // Main thread
108 $pids[] = $pid;
109 }
110 }
111 // Wait for all children
112 foreach ( $pids as $pid ) {
113 $status = 0;
114 pcntl_waitpid( $pid, $status );
115 // Fetch the count from the return value
116 $numRebuilt += pcntl_wexitstatus( $status );
117 }
118
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" );
122 }
123 }
124
125 /**
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
132 */
133 private function doRebuild( $codes, $lc, $force ) {
134 $numRebuilt = 0;
135 foreach ( $codes as $code ) {
136 if ( $force || $lc->isExpired( $code ) ) {
137 $this->output( "Rebuilding $code...\n" );
138 $lc->recache( $code );
139 $numRebuilt++;
140 }
141 }
142 return $numRebuilt;
143 }
144
145 /**
146 * Sets whether a run of this maintenance script has the force parameter set
147 *
148 * @param bool $forced
149 */
150 public function setForce( $forced = true ) {
151 $this->mOptions['force'] = $forced;
152 }
153 }
154
155 $maintClass = "RebuildLocalisationCache";
156 require_once( RUN_MAINTENANCE_IF_MAIN );