* Adding a space to the sh name so that it breaks across lines
[lhc/web/wiklou.git] / maintenance / dumpBackup.php
index c5b05b9..065eb7e 100644 (file)
@@ -28,119 +28,10 @@ $optionsWithArgs = array( 'server', 'pagelist', 'start', 'end' );
 
 require_once( 'commandLine.inc' );
 require_once( 'SpecialExport.php' );
+require_once( 'maintenance/backup.inc' );
 
-class BackupDumper {
-       var $reportingInterval = 100;
-       var $reporting = true;
-       var $pageCount = 0;
-       var $revCount  = 0;
-       var $server    = null; // use default
-       var $pages     = null; // all pages
-       var $skipHeader = false; // don't output <mediawiki> and <siteinfo>
-       var $skipFooter = false; // don't output </mediawiki>
-       var $startId    = 0;
-       var $endId      = 0;
-       
-       function BackupDumper() {
-               $this->stderr = fopen( "php://stderr", "wt" );
-       }
-       
-       function dump( $history ) {
-               # This shouldn't happen if on console... ;)
-               header( 'Content-type: text/html; charset=UTF-8' );
-               
-               # Notice messages will foul up your XML output even if they're
-               # relatively harmless.
-               ini_set( 'display_errors', false );
-               
-               $this->startTime = wfTime();
-               
-               $dbr =& wfGetDB( DB_SLAVE );
-               $this->maxCount = $dbr->selectField( 'page', 'MAX(page_id)', '', 'BackupDumper::dump' );
-               $this->startTime = wfTime();
-               
-               $db =& $this->backupDb();
-               $exporter = new WikiExporter( $db, $history, MW_EXPORT_STREAM );
-               $exporter->setPageCallback( array( &$this, 'reportPage' ) );
-               $exporter->setRevisionCallback( array( &$this, 'revCount' ) );
-               
-               if( !$this->skipHeader )
-                       $exporter->openStream();
-
-               if( is_null( $this->pages ) ) {
-                       if( $this->startId || $this->endId ) {
-                               $exporter->pagesByRange( $this->startId, $this->endId );
-                       } else {
-                               $exporter->allPages();
-                       }
-               } else {
-                       $exporter->pagesByName( $this->pages );
-               }
-
-               if( !$this->skipFooter )
-                       $exporter->closeStream();
-               
-               $this->report( true );
-       }
-       
-       function &backupDb() {
-               global $wgDBadminuser, $wgDBadminpassword;
-               global $wgDBname;
-               $db =& new Database( $this->backupServer(), $wgDBadminuser, $wgDBadminpassword, $wgDBname );
-               $timeout = 3600 * 24;
-               $db->query( "SET net_read_timeout=$timeout" );
-               $db->query( "SET net_write_timeout=$timeout" );
-               return $db;
-       }
-       
-       function backupServer() {
-               global $wgDBserver;
-               return $this->server
-                       ? $this->server
-                       : $wgDBserver;
-       }
-
-       function reportPage( $page ) {
-               $this->pageCount++;
-               $this->report();
-       }
-       
-       function revCount( $rev ) {
-               $this->revCount++;
-       }
-       
-       function report( $final = false ) {
-               if( $final xor ( $this->pageCount % $this->reportingInterval == 0 ) ) {
-                       $this->showReport();
-               }
-       }
-       
-       function showReport() {
-               if( $this->reporting ) {
-                       $delta = wfTime() - $this->startTime;
-                       $now = wfTimestamp( TS_DB );
-                       if( $delta ) {
-                               $rate = $this->pageCount / $delta;
-                               $revrate = $this->revCount / $delta;
-                               $portion = $this->pageCount / $this->maxCount;
-                               $eta = $this->startTime + $delta / $portion;
-                               $etats = wfTimestamp( TS_DB, intval( $eta ) );
-                       } else {
-                               $rate = '-';
-                               $revrate = '-';
-                               $etats = '-';
-                       }
-                       global $wgDBname;
-                       $this->progress( "$now: $wgDBname $this->pageCount, ETA $etats ($rate pages/sec $revrate revs/sec)" );
-               }
-       }
-       
-       function progress( $string ) {
-               fwrite( $this->stderr, $string . "\n" );
-       }
-}
+$dumper = new BackupDumper( $argv );
 
-$dumper = new BackupDumper();
 if( isset( $options['quiet'] ) ) {
        $dumper->reporting = false;
 }
@@ -173,10 +64,12 @@ if( isset( $options['end'] ) ) {
 $dumper->skipHeader = isset( $options['skip-header'] );
 $dumper->skipFooter = isset( $options['skip-footer'] );
 
+$textMode = isset( $options['stub'] ) ? MW_EXPORT_STUB : MW_EXPORT_TEXT;
+
 if( isset( $options['full'] ) ) {
-       $dumper->dump( MW_EXPORT_FULL );
+       $dumper->dump( MW_EXPORT_FULL, $textMode );
 } elseif( isset( $options['current'] ) ) {
-       $dumper->dump( MW_EXPORT_CURRENT );
+       $dumper->dump( MW_EXPORT_CURRENT, $textMode );
 } else {
        $dumper->progress( <<<END
 This script dumps the wiki page database into an XML interchange wrapper
@@ -198,6 +91,7 @@ Options:
   --end=n     Stop before page_id n (exclusive)
   --skip-header Don't output the <mediawiki> header
   --skip-footer Don't output the </mediawiki> footer
+  --stub      Don't perform old_text lookups; for 2-pass dump
 END
 );
 }