Stylize maintenance folder..
[lhc/web/wiklou.git] / maintenance / sqlite.php
index 2a8b191..ebaa69d 100644 (file)
@@ -20,7 +20,7 @@
  * @ingroup Maintenance
  */
 
-require_once( dirname(__FILE__) . '/Maintenance.php' );
+require_once( dirname( __FILE__ ) . '/Maintenance.php' );
 
 class SqliteMaintenance extends Maintenance {
        public function __construct() {
@@ -28,6 +28,15 @@ class SqliteMaintenance extends Maintenance {
                $this->mDescription = "Performs some operations specific to SQLite database backend";
                $this->addOption( 'vacuum', 'Clean up database by removing deleted pages. Decreases database file size' );
                $this->addOption( 'integrity', 'Check database for integrity' );
+               $this->addOption( 'backup-to', 'Backup database to the given file', false, true );
+       }
+
+       /**
+        * While we use database connection, this simple lie prevents useless --dbpass and
+        * --dbuser options from appearing in help message for this script.
+        */
+       public function getDbType() {
+               return Maintenance::DB_NONE;
        }
 
        public function execute() {
@@ -40,22 +49,31 @@ class SqliteMaintenance extends Maintenance {
 
                $this->db = wfGetDB( DB_MASTER );
 
-               if ( $this->hasOption( 'vacuum' ) )
+               if ( $this->hasOption( 'vacuum' ) ) {
                        $this->vacuum();
+               }
 
-               if ( $this->hasOption( 'integrity' ) )
+               if ( $this->hasOption( 'integrity' ) ) {
                        $this->integrityCheck();
+               }
+
+               if ( $this->hasOption( 'backup-to' ) ) {
+                       $this->backup( $this->getOption( 'backup-to' ) );
+               }
        }
 
        private function vacuum() {
                $prevSize = filesize( $this->db->mDatabaseFile );
+               if ( $prevSize == 0 ) {
+                       $this->error( "Can't vacuum an empty database.\n", true );
+               }
 
                $this->output( 'VACUUM: ' );
                if ( $this->db->query( 'VACUUM' ) ) {
                        clearstatcache();
                        $newSize = filesize( $this->db->mDatabaseFile );
-                       $this->output( sprintf( "Database size was %d bytes, now %d (%.1f%% reduction).\n",
-                               $prevSize, $newSize, ( $prevSize - $newSize) * 100.0 / $prevSize ) );
+                       $this->output( sprintf( "Database size was %d, now %d (%.1f%% reduction).\n",
+                               $prevSize, $newSize, ( $prevSize - $newSize ) * 100.0 / $prevSize ) );
                } else {
                        $this->output( 'Error\n' );
                }
@@ -74,6 +92,21 @@ class SqliteMaintenance extends Maintenance {
                        $this->output( $row->integrity_check );
                }
        }
+
+       private function backup( $fileName ) {
+               $this->output( "Backing up database:\n   Locking..." );
+               $this->db->query( 'BEGIN IMMEDIATE TRANSACTION', __METHOD__ );
+               $ourFile = $this->db->mDatabaseFile;
+               $this->output( "   Copying database file $ourFile to $fileName... " );
+               wfSuppressWarnings( false );
+               if ( !copy( $ourFile, $fileName ) ) {
+                       $err = error_get_last();
+                       $this->error( "      {$err['message']}" );
+               }
+               wfSuppressWarnings( true );
+               $this->output( "   Releasing lock...\n" );
+               $this->db->query( 'COMMIT TRANSACTION', __METHOD__ );
+       }
 }
 
 $maintClass = "SqliteMaintenance";