MediaWiki REL1_30
sql.php
Go to the documentation of this file.
1<?php
25require_once __DIR__ . '/Maintenance.php';
26
30
36class MwSql extends Maintenance {
37 public function __construct() {
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.' );
41 $this->addOption( 'query',
42 'Run a single query instead of running interactively', false, true );
43 $this->addOption( 'cluster', 'Use an external cluster by name', false, true );
44 $this->addOption( 'wikidb',
45 'The database wiki ID to use if not the current one', false, true );
46 $this->addOption( 'replicadb',
47 'Replica DB server to use instead of the master DB (can be "any")', false, true );
48 }
49
50 public function execute() {
51 global $IP;
52
53 // We wan't to allow "" for the wikidb, meaning don't call select_db()
54 $wiki = $this->hasOption( 'wikidb' ) ? $this->getOption( 'wikidb' ) : false;
55 // Get the appropriate load balancer (for this wiki)
56 if ( $this->hasOption( 'cluster' ) ) {
57 $lb = wfGetLBFactory()->getExternalLB( $this->getOption( 'cluster' ) );
58 } else {
59 $lb = wfGetLB( $wiki );
60 }
61 // Figure out which server to use
62 $replicaDB = $this->getOption( 'replicadb', $this->getOption( 'slave', '' ) );
63 if ( $replicaDB === 'any' ) {
64 $index = DB_REPLICA;
65 } elseif ( $replicaDB != '' ) {
66 $index = null;
67 $serverCount = $lb->getServerCount();
68 for ( $i = 0; $i < $serverCount; ++$i ) {
69 if ( $lb->getServerName( $i ) === $replicaDB ) {
70 $index = $i;
71 break;
72 }
73 }
74 if ( $index === null ) {
75 $this->error( "No replica DB server configured with the name '$replicaDB'.", 1 );
76 }
77 } else {
78 $index = DB_MASTER;
79 }
80
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 );
85 }
86
87 if ( $index === DB_MASTER ) {
88 $updater = DatabaseUpdater::newForDB( $db, true, $this );
89 $db->setSchemaVars( $updater->getSchemaVars() );
90 }
91
92 if ( $this->hasArg( 0 ) ) {
93 $file = fopen( $this->getArg( 0 ), 'r' );
94 if ( !$file ) {
95 $this->error( "Unable to open input file", true );
96 }
97
98 $error = $db->sourceStream( $file, null, [ $this, 'sqlPrintResult' ] );
99 if ( $error !== true ) {
100 $this->error( $error, true );
101 } else {
102 exit( 0 );
103 }
104 }
105
106 if ( $this->hasOption( 'query' ) ) {
107 $query = $this->getOption( 'query' );
108 $this->sqlDoQuery( $db, $query, /* dieOnError */ true );
110 return;
111 }
112
113 if (
114 function_exists( 'readline_add_history' ) &&
115 Maintenance::posix_isatty( 0 /*STDIN*/ )
116 ) {
117 $historyFile = isset( $_ENV['HOME'] ) ?
118 "{$_ENV['HOME']}/.mwsql_history" : "$IP/maintenance/.mwsql_history";
119 readline_read_history( $historyFile );
120 } else {
121 $historyFile = null;
122 }
123
124 $wholeLine = '';
125 $newPrompt = '> ';
126 $prompt = $newPrompt;
127 $doDie = !Maintenance::posix_isatty( 0 );
128 while ( ( $line = Maintenance::readconsole( $prompt ) ) !== false ) {
129 if ( !$line ) {
130 # User simply pressed return key
131 continue;
132 }
133 $done = $db->streamStatementEnd( $wholeLine, $line );
134
135 $wholeLine .= $line;
136
137 if ( !$done ) {
138 $wholeLine .= ' ';
139 $prompt = ' -> ';
140 continue;
141 }
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 );
147 }
148 $this->sqlDoQuery( $db, $wholeLine, $doDie );
149 $prompt = $newPrompt;
150 $wholeLine = '';
151 }
153 }
154
155 protected function sqlDoQuery( IDatabase $db, $line, $dieOnError ) {
156 try {
157 $res = $db->query( $line );
158 $this->sqlPrintResult( $res, $db );
159 } catch ( DBQueryError $e ) {
160 $this->error( $e, $dieOnError );
161 }
162 }
163
169 public function sqlPrintResult( $res, $db ) {
170 if ( !$res ) {
171 // Do nothing
172 return;
173 } elseif ( is_object( $res ) && $res->numRows() ) {
174 foreach ( $res as $row ) {
175 $this->output( print_r( $row, true ) );
176 }
177 } else {
178 $affected = $db->affectedRows();
179 $this->output( "Query OK, $affected row(s) affected\n" );
180 }
181 }
182
186 public function getDbType() {
188 }
189}
190
191$maintClass = "MwSql";
192require_once RUN_MAINTENANCE_IF_MAIN;
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfWaitForSlaves( $ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
wfGetLB( $wiki=false)
Get a load balancer object.
wfGetLBFactory()
Get the load balancer factory object.
$IP
Definition WebStart.php:57
$line
Definition cdb.php:58
static newForDB(Database $db, $shared=false, $maintenance=null)
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
error( $err, $die=0)
Throw an error to the user.
hasArg( $argId=0)
Does a given argument exist?
hasOption( $name)
Checks to see if a particular param exists.
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...
getArg( $argId=0, $default=null)
Get an argument.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
Maintenance script that sends SQL queries from the specified file to the database.
Definition sql.php:36
sqlPrintResult( $res, $db)
Print the results, callback for $db->sourceStream()
Definition sql.php:169
__construct()
Default constructor.
Definition sql.php:37
sqlDoQuery(IDatabase $db, $line, $dieOnError)
Definition sql.php:155
execute()
Do the actual work.
Definition sql.php:50
getDbType()
Definition sql.php:186
Result wrapper for grabbing data queried from an IDatabase object.
$res
Definition database.txt:21
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
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
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
null for the local 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
Definition hooks.txt:1610
returning false will NOT prevent logging $e
Definition hooks.txt:2146
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
Definition injection.txt:37
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:40
query( $sql, $fname=__METHOD__, $tempIgnore=false)
Run an SQL query and return the result.
require_once RUN_MAINTENANCE_IF_MAIN
const DB_REPLICA
Definition defines.php:25
const DB_MASTER
Definition defines.php:26
$maintClass
Definition sql.php:191