3 * Helper class for the --prefetch option of dumpTextPass.php
5 * Copyright © 2005 Brion Vibber <brion@pobox.com>
6 * https://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
43 protected $reader = null;
44 protected $atEnd = false;
45 protected $atPageEnd = false;
46 protected $lastPage = 0;
47 protected $lastRev = 0;
48 protected $infiles = null;
50 public function __construct( $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 );
57 $this->reader->open( $infile );
62 * Attempts to fetch the text of a particular page revision
63 * from the dump stream. May return null if the page is
66 * @param int $page ID number of page to read
67 * @param int $rev ID number of revision to read
70 function prefetch( $page, $rev ) {
71 $page = intval( $page );
72 $rev = intval( $rev );
73 while ( $this->lastPage < $page && !$this->atEnd ) {
74 $this->debug( "BaseDump::prefetch at page $this->lastPage, looking for $page" );
77 if ( $this->lastPage > $page || $this->atEnd ) {
78 $this->debug( "BaseDump::prefetch already past page $page "
79 . "looking for rev $rev [$this->lastPage, $this->lastRev]" );
83 while ( $this->lastRev < $rev && !$this->atEnd && !$this->atPageEnd ) {
84 $this->debug( "BaseDump::prefetch at page $this->lastPage, rev $this->lastRev, "
85 . "looking for $page, $rev" );
88 if ( $this->lastRev == $rev && !$this->atEnd ) {
89 $this->debug( "BaseDump::prefetch hit on $page, $rev [$this->lastPage, $this->lastRev]" );
91 return $this->nextText();
93 $this->debug( "BaseDump::prefetch already past rev $rev on page $page "
94 . "[$this->lastPage, $this->lastRev]" );
100 function debug( $str ) {
101 wfDebug( $str . "\n" );
103 // $dumper->progress( $str );
109 function nextPage() {
110 if ( $this->skipTo( 'page', 'mediawiki' ) ) {
111 if ( $this->skipTo( 'id' ) ) {
112 $this->lastPage = intval( $this->nodeContents() );
114 $this->atPageEnd = false;
118 if ( count( $this->infiles ) ) {
119 $infile = array_shift( $this->infiles );
120 $this->reader->open( $infile );
121 $this->atEnd = false;
130 if ( $this->skipTo( 'revision' ) ) {
131 if ( $this->skipTo( 'id' ) ) {
132 $this->lastRev = intval( $this->nodeContents() );
135 $this->atPageEnd = true;
143 function nextText() {
144 $this->skipTo( 'text' );
146 return strval( $this->nodeContents() );
151 * @param string $name
152 * @param string $parent
155 function skipTo( $name, $parent = 'page' ) {
156 if ( $this->atEnd ) {
159 while ( $this->reader->read() ) {
160 if ( $this->reader->nodeType == XMLReader::ELEMENT
161 && $this->reader->name == $name
165 if ( $this->reader->nodeType == XMLReader::END_ELEMENT
166 && $this->reader->name == $parent
168 $this->debug( "BaseDump::skipTo found </$parent> searching for <$name>" );
174 return $this->close();
178 * Shouldn't something like this be built-in to XMLReader?
179 * Fetches text contents of the current element, assuming
180 * no sub-elements or such scary things.
185 function nodeContents() {
186 if ( $this->atEnd ) {
189 if ( $this->reader->isEmptyElement ) {
193 while ( $this->reader->read() ) {
194 switch ( $this->reader->nodeType ) {
195 case XMLReader::TEXT:
196 // case XMLReader::WHITESPACE:
197 case XMLReader::SIGNIFICANT_WHITESPACE:
198 $buffer .= $this->reader->value;
200 case XMLReader::END_ELEMENT:
205 return $this->close();
213 $this->reader->close();