Update output language.
[lhc/web/wiklou.git] / maintenance / dumpTextPass.php
index 33413a0..98d4af0 100644 (file)
@@ -1,6 +1,8 @@
 <?php
 /**
- * Copyright (C) 2005 Brion Vibber <brion@pobox.com>
+ * Script that postprocesses XML dumps from dumpBackup.php to add page text
+ *
+ * Copyright © 2005 Brion Vibber <brion@pobox.com>, 2010 Alexandre Emsenhuber
  * http://www.mediawiki.org/
  *
  * This program is free software; you can redistribute it and/or modify
@@ -33,7 +35,6 @@ require_once( 'backup.inc' );
 class TextPassDumper extends BackupDumper {
        var $prefetch = null;
        var $input = "php://stdin";
-       var $history = WikiExporter::FULL;
        var $fetchCount = 0;
        var $prefetchCount = 0;
 
@@ -59,18 +60,11 @@ class TextPassDumper extends BackupDumper {
                if ( ini_get( 'display_errors' ) )
                        ini_set( 'display_errors', 'stderr' );
 
-               $this->initProgress( $this->history );
+               $this->initProgress( $history );
 
                $this->db = $this->backupDb();
 
-               $this->egress = new ExportProgressFilter( $this->sink, $this );
-
-               $input = fopen( $this->input, "rt" );
-               $result = $this->readDump( $input );
-
-               if ( WikiError::isError( $result ) ) {
-                       wfDie( $result->getMessage() );
-               }
+               $this->readDump();
 
                if ( $this->spawnProc ) {
                        $this->closeSpawn();
@@ -91,12 +85,6 @@ class TextPassDumper extends BackupDumper {
                case 'stub':
                        $this->input = $url;
                        break;
-               case 'current':
-                       $this->history = WikiExporter::CURRENT;
-                       break;
-               case 'full':
-                       $this->history = WikiExporter::FULL;
-                       break;
                case 'spawn':
                        $this->spawn = true;
                        if ( $val ) {
@@ -107,18 +95,28 @@ class TextPassDumper extends BackupDumper {
        }
 
        function processFileOpt( $val, $param ) {
-               switch( $val ) {
-               case "file":
-                       return $param;
-               case "gzip":
-                       return "compress.zlib://$param";
-               case "bzip2":
-                       return "compress.bzip2://$param";
-               case "7zip":
-                       return "mediawiki.compress.7z://$param";
-               default:
-                       return $val;
+               $fileURIs = explode(';',$param);
+               foreach ( $fileURIs as $URI ) {
+                       switch( $val ) {
+                               case "file":
+                                       $newURI = $URI;
+                                       break;
+                               case "gzip":
+                                       $newURI = "compress.zlib://$URI";
+                                       break;
+                               case "bzip2":
+                                       $newURI = "compress.bzip2://$URI";
+                                       break;
+                               case "7zip":
+                                       $newURI = "mediawiki.compress.7z://$URI";
+                                       break;
+                               default:
+                                       $newURI = $URI;
+                       }
+                       $newFileURIs[] = $newURI;
                }
+               $val = implode( ';', $newFileURIs );
+               return $val;
        }
 
        /**
@@ -150,52 +148,89 @@ class TextPassDumper extends BackupDumper {
                }
        }
 
-       function readDump( $input ) {
-               $this->buffer = "";
-               $this->openElement = false;
-               $this->atStart = true;
-               $this->state = "";
-               $this->lastName = "";
+       function readDump() {
+               $state = '';
+               $lastName = '';
                $this->thisPage = 0;
                $this->thisRev = 0;
 
-               $parser = xml_parser_create( "UTF-8" );
-               xml_parser_set_option( $parser, XML_OPTION_CASE_FOLDING, false );
+               $reader = new XMLReader();
+               $reader->open( $this->input );
+               $writer = new XMLWriter();
+               $writer->openMemory();
 
-               xml_set_element_handler( $parser, array( &$this, 'startElement' ), array( &$this, 'endElement' ) );
-               xml_set_character_data_handler( $parser, array( &$this, 'characterData' ) );
 
-               $offset = 0; // for context extraction on error reporting
-               $bufferSize = 512 * 1024;
-               do {
-                       $chunk = fread( $input, $bufferSize );
-                       if ( !xml_parse( $parser, $chunk, feof( $input ) ) ) {
-                               wfDebug( "TextDumpPass::readDump encountered XML parsing error\n" );
-                               return new WikiXmlError( $parser, 'XML import parse failure', $chunk, $offset );
-                       }
-                       $offset += strlen( $chunk );
-               } while ( $chunk !== false && !feof( $input ) );
-               xml_parser_free( $parser );
+               while ( $reader->read() ) {
+                       $tag = $reader->name;
+                       $type = $reader->nodeType;
 
-               return true;
+                       if ( $type == XmlReader::END_ELEMENT ) {
+                               $writer->endElement();
+
+                               if ( $tag == 'revision' ) {
+                                       $this->revCount();
+                                       $this->thisRev = '';
+                               } elseif ( $tag == 'page' ) {
+                                       $this->reportPage();
+                                       $this->thisPage = '';
+                               }
+                       } elseif ( $type == XmlReader::ELEMENT ) {
+                               $attribs = array();
+                               if ( $reader->hasAttributes ) {
+                                       for ( $i = 0; $reader->moveToAttributeNo( $i ); $i++ ) {
+                                               $attribs[$reader->name] = $reader->value;
+                                       }
+                               }
+
+                               if ( $reader->isEmptyElement && $tag == 'text' && isset( $attribs['id'] ) ) {
+                                       $writer->startElement( 'text' );
+                                       $writer->writeAttribute( 'xml:space', 'preserve' );
+                                       $text = $this->getText( $attribs['id'] );
+                                       if ( strlen( $text ) ) {
+                                               $writer->text( $text );
+                                       }
+                                       $writer->endElement();
+                               } else {
+                                       $writer->startElement( $tag );
+                                       foreach( $attribs as $name => $val ) {
+                                               $writer->writeAttribute( $name, $val );
+                                       }
+                                       if ( $reader->isEmptyElement ) {
+                                               $writer->endElement();
+                                       }
+                               }
+
+                               $lastName = $tag;
+                               if ( $tag == 'revision' ) {
+                                       $state = 'revision';
+                               } elseif ( $tag == 'page' ) {
+                                       $state = 'page';
+                               }
+                       } elseif ( $type == XMLReader::SIGNIFICANT_WHITESPACE || $type = XMLReader::TEXT ) {
+                               if ( $lastName == 'id' ) {
+                                       if ( $state == 'revision' ) {
+                                               $this->thisRev .= $reader->value;
+                                       } elseif ( $state == 'page' ) {
+                                               $this->thisPage .= $reader->value;
+                                       }
+                               }
+                               $writer->text( $reader->value );
+                       }
+                       $this->sink->write( $writer->outputMemory() );
+               }
        }
 
        function getText( $id ) {
                $this->fetchCount++;
                if ( isset( $this->prefetch ) ) {
                        $text = $this->prefetch->prefetch( $this->thisPage, $this->thisRev );
-                       if ( $text === null ) {
-                               // Entry missing from prefetch dump
-                       } elseif ( $text === "" ) {
-                               // Blank entries may indicate that the prior dump was broken.
-                               // To be safe, reload it.
-                       } else {
+                       if ( $text !== null ) { // Entry missing from prefetch dump
                                $dbr = wfGetDB( DB_SLAVE );
-                               $revID = intval($this->thisRev);
-                               $revLength = $dbr->selectField( 'revision', 'rev_len', array('rev_id' => $revID ) );
+                               $revID = intval( $this->thisRev );
+                               $revLength = $dbr->selectField( 'revision', 'rev_len', array( 'rev_id' => $revID ) );
                                // if length of rev text in file doesn't match length in db, we reload
                                // this avoids carrying forward broken data from previous xml dumps
-                               if( strlen($text) == $revLength ) {
+                               if( strlen( $text ) == $revLength ) {
                                        $this->prefetchCount++;
                                        return $text;
                                }
@@ -205,7 +240,6 @@ class TextPassDumper extends BackupDumper {
        }
 
        private function doGetText( $id ) {
-
                $id = intval( $id );
                $this->failures = 0;
                $ex = new MWException( "Graceful storage failure" );
@@ -261,7 +295,6 @@ class TextPassDumper extends BackupDumper {
                while ( true ) {
                        try {
                                $text = $this->getTextDb( $id );
-                               $ex = new MWException( "Graceful storage failure" );
                        } catch ( DBQueryError $ex ) {
                                $text = false;
                        }
@@ -277,7 +310,7 @@ class TextPassDumper extends BackupDumper {
                $row = $this->db->selectRow( 'text',
                        array( 'old_text', 'old_flags' ),
                        array( 'old_id' => $id ),
-                       'TextPassDumper::getText' );
+                       __METHOD__ );
                $text = Revision::getRevisionText( $row );
                if ( $text === false ) {
                        return false;
@@ -299,14 +332,14 @@ class TextPassDumper extends BackupDumper {
        }
 
        function openSpawn() {
-               global $IP, $wgDBname;
+               global $IP;
 
                $cmd = implode( " ",
                        array_map( 'wfEscapeShellArg',
                                array(
                                        $this->php,
                                        "$IP/maintenance/fetchText.php",
-                                       $wgDBname ) ) );
+                                       '--wiki', wfWikiID() ) ) );
                $spec = array(
                        0 => array( "pipe", "r" ),
                        1 => array( "pipe", "w" ),
@@ -394,81 +427,13 @@ class TextPassDumper extends BackupDumper {
                $normalized = $wgContLang->normalize( $stripped );
                return $normalized;
        }
-
-       function startElement( $parser, $name, $attribs ) {
-               $this->clearOpenElement( null );
-               $this->lastName = $name;
-
-               if ( $name == 'revision' ) {
-                       $this->state = $name;
-                       $this->egress->writeOpenPage( null, $this->buffer );
-                       $this->buffer = "";
-               } elseif ( $name == 'page' ) {
-                       $this->state = $name;
-                       if ( $this->atStart ) {
-                               $this->egress->writeOpenStream( $this->buffer );
-                               $this->buffer = "";
-                               $this->atStart = false;
-                       }
-               }
-
-               if ( $name == "text" && isset( $attribs['id'] ) ) {
-                       $text = $this->getText( $attribs['id'] );
-                       $this->openElement = array( $name, array( 'xml:space' => 'preserve' ) );
-                       if ( strlen( $text ) > 0 ) {
-                               $this->characterData( $parser, $text );
-                       }
-               } else {
-                       $this->openElement = array( $name, $attribs );
-               }
-       }
-
-       function endElement( $parser, $name ) {
-               if ( $this->openElement ) {
-                       $this->clearOpenElement( "" );
-               } else {
-                       $this->buffer .= "</$name>";
-               }
-
-               if ( $name == 'revision' ) {
-                       $this->egress->writeRevision( null, $this->buffer );
-                       $this->buffer = "";
-                       $this->thisRev = "";
-               } elseif ( $name == 'page' ) {
-                       $this->egress->writeClosePage( $this->buffer );
-                       $this->buffer = "";
-                       $this->thisPage = "";
-               } elseif ( $name == 'mediawiki' ) {
-                       $this->egress->writeCloseStream( $this->buffer );
-                       $this->buffer = "";
-               }
-       }
-
-       function characterData( $parser, $data ) {
-               $this->clearOpenElement( null );
-               if ( $this->lastName == "id" ) {
-                       if ( $this->state == "revision" ) {
-                               $this->thisRev .= $data;
-                       } elseif ( $this->state == "page" ) {
-                               $this->thisPage .= $data;
-                       }
-               }
-               $this->buffer .= htmlspecialchars( $data );
-       }
-
-       function clearOpenElement( $style ) {
-               if ( $this->openElement ) {
-                       $this->buffer .= Xml::element( $this->openElement[0], $this->openElement[1], $style );
-                       $this->openElement = false;
-               }
-       }
 }
 
 
 $dumper = new TextPassDumper( $argv );
 
 if ( !isset( $options['help'] ) ) {
-       $dumper->dump( true );
+       $dumper->dump( WikiExporter::FULL );
 } else {
        $dumper->progress( <<<ENDS
 This script postprocesses XML dumps from dumpBackup.php to add
@@ -482,11 +447,12 @@ Options:
   --stub=<type>:<file> To load a compressed stub dump instead of stdin
   --prefetch=<type>:<file> Use a prior dump file as a text source, to save
                          pressure on the database.
-                         (Requires the XMLReader extension)
   --quiet        Don't dump status reports to stderr.
   --report=n  Report position and speed after every n pages processed.
                          (Default: 100)
   --server=h  Force reading from MySQL server h
+  --output=<type>:<file> Write to a file instead of stdout
+              <type>s: file, gzip, bzip2, 7zip
   --current      Base ETA on number of pages in database instead of all revisions
   --spawn        Spawn a subprocess for loading text records
   --help      Display this help message