3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
19 * @ingroup Maintenance
20 * @defgroup Maintenance Maintenance
23 // Make sure we're on PHP5.3.2 or better
24 if ( !function_exists( 'version_compare' ) ||
version_compare( PHP_VERSION
, '5.3.2' ) < 0 ) {
25 // We need to use dirname( __FILE__ ) here cause __DIR__ is PHP5.3+
26 require_once( dirname( __FILE__
) . '/../includes/PHPVersionError.php' );
27 wfPHPVersionError( 'cli' );
31 * @defgroup MaintenanceArchive Maintenance archives
32 * @ingroup Maintenance
35 // Define this so scripts can easily find doMaintenance.php
36 define( 'RUN_MAINTENANCE_IF_MAIN', __DIR__
. '/doMaintenance.php' );
37 define( 'DO_MAINTENANCE', RUN_MAINTENANCE_IF_MAIN
); // original name, harmless
42 * Abstract maintenance class for quickly writing and churning out
43 * maintenance scripts with minimal effort. All that _must_ be defined
44 * is the execute() method. See docs/maintenance.txt for more info
45 * and a quick demo of how to use it.
47 * @author Chad Horohoe <chad@anyonecanedit.org>
49 * @ingroup Maintenance
51 abstract class Maintenance
{
54 * Constants for DB access type
55 * @see Maintenance::getDbType()
61 // Const for getStdin()
62 const STDIN_ALL
= 'all';
64 // This is the desired params
65 protected $mParams = array();
67 // Array of mapping short parameters to long ones
68 protected $mShortParamsMap = array();
70 // Array of desired args
71 protected $mArgList = array();
73 // This is the list of options that were actually passed
74 protected $mOptions = array();
76 // This is the list of arguments that were actually passed
77 protected $mArgs = array();
79 // Name of the script currently running
82 // Special vars for params that are always used
83 protected $mQuiet = false;
84 protected $mDbUser, $mDbPass;
86 // A description of the script, children should change this
87 protected $mDescription = '';
89 // Have we already loaded our user input?
90 protected $mInputLoaded = false;
93 * Batch size. If a script supports this, they should set
94 * a default with setBatchSize()
98 protected $mBatchSize = null;
100 // Generic options added by addDefaultParams()
101 private $mGenericParameters = array();
102 // Generic options which might or not be supported by the script
103 private $mDependantParameters = array();
106 * Used by getDD() / setDB()
112 * Used when creating separate schema files.
118 * List of all the core maintenance scripts. This is added
119 * to scripts added by extensions in $wgMaintenanceScripts
120 * and returned by getMaintenanceScripts()
122 protected static $mCoreScripts = null;
125 * Default constructor. Children should call this *first* if implementing
126 * their own constructors
128 public function __construct() {
129 // Setup $IP, using MW_INSTALL_PATH if it exists
131 $IP = strval( getenv( 'MW_INSTALL_PATH' ) ) !== ''
132 ?
getenv( 'MW_INSTALL_PATH' )
133 : realpath( __DIR__
. '/..' );
135 $this->addDefaultParams();
136 register_shutdown_function( array( $this, 'outputChanneled' ), false );
140 * Should we execute the maintenance script, or just allow it to be included
141 * as a standalone class? It checks that the call stack only includes this
142 * function and "requires" (meaning was called from the file scope)
146 public static function shouldExecute() {
147 $bt = debug_backtrace();
148 $count = count( $bt );
150 return false; // sanity
152 if ( $bt[0]['class'] !== 'Maintenance' ||
$bt[0]['function'] !== 'shouldExecute' ) {
153 return false; // last call should be to this function
155 $includeFuncs = array( 'require_once', 'require', 'include', 'include_once' );
156 for ( $i = 1; $i < $count; $i++
) {
157 if ( !in_array( $bt[$i]['function'], $includeFuncs ) ) {
158 return false; // previous calls should all be "requires"
165 * Do the actual work. All child classes will need to implement this
167 abstract public function execute();
170 * Add a parameter to the script. Will be displayed on --help
171 * with the associated description
173 * @param $name String: the name of the param (help, version, etc)
174 * @param $description String: the description of the param to show on --help
175 * @param $required Boolean: is the param required?
176 * @param $withArg Boolean: is an argument required with this option?
177 * @param $shortName String: character to use as short name
179 protected function addOption( $name, $description, $required = false, $withArg = false, $shortName = false ) {
180 $this->mParams
[$name] = array( 'desc' => $description, 'require' => $required, 'withArg' => $withArg, 'shortName' => $shortName );
181 if ( $shortName !== false ) {
182 $this->mShortParamsMap
[$shortName] = $name;
187 * Checks to see if a particular param exists.
188 * @param $name String: the name of the param
191 protected function hasOption( $name ) {
192 return isset( $this->mOptions
[$name] );
196 * Get an option, or return the default
197 * @param $name String: the name of the param
198 * @param $default Mixed: anything you want, default null
201 protected function getOption( $name, $default = null ) {
202 if ( $this->hasOption( $name ) ) {
203 return $this->mOptions
[$name];
205 // Set it so we don't have to provide the default again
206 $this->mOptions
[$name] = $default;
207 return $this->mOptions
[$name];
212 * Add some args that are needed
213 * @param $arg String: name of the arg, like 'start'
214 * @param $description String: short description of the arg
215 * @param $required Boolean: is this required?
217 protected function addArg( $arg, $description, $required = true ) {
218 $this->mArgList
[] = array(
220 'desc' => $description,
221 'require' => $required
226 * Remove an option. Useful for removing options that won't be used in your script.
227 * @param $name String: the option to remove.
229 protected function deleteOption( $name ) {
230 unset( $this->mParams
[$name] );
234 * Set the description text.
235 * @param $text String: the text of the description
237 protected function addDescription( $text ) {
238 $this->mDescription
= $text;
242 * Does a given argument exist?
243 * @param $argId Integer: the integer value (from zero) for the arg
246 protected function hasArg( $argId = 0 ) {
247 return isset( $this->mArgs
[$argId] );
252 * @param $argId Integer: the integer value (from zero) for the arg
253 * @param $default Mixed: the default if it doesn't exist
256 protected function getArg( $argId = 0, $default = null ) {
257 return $this->hasArg( $argId ) ?
$this->mArgs
[$argId] : $default;
261 * Set the batch size.
262 * @param $s Integer: the number of operations to do in a batch
264 protected function setBatchSize( $s = 0 ) {
265 $this->mBatchSize
= $s;
267 // If we support $mBatchSize, show the option.
268 // Used to be in addDefaultParams, but in order for that to
269 // work, subclasses would have to call this function in the constructor
270 // before they called parent::__construct which is just weird
271 // (and really wasn't done).
272 if ( $this->mBatchSize
) {
273 $this->addOption( 'batch-size', 'Run this many operations ' .
274 'per batch, default: ' . $this->mBatchSize
, false, true );
275 if ( isset( $this->mParams
['batch-size'] ) ) {
276 // This seems a little ugly...
277 $this->mDependantParameters
['batch-size'] = $this->mParams
['batch-size'];
283 * Get the script's name
286 public function getName() {
291 * Return input from stdin.
292 * @param $len Integer: the number of bytes to read. If null,
293 * just return the handle. Maintenance::STDIN_ALL returns
297 protected function getStdin( $len = null ) {
298 if ( $len == Maintenance
::STDIN_ALL
) {
299 return file_get_contents( 'php://stdin' );
301 $f = fopen( 'php://stdin', 'rt' );
305 $input = fgets( $f, $len );
307 return rtrim( $input );
313 public function isQuiet() {
314 return $this->mQuiet
;
318 * Throw some output to the user. Scripts can call this with no fears,
319 * as we handle all --quiet stuff here
320 * @param $out String: the text to show to the user
321 * @param $channel Mixed: unique identifier for the channel. See
322 * function outputChanneled.
324 protected function output( $out, $channel = null ) {
325 if ( $this->mQuiet
) {
328 if ( $channel === null ) {
329 $this->cleanupChanneled();
332 $out = preg_replace( '/\n\z/', '', $out );
333 $this->outputChanneled( $out, $channel );
338 * Throw an error to the user. Doesn't respect --quiet, so don't use
339 * this for non-error output
340 * @param $err String: the error to display
341 * @param $die Int: if > 0, go ahead and die out using this int as the code
343 protected function error( $err, $die = 0 ) {
344 $this->outputChanneled( false );
345 if ( PHP_SAPI
== 'cli' ) {
346 fwrite( STDERR
, $err . "\n" );
350 $die = intval( $die );
356 private $atLineStart = true;
357 private $lastChannel = null;
360 * Clean up channeled output. Output a newline if necessary.
362 public function cleanupChanneled() {
363 if ( !$this->atLineStart
) {
365 $this->atLineStart
= true;
370 * Message outputter with channeled message support. Messages on the
371 * same channel are concatenated, but any intervening messages in another
372 * channel start a new line.
373 * @param $msg String: the message without trailing newline
374 * @param $channel string Channel identifier or null for no
375 * channel. Channel comparison uses ===.
377 public function outputChanneled( $msg, $channel = null ) {
378 if ( $msg === false ) {
379 $this->cleanupChanneled();
383 // End the current line if necessary
384 if ( !$this->atLineStart
&& $channel !== $this->lastChannel
) {
390 $this->atLineStart
= false;
391 if ( $channel === null ) {
392 // For unchanneled messages, output trailing newline immediately
394 $this->atLineStart
= true;
396 $this->lastChannel
= $channel;
400 * Does the script need different DB access? By default, we give Maintenance
401 * scripts normal rights to the DB. Sometimes, a script needs admin rights
402 * access for a reason and sometimes they want no access. Subclasses should
403 * override and return one of the following values, as needed:
404 * Maintenance::DB_NONE - For no DB access at all
405 * Maintenance::DB_STD - For normal DB access, default
406 * Maintenance::DB_ADMIN - For admin DB access
409 public function getDbType() {
410 return Maintenance
::DB_STD
;
414 * Add the default parameters to the scripts
416 protected function addDefaultParams() {
418 # Generic (non script dependant) options:
420 $this->addOption( 'help', 'Display this help message', false, false, 'h' );
421 $this->addOption( 'quiet', 'Whether to supress non-error output', false, false, 'q' );
422 $this->addOption( 'conf', 'Location of LocalSettings.php, if not default', false, true );
423 $this->addOption( 'wiki', 'For specifying the wiki ID', false, true );
424 $this->addOption( 'globals', 'Output globals at the end of processing for debugging' );
425 $this->addOption( 'memory-limit', 'Set a specific memory limit for the script, "max" for no limit or "default" to avoid changing it' );
426 $this->addOption( 'server', "The protocol and server name to use in URLs, e.g. " .
427 "http://en.wikipedia.org. This is sometimes necessary because " .
428 "server name detection may fail in command line scripts.", false, true );
430 # Save generic options to display them separately in help
431 $this->mGenericParameters
= $this->mParams
;
433 # Script dependant options:
435 // If we support a DB, show the options
436 if ( $this->getDbType() > 0 ) {
437 $this->addOption( 'dbuser', 'The DB user to use for this script', false, true );
438 $this->addOption( 'dbpass', 'The password to use for this script', false, true );
441 # Save additional script dependant options to display
442 #Â them separately in help
443 $this->mDependantParameters
= array_diff_key( $this->mParams
, $this->mGenericParameters
);
447 * Run a child maintenance script. Pass all of the current arguments
449 * @param $maintClass String: a name of a child maintenance class
450 * @param $classFile String: full path of where the child is
451 * @return Maintenance child
453 public function runChild( $maintClass, $classFile = null ) {
454 // Make sure the class is loaded first
455 if ( !MWInit
::classExists( $maintClass ) ) {
457 require_once( $classFile );
459 if ( !MWInit
::classExists( $maintClass ) ) {
460 $this->error( "Cannot spawn child: $maintClass" );
465 * @var $child Maintenance
467 $child = new $maintClass();
468 $child->loadParamsAndArgs( $this->mSelf
, $this->mOptions
, $this->mArgs
);
469 if ( !is_null( $this->mDb
) ) {
470 $child->setDB( $this->mDb
);
476 * Do some sanity checking and basic setup
478 public function setup() {
479 global $wgCommandLineMode, $wgRequestTime;
481 # Abort if called from a web server
482 if ( isset( $_SERVER ) && isset( $_SERVER['REQUEST_METHOD'] ) ) {
483 $this->error( 'This script must be run from the command line', true );
486 # Make sure we can handle script parameters
487 if ( !function_exists( 'hphp_thread_set_warmup_enabled' ) && !ini_get( 'register_argc_argv' ) ) {
488 $this->error( 'Cannot get command line arguments, register_argc_argv is set to false', true );
491 // Send PHP warnings and errors to stderr instead of stdout.
492 // This aids in diagnosing problems, while keeping messages
493 // out of redirected output.
494 if ( ini_get( 'display_errors' ) ) {
495 ini_set( 'display_errors', 'stderr' );
498 $this->loadParamsAndArgs();
501 # Set the memory limit
502 # Note we need to set it again later in cache LocalSettings changed it
503 $this->adjustMemoryLimit();
505 # Set max execution time to 0 (no limit). PHP.net says that
506 # "When running PHP from the command line the default setting is 0."
507 # But sometimes this doesn't seem to be the case.
508 ini_set( 'max_execution_time', 0 );
510 $wgRequestTime = microtime( true );
512 # Define us as being in MediaWiki
513 define( 'MEDIAWIKI', true );
515 $wgCommandLineMode = true;
517 # Turn off output buffering if it's on
518 while ( ob_get_level() > 0 ) {
522 $this->validateParamsAndArgs();
526 * Normally we disable the memory_limit when running admin scripts.
527 * Some scripts may wish to actually set a limit, however, to avoid
528 * blowing up unexpectedly. We also support a --memory-limit option,
529 * to allow sysadmins to explicitly set one if they'd prefer to override
530 * defaults (or for people using Suhosin which yells at you for trying
531 * to disable the limits)
534 public function memoryLimit() {
535 $limit = $this->getOption( 'memory-limit', 'max' );
536 $limit = trim( $limit, "\" '" ); // trim quotes in case someone misunderstood
541 * Adjusts PHP's memory limit to better suit our needs, if needed.
543 protected function adjustMemoryLimit() {
544 $limit = $this->memoryLimit();
545 if ( $limit == 'max' ) {
546 $limit = -1; // no memory limit
548 if ( $limit != 'default' ) {
549 ini_set( 'memory_limit', $limit );
554 * Clear all params and arguments.
556 public function clearParamsAndArgs() {
557 $this->mOptions
= array();
558 $this->mArgs
= array();
559 $this->mInputLoaded
= false;
563 * Process command line arguments
564 * $mOptions becomes an array with keys set to the option names
565 * $mArgs becomes a zero-based array containing the non-option arguments
567 * @param $self String The name of the script, if any
568 * @param $opts Array An array of options, in form of key=>value
569 * @param $args Array An array of command line arguments
571 public function loadParamsAndArgs( $self = null, $opts = null, $args = null ) {
572 # If we were given opts or args, set those and return early
574 $this->mSelf
= $self;
575 $this->mInputLoaded
= true;
578 $this->mOptions
= $opts;
579 $this->mInputLoaded
= true;
582 $this->mArgs
= $args;
583 $this->mInputLoaded
= true;
586 # If we've already loaded input (either by user values or from $argv)
587 # skip on loading it again. The array_shift() will corrupt values if
588 # it's run again and again
589 if ( $this->mInputLoaded
) {
590 $this->loadSpecialVars();
595 $this->mSelf
= array_shift( $argv );
601 for ( $arg = reset( $argv ); $arg !== false; $arg = next( $argv ) ) {
602 if ( $arg == '--' ) {
603 # End of options, remainder should be considered arguments
604 $arg = next( $argv );
605 while ( $arg !== false ) {
607 $arg = next( $argv );
610 } elseif ( substr( $arg, 0, 2 ) == '--' ) {
612 $option = substr( $arg, 2 );
613 if ( array_key_exists( $option, $options ) ) {
614 $this->error( "\nERROR: $option parameter given twice\n" );
615 $this->maybeHelp( true );
617 if ( isset( $this->mParams
[$option] ) && $this->mParams
[$option]['withArg'] ) {
618 $param = next( $argv );
619 if ( $param === false ) {
620 $this->error( "\nERROR: $option parameter needs a value after it\n" );
621 $this->maybeHelp( true );
623 $options[$option] = $param;
625 $bits = explode( '=', $option, 2 );
626 if ( count( $bits ) > 1 ) {
632 $options[$option] = $param;
634 } elseif ( substr( $arg, 0, 1 ) == '-' ) {
636 for ( $p = 1; $p < strlen( $arg ); $p++
) {
637 $option = $arg { $p };
638 if ( !isset( $this->mParams
[$option] ) && isset( $this->mShortParamsMap
[$option] ) ) {
639 $option = $this->mShortParamsMap
[$option];
641 if ( array_key_exists( $option, $options ) ) {
642 $this->error( "\nERROR: $option parameter given twice\n" );
643 $this->maybeHelp( true );
645 if ( isset( $this->mParams
[$option]['withArg'] ) && $this->mParams
[$option]['withArg'] ) {
646 $param = next( $argv );
647 if ( $param === false ) {
648 $this->error( "\nERROR: $option parameter needs a value after it\n" );
649 $this->maybeHelp( true );
651 $options[$option] = $param;
653 $options[$option] = 1;
661 $this->mOptions
= $options;
662 $this->mArgs
= $args;
663 $this->loadSpecialVars();
664 $this->mInputLoaded
= true;
668 * Run some validation checks on the params, etc
670 protected function validateParamsAndArgs() {
672 # Check to make sure we've got all the required options
673 foreach ( $this->mParams
as $opt => $info ) {
674 if ( $info['require'] && !$this->hasOption( $opt ) ) {
675 $this->error( "Param $opt required!" );
680 foreach ( $this->mArgList
as $k => $info ) {
681 if ( $info['require'] && !$this->hasArg( $k ) ) {
682 $this->error( 'Argument <' . $info['name'] . '> required!' );
688 $this->maybeHelp( true );
693 * Handle the special variables that are global to all scripts
695 protected function loadSpecialVars() {
696 if ( $this->hasOption( 'dbuser' ) ) {
697 $this->mDbUser
= $this->getOption( 'dbuser' );
699 if ( $this->hasOption( 'dbpass' ) ) {
700 $this->mDbPass
= $this->getOption( 'dbpass' );
702 if ( $this->hasOption( 'quiet' ) ) {
703 $this->mQuiet
= true;
705 if ( $this->hasOption( 'batch-size' ) ) {
706 $this->mBatchSize
= intval( $this->getOption( 'batch-size' ) );
711 * Maybe show the help.
712 * @param $force boolean Whether to force the help to show, default false
714 protected function maybeHelp( $force = false ) {
715 if ( !$force && !$this->hasOption( 'help' ) ) {
719 $screenWidth = 80; // TODO: Caculate this!
721 $descWidth = $screenWidth - ( 2 * strlen( $tab ) );
723 ksort( $this->mParams
);
724 $this->mQuiet
= false;
727 if ( $this->mDescription
) {
728 $this->output( "\n" . $this->mDescription
. "\n" );
730 $output = "\nUsage: php " . basename( $this->mSelf
);
732 // ... append parameters ...
733 if ( $this->mParams
) {
734 $output .= " [--" . implode( array_keys( $this->mParams
), "|--" ) . "]";
737 // ... and append arguments.
738 if ( $this->mArgList
) {
740 foreach ( $this->mArgList
as $k => $arg ) {
741 if ( $arg['require'] ) {
742 $output .= '<' . $arg['name'] . '>';
744 $output .= '[' . $arg['name'] . ']';
746 if ( $k < count( $this->mArgList
) - 1 ) {
751 $this->output( "$output\n\n" );
753 # TODO abstract some repetitive code below
755 // Generic parameters
756 $this->output( "Generic maintenance parameters:\n" );
757 foreach ( $this->mGenericParameters
as $par => $info ) {
758 if ( $info['shortName'] !== false ) {
759 $par .= " (-{$info['shortName']})";
762 wordwrap( "$tab--$par: " . $info['desc'], $descWidth,
763 "\n$tab$tab" ) . "\n"
766 $this->output( "\n" );
768 $scriptDependantParams = $this->mDependantParameters
;
769 if ( count($scriptDependantParams) > 0 ) {
770 $this->output( "Script dependant parameters:\n" );
771 // Parameters description
772 foreach ( $scriptDependantParams as $par => $info ) {
773 if ( $info['shortName'] !== false ) {
774 $par .= " (-{$info['shortName']})";
777 wordwrap( "$tab--$par: " . $info['desc'], $descWidth,
778 "\n$tab$tab" ) . "\n"
781 $this->output( "\n" );
785 // Script specific parameters not defined on construction by
786 // Maintenance::addDefaultParams()
787 $scriptSpecificParams = array_diff_key(
788 # all script parameters:
790 # remove the Maintenance default parameters:
791 $this->mGenericParameters
,
792 $this->mDependantParameters
794 if ( count($scriptSpecificParams) > 0 ) {
795 $this->output( "Script specific parameters:\n" );
796 // Parameters description
797 foreach ( $scriptSpecificParams as $par => $info ) {
798 if ( $info['shortName'] !== false ) {
799 $par .= " (-{$info['shortName']})";
802 wordwrap( "$tab--$par: " . $info['desc'], $descWidth,
803 "\n$tab$tab" ) . "\n"
806 $this->output( "\n" );
810 if ( count( $this->mArgList
) > 0 ) {
811 $this->output( "Arguments:\n" );
812 // Arguments description
813 foreach ( $this->mArgList
as $info ) {
814 $openChar = $info['require'] ?
'<' : '[';
815 $closeChar = $info['require'] ?
'>' : ']';
817 wordwrap( "$tab$openChar" . $info['name'] . "$closeChar: " .
818 $info['desc'], $descWidth, "\n$tab$tab" ) . "\n"
821 $this->output( "\n" );
828 * Handle some last-minute setup here.
830 public function finalSetup() {
831 global $wgCommandLineMode, $wgShowSQLErrors, $wgServer;
832 global $wgDBadminuser, $wgDBadminpassword;
833 global $wgDBuser, $wgDBpassword, $wgDBservers, $wgLBFactoryConf;
835 # Turn off output buffering again, it might have been turned on in the settings files
836 if ( ob_get_level() ) {
840 $wgCommandLineMode = true;
843 if ( $this->hasOption( 'server' ) ) {
844 $wgServer = $this->getOption( 'server', $wgServer );
847 # If these were passed, use them
848 if ( $this->mDbUser
) {
849 $wgDBadminuser = $this->mDbUser
;
851 if ( $this->mDbPass
) {
852 $wgDBadminpassword = $this->mDbPass
;
855 if ( $this->getDbType() == self
::DB_ADMIN
&& isset( $wgDBadminuser ) ) {
856 $wgDBuser = $wgDBadminuser;
857 $wgDBpassword = $wgDBadminpassword;
859 if ( $wgDBservers ) {
861 * @var $wgDBservers array
863 foreach ( $wgDBservers as $i => $server ) {
864 $wgDBservers[$i]['user'] = $wgDBuser;
865 $wgDBservers[$i]['password'] = $wgDBpassword;
868 if ( isset( $wgLBFactoryConf['serverTemplate'] ) ) {
869 $wgLBFactoryConf['serverTemplate']['user'] = $wgDBuser;
870 $wgLBFactoryConf['serverTemplate']['password'] = $wgDBpassword;
872 LBFactory
::destroyInstance();
875 $this->afterFinalSetup();
877 $wgShowSQLErrors = true;
878 @set_time_limit
( 0 );
879 $this->adjustMemoryLimit();
883 * Execute a callback function at the end of initialisation
885 protected function afterFinalSetup() {
886 if ( defined( 'MW_CMDLINE_CALLBACK' ) ) {
887 call_user_func( MW_CMDLINE_CALLBACK
);
892 * Potentially debug globals. Originally a feature only
895 public function globals() {
896 if ( $this->hasOption( 'globals' ) ) {
902 * Generic setup for most installs. Returns the location of LocalSettings
905 public function loadSettings() {
906 global $wgCommandLineMode, $IP;
908 if ( isset( $this->mOptions
['conf'] ) ) {
909 $settingsFile = $this->mOptions
['conf'];
910 } elseif ( defined( "MW_CONFIG_FILE" ) ) {
911 $settingsFile = MW_CONFIG_FILE
;
913 $settingsFile = "$IP/LocalSettings.php";
915 if ( isset( $this->mOptions
['wiki'] ) ) {
916 $bits = explode( '-', $this->mOptions
['wiki'] );
917 if ( count( $bits ) == 1 ) {
920 define( 'MW_DB', $bits[0] );
921 define( 'MW_PREFIX', $bits[1] );
924 if ( !is_readable( $settingsFile ) ) {
925 $this->error( "A copy of your installation's LocalSettings.php\n" .
926 "must exist and be readable in the source directory.\n" .
927 "Use --conf to specify it.", true );
929 $wgCommandLineMode = true;
930 return $settingsFile;
934 * Support function for cleaning up redundant text records
935 * @param $delete Boolean: whether or not to actually delete the records
936 * @author Rob Church <robchur@gmail.com>
938 public function purgeRedundantText( $delete = true ) {
939 # Data should come off the master, wrapped in a transaction
940 $dbw = $this->getDB( DB_MASTER
);
941 $dbw->begin( __METHOD__
);
943 # Get "active" text records from the revisions table
944 $this->output( 'Searching for active text records in revisions table...' );
945 $res = $dbw->select( 'revision', 'rev_text_id', array(), __METHOD__
, array( 'DISTINCT' ) );
946 foreach ( $res as $row ) {
947 $cur[] = $row->rev_text_id
;
949 $this->output( "done.\n" );
951 # Get "active" text records from the archive table
952 $this->output( 'Searching for active text records in archive table...' );
953 $res = $dbw->select( 'archive', 'ar_text_id', array(), __METHOD__
, array( 'DISTINCT' ) );
954 foreach ( $res as $row ) {
955 # old pre-MW 1.5 records can have null ar_text_id's.
956 if ( $row->ar_text_id
!== null ) {
957 $cur[] = $row->ar_text_id
;
960 $this->output( "done.\n" );
962 # Get the IDs of all text records not in these sets
963 $this->output( 'Searching for inactive text records...' );
964 $cond = 'old_id NOT IN ( ' . $dbw->makeList( $cur ) . ' )';
965 $res = $dbw->select( 'text', 'old_id', array( $cond ), __METHOD__
, array( 'DISTINCT' ) );
967 foreach ( $res as $row ) {
968 $old[] = $row->old_id
;
970 $this->output( "done.\n" );
972 # Inform the user of what we're going to do
973 $count = count( $old );
974 $this->output( "$count inactive items found.\n" );
976 # Delete as appropriate
977 if ( $delete && $count ) {
978 $this->output( 'Deleting...' );
979 $dbw->delete( 'text', array( 'old_id' => $old ), __METHOD__
);
980 $this->output( "done.\n" );
984 $dbw->commit( __METHOD__
);
988 * Get the maintenance directory.
991 protected function getDir() {
996 * Get the list of available maintenance scripts. Note
997 * that if you call this _before_ calling doMaintenance
998 * you won't have any extensions in it yet
1001 public static function getMaintenanceScripts() {
1002 global $wgMaintenanceScripts;
1003 return $wgMaintenanceScripts + self
::getCoreScripts();
1007 * Return all of the core maintenance scripts
1010 protected static function getCoreScripts() {
1011 if ( !self
::$mCoreScripts ) {
1014 __DIR__
. '/language',
1015 __DIR__
. '/storage',
1017 self
::$mCoreScripts = array();
1018 foreach ( $paths as $p ) {
1019 $handle = opendir( $p );
1020 while ( ( $file = readdir( $handle ) ) !== false ) {
1021 if ( $file == 'Maintenance.php' ) {
1024 $file = $p . '/' . $file;
1025 if ( is_dir( $file ) ||
!strpos( $file, '.php' ) ||
1026 ( strpos( file_get_contents( $file ), '$maintClass' ) === false ) ) {
1030 $vars = get_defined_vars();
1031 if ( array_key_exists( 'maintClass', $vars ) ) {
1032 self
::$mCoreScripts[$vars['maintClass']] = $file;
1035 closedir( $handle );
1038 return self
::$mCoreScripts;
1042 * Returns a database to be used by current maintenance script. It can be set by setDB().
1043 * If not set, wfGetDB() will be used.
1044 * This function has the same parameters as wfGetDB()
1046 * @return DatabaseBase
1048 protected function &getDB( $db, $groups = array(), $wiki = false ) {
1049 if ( is_null( $this->mDb
) ) {
1050 return wfGetDB( $db, $groups, $wiki );
1057 * Sets database object to be returned by getDB().
1059 * @param $db DatabaseBase: Database object to be used
1061 public function setDB( &$db ) {
1066 * Lock the search index
1067 * @param &$db DatabaseBase object
1069 private function lockSearchindex( &$db ) {
1070 $write = array( 'searchindex' );
1071 $read = array( 'page', 'revision', 'text', 'interwiki', 'l10n_cache', 'user' );
1072 $db->lockTables( $read, $write, __CLASS__
. '::' . __METHOD__
);
1077 * @param &$db DatabaseBase object
1079 private function unlockSearchindex( &$db ) {
1080 $db->unlockTables( __CLASS__
. '::' . __METHOD__
);
1084 * Unlock and lock again
1085 * Since the lock is low-priority, queued reads will be able to complete
1086 * @param &$db DatabaseBase object
1088 private function relockSearchindex( &$db ) {
1089 $this->unlockSearchindex( $db );
1090 $this->lockSearchindex( $db );
1094 * Perform a search index update with locking
1095 * @param $maxLockTime Integer: the maximum time to keep the search index locked.
1096 * @param $callback callback String: the function that will update the function.
1097 * @param $dbw DatabaseBase object
1100 public function updateSearchIndex( $maxLockTime, $callback, $dbw, $results ) {
1104 if ( $maxLockTime ) {
1105 $this->output( " --- Waiting for lock ---" );
1106 $this->lockSearchindex( $dbw );
1108 $this->output( "\n" );
1111 # Loop through the results and do a search update
1112 foreach ( $results as $row ) {
1113 # Allow reads to be processed
1114 if ( $maxLockTime && time() > $lockTime +
$maxLockTime ) {
1115 $this->output( " --- Relocking ---" );
1116 $this->relockSearchindex( $dbw );
1118 $this->output( "\n" );
1120 call_user_func( $callback, $dbw, $row );
1123 # Unlock searchindex
1124 if ( $maxLockTime ) {
1125 $this->output( " --- Unlocking --" );
1126 $this->unlockSearchindex( $dbw );
1127 $this->output( "\n" );
1133 * Update the searchindex table for a given pageid
1134 * @param $dbw DatabaseBase a database write handle
1135 * @param $pageId Integer: the page ID to update.
1136 * @return null|string
1138 public function updateSearchIndexForPage( $dbw, $pageId ) {
1139 // Get current revision
1140 $rev = Revision
::loadFromPageId( $dbw, $pageId );
1143 $titleObj = $rev->getTitle();
1144 $title = $titleObj->getPrefixedDBkey();
1145 $this->output( "$title..." );
1146 # Update searchindex
1147 # TODO: pass the Content object to SearchUpdate, let the search engine decide how to deal with it.
1148 $u = new SearchUpdate( $pageId, $titleObj->getText(), $rev->getContent()->getTextForSearchIndex() );
1150 $this->output( "\n" );
1156 * Wrapper for posix_isatty()
1157 * We default as considering stdin a tty (for nice readline methods)
1158 * but treating stout as not a tty to avoid color codes
1160 * @param $fd int File descriptor
1163 public static function posix_isatty( $fd ) {
1164 if ( !MWInit
::functionExists( 'posix_isatty' ) ) {
1167 return posix_isatty( $fd );
1172 * Prompt the console for input
1173 * @param $prompt String what to begin the line with, like '> '
1174 * @return String response
1176 public static function readconsole( $prompt = '> ' ) {
1177 static $isatty = null;
1178 if ( is_null( $isatty ) ) {
1179 $isatty = self
::posix_isatty( 0 /*STDIN*/ );
1182 if ( $isatty && function_exists( 'readline' ) ) {
1183 return readline( $prompt );
1186 $st = self
::readlineEmulation( $prompt );
1188 if ( feof( STDIN
) ) {
1191 $st = fgets( STDIN
, 1024 );
1194 if ( $st === false ) {
1197 $resp = trim( $st );
1203 * Emulate readline()
1204 * @param $prompt String what to begin the line with, like '> '
1207 private static function readlineEmulation( $prompt ) {
1208 $bash = Installer
::locateExecutableInDefaultPaths( array( 'bash' ) );
1209 if ( !wfIsWindows() && $bash ) {
1211 $encPrompt = wfEscapeShellArg( $prompt );
1212 $command = "read -er -p $encPrompt && echo \"\$REPLY\"";
1213 $encCommand = wfEscapeShellArg( $command );
1214 $line = wfShellExec( "$bash -c $encCommand", $retval, array(), array( 'walltime' => 0 ) );
1216 if ( $retval == 0 ) {
1218 } elseif ( $retval == 127 ) {
1219 // Couldn't execute bash even though we thought we saw it.
1220 // Shell probably spit out an error message, sorry :(
1221 // Fall through to fgets()...
1228 // Fallback... we'll have no editing controls, EWWW
1229 if ( feof( STDIN
) ) {
1233 return fgets( STDIN
, 1024 );
1238 * Fake maintenance wrapper, mostly used for the web installer/updater
1240 class FakeMaintenance
extends Maintenance
{
1241 protected $mSelf = "FakeMaintenanceScript";
1242 public function execute() {
1248 * Class for scripts that perform database maintenance and want to log the
1249 * update in `updatelog` so we can later skip it
1251 abstract class LoggedUpdateMaintenance
extends Maintenance
{
1252 public function __construct() {
1253 parent
::__construct();
1254 $this->addOption( 'force', 'Run the update even if it was completed already' );
1255 $this->setBatchSize( 200 );
1258 public function execute() {
1259 $db = $this->getDB( DB_MASTER
);
1260 $key = $this->getUpdateKey();
1262 if ( !$this->hasOption( 'force' ) &&
1263 $db->selectRow( 'updatelog', '1', array( 'ul_key' => $key ), __METHOD__
) )
1265 $this->output( "..." . $this->updateSkippedMessage() . "\n" );
1269 if ( !$this->doDBUpdates() ) {
1274 $db->insert( 'updatelog', array( 'ul_key' => $key ), __METHOD__
, 'IGNORE' ) )
1278 $this->output( $this->updatelogFailedMessage() . "\n" );
1284 * Message to show that the update was done already and was just skipped
1287 protected function updateSkippedMessage() {
1288 $key = $this->getUpdateKey();
1289 return "Update '{$key}' already logged as completed.";
1293 * Message to show the the update log was unable to log the completion of this update
1296 protected function updatelogFailedMessage() {
1297 $key = $this->getUpdateKey();
1298 return "Unable to log update '{$key}' as completed.";
1302 * Do the actual work. All child classes will need to implement this.
1303 * Return true to log the update as done or false (usually on failure).
1306 abstract protected function doDBUpdates();
1309 * Get the update key name to go in the update log table
1312 abstract protected function getUpdateKey();