MediaWiki master
BaseDump.php
Go to the documentation of this file.
1<?php
28
44class BaseDump {
46 protected $reader = null;
48 protected $atEnd = false;
50 protected $atPageEnd = false;
52 protected $lastPage = 0;
54 protected $lastRev = 0;
56 protected $infiles = null;
57
61 public function __construct( $infile ) {
62 $this->infiles = explode( ';', $infile );
63 $this->reader = new XMLReader();
64 $infile = array_shift( $this->infiles );
65 if ( !$this->reader->open( $infile, null, LIBXML_PARSEHUGE ) ) {
66 $this->debug( __METHOD__ . ' was unable to open xml' );
67 $this->atEnd = true;
68 }
69 }
70
81 public function prefetch( $page, $rev, $slot = SlotRecord::MAIN ) {
82 $page = intval( $page );
83 $rev = intval( $rev );
84 while ( $this->lastPage < $page && !$this->atEnd ) {
85 $this->debug( "BaseDump::prefetch at page $this->lastPage, looking for $page" );
86 $this->nextPage();
87 }
88 if ( $this->lastPage > $page || $this->atEnd ) {
89 $this->debug( "BaseDump::prefetch already past page $page or failed to open/read input file, "
90 . "looking for rev $rev [$this->lastPage, $this->lastRev]" );
91
92 return null;
93 }
94 while ( $this->lastRev < $rev && !$this->atEnd && !$this->atPageEnd ) {
95 $this->debug( "BaseDump::prefetch at page $this->lastPage, rev $this->lastRev, "
96 . "looking for $page, $rev" );
97 $this->nextRev();
98 }
99 if ( $this->lastRev == $rev && !$this->atEnd ) {
100 $this->debug( "BaseDump::prefetch hit on $page, $rev [$this->lastPage, $this->lastRev]" );
101
102 if ( $slot !== SlotRecord::MAIN ) {
103 $lastSlot = SlotRecord::MAIN;
104 while ( $lastSlot !== $slot ) {
105 if ( !$this->skipTo( 'content', 'revision' ) ||
106 !$this->skipTo( 'role', 'revision' )
107 ) {
108 return null;
109 }
110 $lastSlot = $this->nodeContents();
111 }
112 }
113
114 return $this->nextText();
115 } else {
116 $this->debug( "BaseDump::prefetch already past rev $rev on page $page "
117 . "[$this->lastPage, $this->lastRev]" );
118
119 return null;
120 }
121 }
122
126 protected function debug( $str ) {
127 wfDebug( $str );
128 // global $dumper;
129 // $dumper->progress( $str );
130 }
131
132 private function nextPage() {
133 if ( $this->skipTo( 'page', 'mediawiki' ) ) {
134 if ( $this->skipTo( 'id' ) ) {
135 $this->lastPage = intval( $this->nodeContents() );
136 $this->lastRev = 0;
137 $this->atPageEnd = false;
138 }
139 } else {
140 $this->close();
141 if ( count( $this->infiles ) ) {
142 $infile = array_shift( $this->infiles );
143 if ( !$this->reader->open( $infile, null, LIBXML_PARSEHUGE ) ) {
144 $this->debug( __METHOD__ . ' was unable to open xml' );
145 $this->atEnd = true;
146 } else {
147 $this->atEnd = false;
148 }
149 }
150 }
151 }
152
153 private function nextRev() {
154 if ( $this->skipTo( 'revision' ) ) {
155 if ( $this->skipTo( 'id' ) ) {
156 $this->lastRev = intval( $this->nodeContents() );
157 }
158 } else {
159 $this->atPageEnd = true;
160 }
161 }
162
166 private function nextText() {
167 if ( !$this->skipTo( 'text', 'revision' ) ) {
168 return null;
169 }
170
171 return strval( $this->nodeContents() );
172 }
173
179 private function skipTo( $name, $parent = 'page' ) {
180 if ( $this->atEnd ) {
181 return false;
182 }
183 while ( $this->reader->read() ) {
184 if ( $this->reader->nodeType == XMLReader::ELEMENT
185 && $this->reader->name == $name
186 ) {
187 return true;
188 }
189 if ( $this->reader->nodeType == XMLReader::END_ELEMENT
190 && $this->reader->name == $parent
191 ) {
192 $this->debug( "BaseDump::skipTo found </$parent> searching for <$name>" );
193
194 return false;
195 }
196 }
197
198 return $this->close();
199 }
200
208 private function nodeContents() {
209 if ( $this->atEnd ) {
210 return null;
211 }
212 if ( $this->reader->isEmptyElement ) {
213 return "";
214 }
215 $buffer = "";
216 while ( $this->reader->read() ) {
217 switch ( $this->reader->nodeType ) {
218 case XMLReader::TEXT:
219 // case XMLReader::WHITESPACE:
220 case XMLReader::SIGNIFICANT_WHITESPACE:
221 $buffer .= $this->reader->value;
222 break;
223 case XMLReader::END_ELEMENT:
224 return $buffer;
225 }
226 }
227
228 return $this->close();
229 }
230
234 public function close() {
235 $this->reader->close();
236 $this->atEnd = true;
237
238 return null;
239 }
240}
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Readahead helper for making large MediaWiki data dumps; reads in a previous XML dump to sequentially ...
Definition BaseDump.php:44
bool $atPageEnd
Definition BaseDump.php:50
__construct( $infile)
Definition BaseDump.php:61
XMLReader null $reader
Definition BaseDump.php:46
string[] null $infiles
Definition BaseDump.php:56
debug( $str)
Definition BaseDump.php:126
int $lastRev
Definition BaseDump.php:54
int $lastPage
Definition BaseDump.php:52
prefetch( $page, $rev, $slot=SlotRecord::MAIN)
Attempts to fetch the text of a particular page revision from the dump stream.
Definition BaseDump.php:81
bool $atEnd
Definition BaseDump.php:48
Value object representing a content slot associated with a page revision.