3 * Send SQL queries from the specified file to the database, performing
4 * variable replacement along the way.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
22 * @ingroup Maintenance
25 require_once __DIR__
. '/Maintenance.php';
28 * Maintenance script that sends SQL queries from the specified file to the database.
30 * @ingroup Maintenance
32 class MwSql
extends Maintenance
{
33 public function __construct() {
34 parent
::__construct();
35 $this->mDescription
= "Send SQL queries to a MediaWiki database";
36 $this->addOption( 'cluster', 'Use an external cluster by name', false, true );
37 $this->addOption( 'wikidb', 'The database wiki ID to use if not the current one', false, true );
38 $this->addOption( 'slave', 'Use a slave server (either "any" or by name)', false, true );
41 public function execute() {
42 // We wan't to allow "" for the wikidb, meaning don't call select_db()
43 $wiki = $this->hasOption( 'wikidb' ) ?
$this->getOption( 'wikidb' ) : false;
44 // Get the appropriate load balancer (for this wiki)
45 if ( $this->hasOption( 'cluster' ) ) {
46 $lb = wfGetLBFactory()->getExternalLB( $this->getOption( 'cluster' ), $wiki );
48 $lb = wfGetLB( $wiki );
50 // Figure out which server to use
51 if ( $this->hasOption( 'slave' ) ) {
52 $server = $this->getOption( 'slave' );
53 if ( $server === 'any' ) {
57 $serverCount = $lb->getServerCount();
58 for ( $i = 0; $i < $serverCount; ++
$i ) {
59 if ( $lb->getServerName( $i ) === $server ) {
64 if ( $index === null ) {
65 $this->error( "No slave server configured with the name '$server'.", 1 );
71 // Get a DB handle (with this wiki's DB selected) from the appropriate load balancer
72 $db = $lb->getConnection( $index, array(), $wiki );
73 if ( $this->hasOption( 'slave' ) && $db->getLBInfo( 'master' ) !== null ) {
74 $this->error( "The server selected ({$db->getServer()}) is not a slave.", 1 );
77 if ( $this->hasArg( 0 ) ) {
78 $file = fopen( $this->getArg( 0 ), 'r' );
80 $this->error( "Unable to open input file", true );
83 $error = $db->sourceStream( $file, false, array( $this, 'sqlPrintResult' ) );
84 if ( $error !== true ) {
85 $this->error( $error, true );
91 $useReadline = function_exists( 'readline_add_history' )
92 && Maintenance
::posix_isatty( 0 /*STDIN*/ );
96 $historyFile = isset( $_ENV['HOME'] ) ?
97 "{$_ENV['HOME']}/.mwsql_history" : "$IP/maintenance/.mwsql_history";
98 readline_read_history( $historyFile );
103 $prompt = $newPrompt;
104 while ( ( $line = Maintenance
::readconsole( $prompt ) ) !== false ) {
106 # User simply pressed return key
109 $done = $db->streamStatementEnd( $wholeLine, $line );
118 if ( $useReadline ) {
119 # Delimiter is eated by streamStatementEnd, we add it
120 # up in the history (bug 37020)
121 readline_add_history( $wholeLine . $db->getDelimiter() );
122 readline_write_history( $historyFile );
125 $res = $db->query( $wholeLine );
126 $this->sqlPrintResult( $res, $db );
127 $prompt = $newPrompt;
129 } catch ( DBQueryError
$e ) {
130 $doDie = !Maintenance
::posix_isatty( 0 );
131 $this->error( $e, $doDie );
138 * Print the results, callback for $db->sourceStream()
139 * @param ResultWrapper $res The results object
140 * @param DatabaseBase $db
142 public function sqlPrintResult( $res, $db ) {
146 } elseif ( is_object( $res ) && $res->numRows() ) {
147 foreach ( $res as $row ) {
148 $this->output( print_r( $row, true ) );
151 $affected = $db->affectedRows();
152 $this->output( "Query OK, $affected row(s) affected\n" );
157 * @return int DB_TYPE constant
159 public function getDbType() {
160 return Maintenance
::DB_ADMIN
;
164 $maintClass = "MwSql";
165 require_once RUN_MAINTENANCE_IF_MAIN
;