3 * Helper class for the --prefetch option of dumpTextPass.php
5 * Copyright © 2005 Brion Vibber <brion@pobox.com>
6 * http://www.mediawiki.org/
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
24 * @ingroup Maintenance
28 * Readahead helper for making large MediaWiki data dumps;
29 * reads in a previous XML dump to sequentially prefetch text
30 * records already normalized and decompressed.
32 * This can save load on the external database servers, hopefully.
34 * Assumes that dumps will be recorded in the canonical order:
35 * - ascending by page_id
36 * - ascending by rev_id within each page
37 * - text contents are immutable and should not change once
38 * recorded, so the previous dump is a reliable source
40 * @ingroup Maintenance
45 var $atPageEnd = false;
50 function BaseDump( $infile ) {
51 $this->infiles = explode( ';', $infile );
52 $this->reader = new XMLReader();
53 $infile = array_shift( $this->infiles );
54 if ( defined( 'LIBXML_PARSEHUGE' ) ) {
55 $this->reader->open( $infile, null, LIBXML_PARSEHUGE );
58 $this->reader->open( $infile );
63 * Attempts to fetch the text of a particular page revision
64 * from the dump stream. May return null if the page is
67 * @param $page Integer: ID number of page to read
68 * @param $rev Integer: ID number of revision to read
69 * @return string or null
71 function prefetch( $page, $rev ) {
72 $page = intval( $page );
73 $rev = intval( $rev );
74 while ( $this->lastPage < $page && !$this->atEnd ) {
75 $this->debug( "BaseDump::prefetch at page $this->lastPage, looking for $page" );
78 if ( $this->lastPage > $page || $this->atEnd ) {
79 $this->debug( "BaseDump::prefetch already past page $page looking for rev $rev [$this->lastPage, $this->lastRev]" );
82 while ( $this->lastRev < $rev && !$this->atEnd && !$this->atPageEnd ) {
83 $this->debug( "BaseDump::prefetch at page $this->lastPage, rev $this->lastRev, looking for $page, $rev" );
86 if ( $this->lastRev == $rev && !$this->atEnd ) {
87 $this->debug( "BaseDump::prefetch hit on $page, $rev [$this->lastPage, $this->lastRev]" );
88 return $this->nextText();
90 $this->debug( "BaseDump::prefetch already past rev $rev on page $page [$this->lastPage, $this->lastRev]" );
95 function debug( $str ) {
96 wfDebug( $str . "\n" );
98 // $dumper->progress( $str );
104 function nextPage() {
105 if ( $this->skipTo( 'page', 'mediawiki' ) ) {
106 if ( $this->skipTo( 'id' ) ) {
107 $this->lastPage = intval( $this->nodeContents() );
109 $this->atPageEnd = false;
113 if ( count( $this->infiles ) ) {
114 $infile = array_shift( $this->infiles );
115 $this->reader->open( $infile );
116 $this->atEnd = false;
125 if ( $this->skipTo( 'revision' ) ) {
126 if ( $this->skipTo( 'id' ) ) {
127 $this->lastRev = intval( $this->nodeContents() );
130 $this->atPageEnd = true;
138 function nextText() {
139 $this->skipTo( 'text' );
140 return strval( $this->nodeContents() );
145 * @param $name string
146 * @param $parent string
149 function skipTo( $name, $parent = 'page' ) {
150 if ( $this->atEnd ) {
153 while ( $this->reader->read() ) {
154 if ( $this->reader->nodeType == XMLReader::ELEMENT &&
155 $this->reader->name == $name ) {
158 if ( $this->reader->nodeType == XMLReader::END_ELEMENT &&
159 $this->reader->name == $parent ) {
160 $this->debug( "BaseDump::skipTo found </$parent> searching for <$name>" );
164 return $this->close();
168 * Shouldn't something like this be built-in to XMLReader?
169 * Fetches text contents of the current element, assuming
170 * no sub-elements or such scary things.
175 function nodeContents() {
176 if ( $this->atEnd ) {
179 if ( $this->reader->isEmptyElement ) {
183 while ( $this->reader->read() ) {
184 switch ( $this->reader->nodeType ) {
185 case XMLReader::TEXT:
186 // case XMLReader::WHITESPACE:
187 case XMLReader::SIGNIFICANT_WHITESPACE:
188 $buffer .= $this->reader->value;
190 case XMLReader::END_ELEMENT:
194 return $this->close();
202 $this->reader->close();