Merge "Added SpecialPageAfterExecute and SpecialPageBeforeExecute hooks"
[lhc/web/wiklou.git] / maintenance / rebuildLocalisationCache.php
index 0ca9961..5915a6b 100644 (file)
@@ -36,10 +36,12 @@ class RebuildLocalisationCache extends Maintenance {
                $this->mDescription = "Rebuild the localisation cache";
                $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 );
        }
 
        public function memoryLimit() {
-               return '200M';
+               return '1000M';
        }
 
        public function execute() {
@@ -65,9 +67,12 @@ class RebuildLocalisationCache extends Maintenance {
                if ( $force ) {
                        $conf['forceRecache'] = true;
                }
+               if ( $this->hasOption( 'outdir' ) ) {
+                       $conf['storeDirectory'] = $this->getOption( 'outdir' );
+               }
                $lc = new LocalisationCache_BulkLoad( $conf );
 
-               $codes = array_keys( Language::getLanguageNames( true ) );
+               $codes = array_keys( Language::fetchLanguageNames( null, 'mwfile' ) );
                sort( $codes );
 
                // Initialise and split into chunks
@@ -111,10 +116,10 @@ class RebuildLocalisationCache extends Maintenance {
        /**
         * Helper function to rebuild list of languages codes. Prints the code
         * for each language which is rebuilt.
-        * @param $codes  list  List of language codes to rebuild.
-        * @param $lc  object  Instance of LocalisationCache_BulkLoad (?)
-        * @param $force  bool  Rebuild up-to-date languages
-        * @return  int  Number of rebuilt languages
+        * @param $codes array List of language codes to rebuild.
+        * @param $lc LocalisationCache Instance of LocalisationCache_BulkLoad (?)
+        * @param $force bool Rebuild up-to-date languages
+        * @return int Number of rebuilt languages
         */
        private function doRebuild( $codes, $lc, $force ) {
                $numRebuilt = 0;
@@ -127,6 +132,15 @@ class RebuildLocalisationCache extends Maintenance {
                }
                return $numRebuilt;
        }
+
+       /**
+        * Sets whether a run of this maintenance script has the force parameter set
+        *
+        * @param bool $forced
+        */
+       public function setForce( $forced = true ) {
+               $this->mOptions['force'] = $forced;
+       }
 }
 
 $maintClass = "RebuildLocalisationCache";