25require_once __DIR__ .
'/../includes/PHPVersionCheck.php';
37define(
'RUN_MAINTENANCE_IF_MAIN', __DIR__ .
'/doMaintenance.php' );
162 $IP = strval( getenv(
'MW_INSTALL_PATH' ) ) !==
''
163 ? getenv(
'MW_INSTALL_PATH' )
164 : realpath( __DIR__ .
'/..' );
167 register_shutdown_function( [ $this,
'outputChanneled' ],
false );
180 if ( !function_exists(
'debug_backtrace' ) ) {
185 $bt = debug_backtrace();
186 $count = count( $bt );
190 if ( $bt[0][
'class'] !== self::class || $bt[0][
'function'] !==
'shouldExecute' ) {
193 $includeFuncs = [
'require_once',
'require',
'include',
'include_once' ];
194 for ( $i = 1; $i < $count; $i++ ) {
195 if ( !in_array( $bt[$i][
'function'], $includeFuncs ) ) {
219 protected function addOption( $name, $description, $required =
false,
220 $withArg =
false, $shortName =
false, $multiOccurrence =
false
222 $this->mParams[
$name] = [
223 'desc' => $description,
224 'require' => $required,
225 'withArg' => $withArg,
226 'shortName' => $shortName,
227 'multiOccurrence' => $multiOccurrence
230 if ( $shortName !==
false ) {
231 $this->mShortParamsMap[$shortName] =
$name;
241 return isset( $this->mOptions[$name] );
254 protected function getOption( $name, $default =
null ) {
256 return $this->mOptions[
$name];
259 $this->mOptions[
$name] = $default;
261 return $this->mOptions[
$name];
271 protected function addArg( $arg, $description, $required =
true ) {
272 $this->mArgList[] = [
274 'desc' => $description,
275 'require' => $required
284 unset( $this->mParams[$name] );
292 $this->mDescription = $text;
300 protected function hasArg( $argId = 0 ) {
301 return isset( $this->mArgs[$argId] );
310 protected function getArg( $argId = 0, $default =
null ) {
311 return $this->
hasArg( $argId ) ? $this->mArgs[$argId] : $default;
330 $this->mBatchSize =
$s;
337 if ( $this->mBatchSize ) {
338 $this->
addOption(
'batch-size',
'Run this many operations ' .
339 'per batch, default: ' . $this->mBatchSize,
false,
true );
340 if ( isset( $this->mParams[
'batch-size'] ) ) {
342 $this->mDependantParameters[
'batch-size'] = $this->mParams[
'batch-size'];
362 if ( $len == self::STDIN_ALL ) {
363 return file_get_contents(
'php://stdin' );
365 $f = fopen(
'php://stdin',
'rt' );
369 $input = fgets( $f, $len );
390 if ( class_exists( MediaWikiServices::class ) ) {
392 $stats = MediaWikiServices::getInstance()->getStatsdDataFactory();
393 if ( $stats->getDataCount() > 1000 ) {
394 MediaWiki::emitBufferedStatsdData( $stats, $this->
getConfig() );
398 if ( $this->mQuiet ) {
401 if ( $channel ===
null ) {
405 $out = preg_replace(
'/\n\z/',
'',
$out );
416 protected function error( $err, $die = 0 ) {
417 if ( intval( $die ) !== 0 ) {
423 ( PHP_SAPI ==
'cli' || PHP_SAPI ==
'phpdbg' ) &&
424 !defined(
'MW_PHPUNIT_TEST' )
426 fwrite( STDERR, $err .
"\n" );
440 $this->
error( $msg );
451 if ( !$this->atLineStart ) {
453 $this->atLineStart =
true;
466 if ( $msg ===
false ) {
473 if ( !$this->atLineStart && $channel !== $this->lastChannel ) {
479 $this->atLineStart =
false;
480 if ( $channel ===
null ) {
483 $this->atLineStart =
true;
485 $this->lastChannel = $channel;
506 # Generic (non script dependant) options:
508 $this->
addOption(
'help',
'Display this help message',
false,
false,
'h' );
509 $this->
addOption(
'quiet',
'Whether to supress non-error output',
false,
false,
'q' );
510 $this->
addOption(
'conf',
'Location of LocalSettings.php, if not default',
false,
true );
511 $this->
addOption(
'wiki',
'For specifying the wiki ID',
false,
true );
512 $this->
addOption(
'globals',
'Output globals at the end of processing for debugging' );
515 'Set a specific memory limit for the script, '
516 .
'"max" for no limit or "default" to avoid changing it',
520 $this->
addOption(
'server',
"The protocol and server name to use in URLs, e.g. " .
521 "http://en.wikipedia.org. This is sometimes necessary because " .
522 "server name detection may fail in command line scripts.",
false,
true );
523 $this->
addOption(
'profiler',
'Profiler output format (usually "text")',
false,
true );
525 $this->
addOption(
'mwdebug',
'Enable built-in MediaWiki development settings',
false,
true );
527 # Save generic options to display them separately in help
530 # Script dependant options:
534 $this->
addOption(
'dbuser',
'The DB user to use for this script',
false,
true );
535 $this->
addOption(
'dbpass',
'The password to use for this script',
false,
true );
538 # Save additional script dependant options to display
539 # Â them separately in help
540 $this->mDependantParameters = array_diff_key( $this->mParams, $this->mGenericParameters );
548 if ( $this->config ===
null ) {
549 $this->config = MediaWikiServices::getInstance()->getMainConfig();
573 $this->requiredExtensions[] =
$name;
584 foreach ( $this->requiredExtensions as $name ) {
585 if ( !$registry->isLoaded( $name ) ) {
591 $joined = implode(
', ', $missing );
592 $msg =
"The following extensions are required to be installed "
593 .
"for this script to run: $joined. Please enable them and then try again.";
603 if ( function_exists(
'posix_getpwuid' ) ) {
604 $agent = posix_getpwuid( posix_geteuid() )[
'name'];
610 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
612 $lbFactory->setAgentName(
613 mb_strlen( $agent ) > 15 ? mb_substr( $agent, 0, 15 ) .
'...' : $agent
624 $services = MediaWikiServices::getInstance();
625 $stats =
$services->getStatsdDataFactory();
627 $lbFactory =
$services->getDBLoadBalancerFactory();
628 $lbFactory->setWaitForReplicationListener(
630 function () use ( $stats,
$config ) {
633 DeferredUpdates::tryOpportunisticExecute(
'run' );
636 MediaWiki::emitBufferedStatsdData( $stats,
$config );
641 $lbFactory->getMainLB()->setTransactionListener(
643 function ( $trigger )
use ( $stats,
$config ) {
645 if (
$config->
get(
'CommandLineMode' ) && $trigger === IDatabase::TRIGGER_COMMIT ) {
646 DeferredUpdates::tryOpportunisticExecute(
'run' );
649 MediaWiki::emitBufferedStatsdData( $stats,
$config );
665 require_once $classFile;
668 $this->
error(
"Cannot spawn child: $maintClass" );
676 $child->loadParamsAndArgs( $this->mSelf, $this->mOptions, $this->mArgs );
677 if ( !is_null( $this->mDb ) ) {
678 $child->setDB( $this->mDb );
690 # Abort if called from a web server
691 # wfIsCLI() is not available yet
692 if ( PHP_SAPI !==
'cli' && PHP_SAPI !==
'phpdbg' ) {
693 $this->
fatalError(
'This script must be run from the command line' );
696 if ( $IP ===
null ) {
697 $this->
fatalError(
"\$IP not set, aborting!\n" .
698 '(Did you forget to call parent::__construct() in your maintenance script?)' );
701 # Make sure we can handle script parameters
702 if ( !defined(
'HPHP_VERSION' ) && !ini_get(
'register_argc_argv' ) ) {
703 $this->
fatalError(
'Cannot get command line arguments, register_argc_argv is set to false' );
709 if ( ini_get(
'display_errors' ) ) {
710 ini_set(
'display_errors',
'stderr' );
716 # Set the memory limit
717 # Note we need to set it again later in cache LocalSettings changed it
720 # Set max execution time to 0 (no limit). PHP.net says that
721 # "When running PHP from the command line the default setting is 0."
722 # But sometimes this doesn't seem to be the case.
723 ini_set(
'max_execution_time', 0 );
725 # Define us as being in MediaWiki
726 define(
'MEDIAWIKI',
true );
730 # Turn off output buffering if it's on
731 while ( ob_get_level() > 0 ) {
748 $limit = $this->
getOption(
'memory-limit',
'max' );
749 $limit = trim( $limit,
"\" '" );
758 if ( $limit ==
'max' ) {
761 if ( $limit !=
'default' ) {
762 ini_set(
'memory_limit', $limit );
780 $profiler =
new $class(
781 [
'sampling' => 1,
'output' => [
$output ] ]
785 $profiler->setTemplated(
true );
786 Profiler::replaceStubInstance( $profiler );
789 $trxProfiler = Profiler::instance()->getTransactionProfiler();
790 $trxProfiler->setLogger( LoggerFactory::getInstance(
'DBPerformance' ) );
798 $this->mOptions = [];
800 $this->mInputLoaded =
false;
813 $this->orderedOptions = [];
816 for ( $arg = reset(
$argv ); $arg !==
false; $arg = next(
$argv ) ) {
817 if ( $arg ==
'--' ) {
818 # End of options, remainder should be considered arguments
819 $arg = next(
$argv );
820 while ( $arg !==
false ) {
822 $arg = next(
$argv );
825 } elseif ( substr( $arg, 0, 2 ) ==
'--' ) {
827 $option = substr( $arg, 2 );
828 if ( isset( $this->mParams[$option] ) && $this->mParams[$option][
'withArg'] ) {
829 $param = next(
$argv );
830 if ( $param ===
false ) {
831 $this->
error(
"\nERROR: $option parameter needs a value after it\n" );
837 $bits = explode(
'=', $option, 2 );
838 if ( count( $bits ) > 1 ) {
847 } elseif ( $arg ==
'-' ) {
848 # Lonely "-", often used to indicate stdin or stdout.
850 } elseif ( substr( $arg, 0, 1 ) ==
'-' ) {
852 $argLength = strlen( $arg );
853 for ( $p = 1; $p < $argLength; $p++ ) {
855 if ( !isset( $this->mParams[$option] ) && isset( $this->mShortParamsMap[$option] ) ) {
856 $option = $this->mShortParamsMap[$option];
859 if ( isset( $this->mParams[$option][
'withArg'] ) && $this->mParams[$option][
'withArg'] ) {
860 $param = next(
$argv );
861 if ( $param ===
false ) {
862 $this->
error(
"\nERROR: $option parameter needs a value after it\n" );
876 $this->mArgs =
$args;
878 $this->mInputLoaded =
true;
894 $this->orderedOptions[] = [ $option,
$value ];
896 if ( isset( $this->mParams[$option] ) ) {
897 $multi = $this->mParams[$option][
'multiOccurrence'];
901 $exists = array_key_exists( $option,
$options );
902 if ( $multi && $exists ) {
904 } elseif ( $multi ) {
906 } elseif ( !$exists ) {
909 $this->
error(
"\nERROR: $option parameter given twice\n" );
924 # If we were given opts or args, set those and return early
926 $this->mSelf =
$self;
927 $this->mInputLoaded =
true;
930 $this->mOptions = $opts;
931 $this->mInputLoaded =
true;
934 $this->mArgs =
$args;
935 $this->mInputLoaded =
true;
938 # If we've already loaded input (either by user values or from $argv)
939 # skip on loading it again. The array_shift() will corrupt values if
940 # it's run again and again
941 if ( $this->mInputLoaded ) {
948 $this->mSelf =
$argv[0];
957 # Check to make sure we've got all the required options
958 foreach ( $this->mParams as
$opt => $info ) {
960 $this->
error(
"Param $opt required!" );
965 foreach ( $this->mArgList as $k => $info ) {
966 if ( $info[
'require'] && !$this->
hasArg( $k ) ) {
967 $this->
error(
'Argument <' . $info[
'name'] .
'> required!' );
982 $this->mDbUser = $this->
getOption(
'dbuser' );
985 $this->mDbPass = $this->
getOption(
'dbpass' );
988 $this->mQuiet =
true;
990 if ( $this->
hasOption(
'batch-size' ) ) {
991 $this->mBatchSize = intval( $this->
getOption(
'batch-size' ) );
1000 if ( !$force && !$this->
hasOption(
'help' ) ) {
1006 $descWidth = $screenWidth - ( 2 * strlen( $tab ) );
1008 ksort( $this->mParams );
1009 $this->mQuiet =
false;
1012 if ( $this->mDescription ) {
1013 $this->
output(
"\n" . wordwrap( $this->mDescription, $screenWidth ) .
"\n" );
1015 $output =
"\nUsage: php " . basename( $this->mSelf );
1018 if ( $this->mParams ) {
1019 $output .=
" [--" . implode(
"|--", array_keys( $this->mParams ) ) .
"]";
1023 if ( $this->mArgList ) {
1025 foreach ( $this->mArgList as $k => $arg ) {
1026 if ( $arg[
'require'] ) {
1027 $output .=
'<' . $arg[
'name'] .
'>';
1029 $output .=
'[' . $arg[
'name'] .
']';
1031 if ( $k < count( $this->mArgList ) - 1 ) {
1036 $this->
output(
"$output\n\n" );
1038 # TODO abstract some repetitive code below
1041 $this->
output(
"Generic maintenance parameters:\n" );
1042 foreach ( $this->mGenericParameters as $par => $info ) {
1043 if ( $info[
'shortName'] !==
false ) {
1044 $par .=
" (-{$info['shortName']})";
1047 wordwrap(
"$tab--$par: " . $info[
'desc'], $descWidth,
1048 "\n$tab$tab" ) .
"\n"
1054 if ( count( $scriptDependantParams ) > 0 ) {
1055 $this->
output(
"Script dependant parameters:\n" );
1057 foreach ( $scriptDependantParams as $par => $info ) {
1058 if ( $info[
'shortName'] !==
false ) {
1059 $par .=
" (-{$info['shortName']})";
1062 wordwrap(
"$tab--$par: " . $info[
'desc'], $descWidth,
1063 "\n$tab$tab" ) .
"\n"
1071 $scriptSpecificParams = array_diff_key(
1072 # all script parameters:
1074 # remove the Maintenance default parameters:
1078 if ( count( $scriptSpecificParams ) > 0 ) {
1079 $this->
output(
"Script specific parameters:\n" );
1081 foreach ( $scriptSpecificParams as $par => $info ) {
1082 if ( $info[
'shortName'] !==
false ) {
1083 $par .=
" (-{$info['shortName']})";
1086 wordwrap(
"$tab--$par: " . $info[
'desc'], $descWidth,
1087 "\n$tab$tab" ) .
"\n"
1094 if ( count( $this->mArgList ) > 0 ) {
1095 $this->
output(
"Arguments:\n" );
1097 foreach ( $this->mArgList as $info ) {
1098 $openChar = $info[
'require'] ?
'<' :
'[';
1099 $closeChar = $info[
'require'] ?
'>' :
']';
1101 wordwrap(
"$tab$openChar" . $info[
'name'] .
"$closeChar: " .
1102 $info[
'desc'], $descWidth,
"\n$tab$tab" ) .
"\n"
1119 # Turn off output buffering again, it might have been turned on in the settings files
1120 if ( ob_get_level() ) {
1126 # Override $wgServer
1128 $wgServer = $this->
getOption(
'server', $wgServer );
1131 # If these were passed, use them
1132 if ( $this->mDbUser ) {
1135 if ( $this->mDbPass ) {
1156 MediaWikiServices::getInstance()->getDBLoadBalancerFactory()->destroy();
1159 # Apply debug settings
1161 require __DIR__ .
'/../includes/DevelopmentSettings.php';
1169 $wgShowSQLErrors =
true;
1171 Wikimedia\suppressWarnings();
1172 set_time_limit( 0 );
1173 Wikimedia\restoreWarnings();
1182 if ( defined(
'MW_CMDLINE_CALLBACK' ) ) {
1183 call_user_func( MW_CMDLINE_CALLBACK );
1204 if ( isset( $this->mOptions[
'conf'] ) ) {
1205 $settingsFile = $this->mOptions[
'conf'];
1206 } elseif ( defined(
"MW_CONFIG_FILE" ) ) {
1207 $settingsFile = MW_CONFIG_FILE;
1209 $settingsFile =
"$IP/LocalSettings.php";
1211 if ( isset( $this->mOptions[
'wiki'] ) ) {
1212 $bits = explode(
'-', $this->mOptions[
'wiki'] );
1213 if ( count( $bits ) == 1 ) {
1216 define(
'MW_DB', $bits[0] );
1217 define(
'MW_PREFIX', $bits[1] );
1218 } elseif ( isset( $this->mOptions[
'server'] ) ) {
1223 $_SERVER[
'SERVER_NAME'] = $this->mOptions[
'server'];
1226 if ( !is_readable( $settingsFile ) ) {
1227 $this->
fatalError(
"A copy of your installation's LocalSettings.php\n" .
1228 "must exist and be readable in the source directory.\n" .
1229 "Use --conf to specify it." );
1231 $wgCommandLineMode =
true;
1233 return $settingsFile;
1242 # Data should come off the master, wrapped in a transaction
1246 # Get "active" text records from the revisions table
1248 $this->
output(
'Searching for active text records in revisions table...' );
1249 $res = $dbw->select(
'revision',
'rev_text_id', [], __METHOD__, [
'DISTINCT' ] );
1250 foreach (
$res as $row ) {
1251 $cur[] = $row->rev_text_id;
1253 $this->
output(
"done.\n" );
1255 # Get "active" text records from the archive table
1256 $this->
output(
'Searching for active text records in archive table...' );
1257 $res = $dbw->select(
'archive',
'ar_text_id', [], __METHOD__, [
'DISTINCT' ] );
1258 foreach (
$res as $row ) {
1259 # old pre-MW 1.5 records can have null ar_text_id's.
1260 if ( $row->ar_text_id !==
null ) {
1261 $cur[] = $row->ar_text_id;
1264 $this->
output(
"done.\n" );
1266 # Get the IDs of all text records not in these sets
1267 $this->
output(
'Searching for inactive text records...' );
1268 $cond =
'old_id NOT IN ( ' . $dbw->makeList( $cur ) .
' )';
1269 $res = $dbw->select(
'text',
'old_id', [ $cond ], __METHOD__, [
'DISTINCT' ] );
1271 foreach (
$res as $row ) {
1272 $old[] = $row->old_id;
1274 $this->
output(
"done.\n" );
1276 # Inform the user of what we're going to do
1277 $count = count( $old );
1278 $this->
output(
"$count inactive items found.\n" );
1280 # Delete as appropriate
1281 if ( $delete && $count ) {
1282 $this->
output(
'Deleting...' );
1283 $dbw->delete(
'text', [
'old_id' => $old ], __METHOD__ );
1284 $this->
output(
"done.\n" );
1309 protected function getDB( $db, $groups = [], $wiki =
false ) {
1310 if ( is_null( $this->mDb ) ) {
1311 return wfGetDB( $db, $groups, $wiki );
1354 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
1355 $lbFactory->waitForReplication(
1356 [
'timeout' => 30,
'ifWritesSince' => $this->lastReplicationWait ]
1358 $this->lastReplicationWait = microtime(
true );
1385 $write = [
'searchindex' ];
1395 $db->lockTables( $read, $write, __CLASS__ .
'::' . __METHOD__ );
1403 $db->unlockTables( __CLASS__ .
'::' . __METHOD__ );
1427 if ( $maxLockTime ) {
1428 $this->
output(
" --- Waiting for lock ---" );
1434 # Loop through the results and do a search update
1435 foreach ( $results as $row ) {
1436 # Allow reads to be processed
1437 if ( $maxLockTime && time() > $lockTime + $maxLockTime ) {
1438 $this->
output(
" --- Relocking ---" );
1443 call_user_func( $callback, $dbw, $row );
1446 # Unlock searchindex
1447 if ( $maxLockTime ) {
1448 $this->
output(
" --- Unlocking --" );
1462 $rev = Revision::loadFromPageId( $dbw, $pageId );
1465 $titleObj =
$rev->getTitle();
1466 $title = $titleObj->getPrefixedDBkey();
1467 $this->
output(
"$title..." );
1468 # Update searchindex
1469 $u =
new SearchUpdate( $pageId, $titleObj->getText(),
$rev->getContent() );
1491 for ( $i = $seconds; $i >= 0; $i-- ) {
1492 if ( $i != $seconds ) {
1493 $this->
output( str_repeat(
"\x08", strlen( $i + 1 ) ) );
1512 if ( !function_exists(
'posix_isatty' ) ) {
1525 static $isatty =
null;
1526 if ( is_null( $isatty ) ) {
1530 if ( $isatty && function_exists(
'readline' ) ) {
1531 return readline( $prompt );
1536 if ( feof( STDIN ) ) {
1539 $st = fgets( STDIN, 1024 );
1542 if ( $st ===
false ) {
1545 $resp = trim( $st );
1557 $bash = ExecutableFinder::findInDefaultPaths(
'bash' );
1561 $command =
"read -er -p $encPrompt && echo \"\$REPLY\"";
1578 if ( feof( STDIN ) ) {
1583 return fgets( STDIN, 1024 );
1594 $default = [ 80, 50 ];
1605 $result = Shell::command(
'stty',
'size' )
1607 if ( $result->getExitCode() !== 0 ) {
1610 if ( !preg_match(
'/^(\d+) (\d+)$/', $result->getStdout(), $m ) ) {
1613 return [ intval( $m[2] ), intval( $m[1] ) ];
1621 require_once __DIR__ .
'/../tests/common/TestsAutoLoader.php';
1642 parent::__construct();
1643 $this->
addOption(
'force',
'Run the update even if it was completed already' );
1652 && $db->selectRow(
'updatelog',
'1', [
'ul_key' => $key ], __METHOD__ )
1663 if ( $db->insert(
'updatelog', [
'ul_key' => $key ], __METHOD__,
'IGNORE' ) ) {
1679 return "Update '{$key}' already logged as completed.";
1689 return "Unable to log update '{$key}' as completed.";
$wgDBuser
Database username.
$wgDBadminuser
Separate username for maintenance tasks.
$wgTrxProfilerLimits
Performance expectations for DB usage.
$wgDBservers
Database load balancer This is a two-dimensional array, an array of server info structures Fields are...
$wgProfileLimit
Only record profiling info for pages that took longer than this.
$wgDBadminpassword
Separate password for maintenance tasks.
$wgServer
URL of the server.
$wgLBFactoryConf
Load balancer factory configuration To set up a multi-master wiki farm, set the class here to somethi...
$wgDBpassword
Database user's password.
$wgShowSQLErrors
Whether to show "we're sorry, but there has been a database error" pages.
global $wgCommandLineMode
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfShellExec( $cmd, &$retval=null, $environ=[], $limits=[], $options=[])
Execute a shell command, with time and memory limits mirrored from the PHP configuration if supported...
wfHostname()
Fetch server name for use in error reporting etc.
wfEscapeShellArg()
Version of escapeshellarg() that works better on Windows.
wfIsWindows()
Check if the operating system is Windows.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
const RUN_MAINTENANCE_IF_MAIN
wfEntryPointCheck( $entryPoint)
Check php version and that external dependencies are installed, and display an informative error if e...
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
if(!defined( 'MEDIAWIKI')) $wgProfiler
This file is not a valid entry point, perform no further processing unless MEDIAWIKI is defined.
Fake maintenance wrapper, mostly used for the web installer/updater.
execute()
Do the actual work.
Class for scripts that perform database maintenance and want to log the update in updatelog so we can...
__construct()
Default constructor.
doDBUpdates()
Do the actual work.
updatelogFailedMessage()
Message to show that the update log was unable to log the completion of this update.
updateSkippedMessage()
Message to show that the update was done already and was just skipped.
getUpdateKey()
Get the update key name to go in the update log table.
execute()
Do the actual work.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
setup()
Do some sanity checking and basic setup.
__construct()
Default constructor.
error( $err, $die=0)
Throw an error to the user.
getName()
Get the script's name.
addArg( $arg, $description, $required=true)
Add some args that are needed.
requireExtension( $name)
Indicate that the specified extension must be loaded before the script can run.
relockSearchindex( $db)
Unlock and lock again Since the lock is low-priority, queued reads will be able to complete.
int $mBatchSize
Batch size.
setAgentAndTriggers()
Set triggers like when to try to run deferred updates.
beginTransaction(IDatabase $dbw, $fname)
Begin a transcation on a DB.
static getTermSize()
Get the terminal size as a two-element array where the first element is the width (number of columns)...
clearParamsAndArgs()
Clear all params and arguments.
static setLBFactoryTriggers(LBFactory $LBFactory, Config $config)
array $requiredExtensions
setParam(&$options, $option, $value)
Helper function used solely by loadParamsAndArgs to prevent code duplication.
const DB_NONE
Constants for DB access type.
commitTransaction(IDatabase $dbw, $fname)
Commit the transcation on a DB handle and wait for replica DBs to catch up.
output( $out, $channel=null)
Throw some output to the user.
getStdin( $len=null)
Return input from stdin.
cleanupChanneled()
Clean up channeled output.
memoryLimit()
Normally we disable the memory_limit when running admin scripts.
afterFinalSetup()
Execute a callback function at the end of initialisation.
hasArg( $argId=0)
Does a given argument exist?
getDir()
Get the maintenance directory.
addDefaultParams()
Add the default parameters to the scripts.
deleteOption( $name)
Remove an option.
static readlineEmulation( $prompt)
Emulate readline()
static requireTestsAutoloader()
Call this to set up the autoloader to allow classes to be used from the tests directory.
loadParamsAndArgs( $self=null, $opts=null, $args=null)
Process command line arguments $mOptions becomes an array with keys set to the option names $mArgs be...
outputChanneled( $msg, $channel=null)
Message outputter with channeled message support.
finalSetup()
Handle some last-minute setup here.
loadSpecialVars()
Handle the special variables that are global to all scripts.
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
float $lastReplicationWait
UNIX timestamp.
array $orderedOptions
Used to read the options in the order they were passed.
loadSettings()
Generic setup for most installs.
setDB(IDatabase $db)
Sets database object to be returned by getDB().
hasOption( $name)
Checks to see if a particular param exists.
purgeRedundantText( $delete=true)
Support function for cleaning up redundant text records.
countDown( $seconds)
Count down from $seconds to zero on the terminal, with a one-second pause between showing each number...
runChild( $maintClass, $classFile=null)
Run a child maintenance script.
IMaintainableDatabase $mDb
Used by getDB() / setDB()
execute()
Do the actual work.
static readconsole( $prompt='> ')
Prompt the console for input.
static posix_isatty( $fd)
Wrapper for posix_isatty() We default as considering stdin a tty (for nice readline methods) but trea...
adjustMemoryLimit()
Adjusts PHP's memory limit to better suit our needs, if needed.
validateParamsAndArgs()
Run some validation checks on the params, etc.
getDbType()
Does the script need different DB access? By default, we give Maintenance scripts normal rights to th...
getBatchSize()
Returns batch size.
unlockSearchindex( $db)
Unlock the tables.
getArg( $argId=0, $default=null)
Get an argument.
addDescription( $text)
Set the description text.
activateProfiler()
Activate the profiler (assuming $wgProfiler is set)
maybeHelp( $force=false)
Maybe show the help.
updateSearchIndexForPage( $dbw, $pageId)
Update the searchindex table for a given pageid.
resource $fileHandle
Used when creating separate schema files.
loadWithArgv( $argv)
Load params and arguments from a given array of command-line arguments.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
static shouldExecute()
Should we execute the maintenance script, or just allow it to be included as a standalone class?...
getOption( $name, $default=null)
Get an option, or return the default.
Config $config
Accessible via getConfig()
lockSearchindex( $db)
Lock the search index.
checkRequiredExtensions()
Verify that the required extensions are installed.
rollbackTransaction(IDatabase $dbw, $fname)
Rollback the transcation on a DB handle.
updateSearchIndex( $maxLockTime, $callback, $dbw, $results)
Perform a search index update with locking.
globals()
Potentially debug globals.
setConfig(Config $config)
setBatchSize( $s=0)
Set the batch size.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
Database independant search index updater.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account incomplete not yet checked for validity & $retval
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title after the basic globals have been set but before ordinary actions take place $output
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults error
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
namespace and then decline to actually register it file or subcat img or subcat $title
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title after the basic globals have been set but before ordinary actions take place or wrap services the preferred way to define a new service is the $wgServiceWiringFiles array $services
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Allows to change the fields on the form that will be generated $name
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
returning false will NOT prevent logging $e
while(( $__line=Maintenance::readconsole()) !==false) print
Interface for configuration instances.
get( $name)
Get a configuration variable such as "Sitename" or "UploadMaintenance.".
Advanced database interface for IDatabase handles that include maintenance methods.
if(is_array($mode)) switch( $mode) $input