(bug 41330) Default to the current year in the history page filter form
[lhc/web/wiklou.git] / maintenance / sql.php
index e601f88..72e6775 100644 (file)
  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  * http://www.gnu.org/copyleft/gpl.html
  *
+ * @file
  * @ingroup Maintenance
  */
 
-require_once( dirname( __FILE__ ) . '/Maintenance.php' );
+require_once( __DIR__ . '/Maintenance.php' );
 
+/**
+ * Maintenance script that sends SQL queries from the specified file to the database.
+ *
+ * @ingroup Maintenance
+ */
 class MwSql extends Maintenance {
        public function __construct() {
                parent::__construct();
@@ -30,32 +36,71 @@ class MwSql extends Maintenance {
        }
 
        public function execute() {
+               $dbw = wfGetDB( DB_MASTER );
                if ( $this->hasArg() ) {
                        $fileName = $this->getArg();
                        $file = fopen( $fileName, 'r' );
-                       $promptCallback = false;
-               } else {
-                       $file = $this->getStdin();
-                       $promptObject = new SqlPromptPrinter( "> " );
-                       $promptCallback = $promptObject->cb();
+                       if ( !$file ) {
+                               $this->error( "Unable to open input file", true );
+                       }
+
+                       $error = $dbw->sourceStream( $file, false, array( $this, 'sqlPrintResult' ) );
+                       if ( $error !== true ) {
+                               $this->error( $error, true );
+                       } else {
+                               exit( 0 );
+                       }
                }
 
-               if ( !$file )
-                       $this->error( "Unable to open input file", true );
+               $useReadline = function_exists( 'readline_add_history' )
+                               && Maintenance::posix_isatty( 0 /*STDIN*/ );
 
-               $dbw = wfGetDB( DB_MASTER );
-               $error = $dbw->sourceStream( $file, $promptCallback, array( $this, 'sqlPrintResult' ) );
-               if ( $error !== true ) {
-                       $this->error( $error, true );
-               } else {
-                       exit( 0 );
+               if ( $useReadline ) {
+                       global $IP;
+                       $historyFile = isset( $_ENV['HOME'] ) ?
+                                       "{$_ENV['HOME']}/.mwsql_history" : "$IP/maintenance/.mwsql_history";
+                       readline_read_history( $historyFile );
+               }
+
+               $wholeLine = '';
+               $newPrompt = '> ';
+               $prompt    = $newPrompt;
+               while ( ( $line = Maintenance::readconsole( $prompt ) ) !== false ) {
+                       if( !$line ) {
+                               # User simply pressed return key
+                               continue;
+                       }
+                       $done = $dbw->streamStatementEnd( $wholeLine, $line );
+
+                       $wholeLine .= $line;
+
+                       if ( !$done ) {
+                               $wholeLine .= ' ';
+                               $prompt = '    -> ';
+                               continue;
+                       }
+                       if ( $useReadline ) {
+                               # Delimiter is eated by streamStatementEnd, we add it
+                               # up in the history (bug 37020)
+                               readline_add_history( $wholeLine . $dbw->getDelimiter() );
+                               readline_write_history( $historyFile );
+                       }
+                       try{
+                               $res = $dbw->query( $wholeLine );
+                               $this->sqlPrintResult( $res, $dbw );
+                               $prompt    = $newPrompt;
+                               $wholeLine = '';
+                       } catch (DBQueryError $e) {
+                               $doDie = ! Maintenance::posix_isatty( 0 );
+                               $this->error( $e, $doDie );
+                       }
                }
        }
 
        /**
         * Print the results, callback for $db->sourceStream()
-        * @param $res The results object
-        * @param $db Database object
+        * @param $res ResultWrapper The results object
+        * @param $db DatabaseBase object
         */
        public function sqlPrintResult( $res, $db ) {
                if ( !$res ) {
@@ -70,24 +115,13 @@ class MwSql extends Maintenance {
                }
        }
 
+       /**
+        * @return int DB_TYPE constant
+        */
        public function getDbType() {
                return Maintenance::DB_ADMIN;
        }
 }
 
-class SqlPromptPrinter {
-       function __construct( $prompt ) {
-               $this->prompt = $prompt;
-       }
-
-       function cb() {
-               return array( $this, 'printPrompt' );
-       }
-
-       function printPrompt() {
-               echo $this->prompt;
-       }
-}
-
 $maintClass = "MwSql";
-require_once( DO_MAINTENANCE );
+require_once( RUN_MAINTENANCE_IF_MAIN );