Go to the documentation of this file.
25 require_once __DIR__ .
'/Maintenance.php';
38 parent::__construct();
39 $this->
addDescription(
'Send SQL queries to a MediaWiki database. ' .
40 'Takes a file name containing SQL as argument or runs interactively.' );
42 'Run a single query instead of running interactively',
false,
true );
43 $this->
addOption(
'cluster',
'Use an external cluster by name',
false,
true );
45 'The database wiki ID to use if not the current one',
false,
true );
47 'Replica DB server to use instead of the master DB (can be "any")',
false,
true );
63 if ( $replicaDB ===
'any' ) {
65 } elseif ( $replicaDB !=
'' ) {
67 $serverCount = $lb->getServerCount();
68 for ( $i = 0; $i < $serverCount; ++$i ) {
69 if ( $lb->getServerName( $i ) === $replicaDB ) {
74 if ( $index ===
null ) {
75 $this->
error(
"No replica DB server configured with the name '$replicaDB'.", 1 );
82 $db = $lb->getConnection( $index, [], $wiki );
83 if ( $replicaDB !=
'' && $db->getLBInfo(
'master' ) !== null ) {
84 $this->
error(
"The server selected ({$db->getServer()}) is not a replica DB.", 1 );
89 $db->setSchemaVars( $updater->getSchemaVars() );
92 if ( $this->
hasArg( 0 ) ) {
93 $file = fopen( $this->
getArg( 0 ),
'r' );
95 $this->
error(
"Unable to open input file",
true );
98 $error = $db->sourceStream( $file,
null, [ $this,
'sqlPrintResult' ] );
99 if ( $error !==
true ) {
100 $this->
error( $error,
true );
114 function_exists(
'readline_add_history' ) &&
117 $historyFile = isset( $_ENV[
'HOME'] ) ?
118 "{$_ENV['HOME']}/.mwsql_history" :
"$IP/maintenance/.mwsql_history";
119 readline_read_history( $historyFile );
126 $prompt = $newPrompt;
130 # User simply pressed return key
133 $done = $db->streamStatementEnd( $wholeLine,
$line );
142 if ( $historyFile ) {
143 # Delimiter is eated by streamStatementEnd, we add it
144 # up in the history (T39020)
145 readline_add_history( $wholeLine .
';' );
146 readline_write_history( $historyFile );
149 $prompt = $newPrompt;
160 $this->
error( $e, $dieOnError );
173 } elseif ( is_object(
$res ) &&
$res->numRows() ) {
174 foreach (
$res as $row ) {
175 $this->
output( print_r( $row,
true ) );
178 $affected = $db->affectedRows();
179 $this->
output(
"Query OK, $affected row(s) affected\n" );
sqlDoQuery(IDatabase $db, $line, $dieOnError)
__construct()
Default constructor.
sqlPrintResult( $res, $db)
Print the results, callback for $db->sourceStream()
wfGetLB( $wiki=false)
Get a load balancer object.
addDescription( $text)
Set the description text.
static readconsole( $prompt='> ')
Prompt the console for input.
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
require_once RUN_MAINTENANCE_IF_MAIN
hasArg( $argId=0)
Does a given argument exist?
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
wfWaitForSlaves( $ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
null for the wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
execute()
Do the actual work.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
when a variable name is used in a it is silently declared as a new masking the global
Maintenance script that sends SQL queries from the specified file to the database.
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
static newForDB(Database $db, $shared=false, $maintenance=null)
static posix_isatty( $fd)
Wrapper for posix_isatty() We default as considering stdin a tty (for nice readline methods) but trea...
wfGetLBFactory()
Get the load balancer factory object.
getOption( $name, $default=null)
Get an option, or return the default.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
error( $err, $die=0)
Throw an error to the user.
output( $out, $channel=null)
Throw some output to the user.
hasOption( $name)
Checks to see if a particular param exists.
getArg( $argId=0, $default=null)
Get an argument.