X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FimportDump.php;h=17c040448ff83656119629807b680d18c647c050;hb=1b4d4f82a78ee43eaf1787385abc5b45b6679d98;hp=21894a62a48010400c78be6736eabb5b9c38b9d1;hpb=af2177edfd9b108eca8598f9ace57672f0521942;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/importDump.php b/maintenance/importDump.php index 21894a62a4..17c040448f 100644 --- a/maintenance/importDump.php +++ b/maintenance/importDump.php @@ -15,24 +15,28 @@ * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * - * @package MediaWiki - * @subpackage Maintenance + * @file + * @ingroup Maintenance */ $optionsWithArgs = array( 'report' ); -require_once( 'commandLine.inc' ); -require_once( 'SpecialImport.php' ); +require_once( dirname( __FILE__ ) . '/commandLine.inc' ); +/** + * @ingroup Maintenance + */ class BackupReader { var $reportingInterval = 100; var $reporting = true; var $pageCount = 0; var $revCount = 0; var $dryRun = false; + var $debug = false; + var $uploads = false; function BackupReader() { $this->stderr = fopen( "php://stderr", "wt" ); @@ -44,39 +48,66 @@ class BackupReader { function handleRevision( $rev ) { $title = $rev->getTitle(); - if (!$title) { + if ( !$title ) { + $this->progress( "Got bogus revision with null title!" ); return; } - $display = $title->getPrefixedText(); - $timestamp = $rev->getTimestamp(); - #echo "$display $timestamp\n"; $this->revCount++; $this->report(); - if( !$this->dryRun ) { + if ( !$this->dryRun ) { call_user_func( $this->importCallback, $rev ); } } + + function handleUpload( $revision ) { + if ( $this->uploads ) { + $this->uploadCount++; + // $this->report(); + $this->progress( "upload: " . $revision->getFilename() ); + + if ( !$this->dryRun ) { + // bluuuh hack + // call_user_func( $this->uploadCallback, $revision ); + $dbw = wfGetDB( DB_MASTER ); + return $dbw->deadlockLoop( array( $revision, 'importUpload' ) ); + } + } + } + + function handleLogItem( $rev ) { + $this->revCount++; + $this->report(); + + if ( !$this->dryRun ) { + call_user_func( $this->logItemCallback, $rev ); + } + } function report( $final = false ) { - if( $final xor ( $this->pageCount % $this->reportingInterval == 0 ) ) { + if ( $final xor ( $this->pageCount % $this->reportingInterval == 0 ) ) { $this->showReport(); } } function showReport() { - if( $this->reporting ) { + if ( $this->reporting ) { $delta = wfTime() - $this->startTime; - if( $delta ) { - $rate = $this->pageCount / $delta; - $revrate = $this->revCount / $delta; + if ( $delta ) { + $rate = sprintf( "%.2f", $this->pageCount / $delta ); + $revrate = sprintf( "%.2f", $this->revCount / $delta ); } else { $rate = '-'; $revrate = '-'; } - $this->progress( "$this->pageCount ($rate pages/sec $revrate revs/sec)" ); + # Logs dumps don't have page tallies + if ( $this->pageCount ) + $this->progress( "$this->pageCount ($rate pages/sec $revrate revs/sec)" ); + else + $this->progress( "$this->revCount ($revrate revs/sec)" ); } + wfWaitForSlaves( 5 ); } function progress( $string ) { @@ -84,16 +115,25 @@ class BackupReader { } function importFromFile( $filename ) { - if( preg_match( '/\.gz$/', $filename ) ) { + $t = true; + if ( preg_match( '/\.gz$/', $filename ) ) { $filename = 'compress.zlib://' . $filename; } - $file = fopen( $filename, 'rt' ); - $this->importFromHandle( $file ); + elseif ( preg_match( '/\.bz2$/', $filename ) ) { + $filename = 'compress.bzip2://' . $filename; + } + elseif ( preg_match( '/\.7z$/', $filename ) ) { + $filename = 'mediawiki.compress.7z://' . $filename; + $t = false; + } + + $file = fopen( $filename, $t ? 'rt' : 't' ); // our 7zip wrapper uses popen, which seems not to like two-letter modes + return $this->importFromHandle( $file ); } function importFromStdin() { $file = fopen( 'php://stdin', 'rt' ); - $this->importFromHandle( $file ); + return $this->importFromHandle( $file ); } function importFromHandle( $handle ) { @@ -102,29 +142,56 @@ class BackupReader { $source = new ImportStreamSource( $handle ); $importer = new WikiImporter( $source ); + $importer->setDebug( $this->debug ); $importer->setPageCallback( array( &$this, 'reportPage' ) ); $this->importCallback = $importer->setRevisionCallback( array( &$this, 'handleRevision' ) ); + $this->uploadCallback = $importer->setUploadCallback( + array( &$this, 'handleUpload' ) ); + $this->logItemCallback = $importer->setLogItemCallback( + array( &$this, 'handleLogItem' ) ); + + if ( $this->dryRun ) { + $importer->setPageOutCallback( null ); + } - $importer->doImport(); + return $importer->doImport(); } } +if ( wfReadOnly() ) { + wfDie( "Wiki is in read-only mode; you'll need to disable it for import to work.\n" ); +} + $reader = new BackupReader(); -if( isset( $options['quiet'] ) ) { +if ( isset( $options['quiet'] ) ) { $reader->reporting = false; } -if( isset( $options['report'] ) ) { +if ( isset( $options['report'] ) ) { $reader->reportingInterval = intval( $options['report'] ); } -if( isset( $options['dry-run'] ) ) { +if ( isset( $options['dry-run'] ) ) { $reader->dryRun = true; } +if ( isset( $options['debug'] ) ) { + $reader->debug = true; +} +if ( isset( $options['uploads'] ) ) { + $reader->uploads = true; // experimental! +} -if( isset( $args[0] ) ) { - $reader->importFromFile( $args[0] ); +if ( isset( $args[0] ) ) { + $result = $reader->importFromFile( $args[0] ); } else { - $reader->importFromStdin(); + $result = $reader->importFromStdin(); } -?> +if ( WikiError::isError( $result ) ) { + echo $result->getMessage() . "\n"; +} else { + echo "Done!\n"; + echo "You might want to run rebuildrecentchanges.php to regenerate\n"; + echo "the recentchanges page.\n"; +} + +