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 );
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]" );
93 $this->
debug(
"BaseDump::prefetch already past rev $rev on page $page "
94 .
"[$this->lastPage, $this->lastRev]" );
110 if ( $this->
skipTo(
'page',
'mediawiki' ) ) {
111 if ( $this->
skipTo(
'id' ) ) {
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' ) ) {
135 $this->atPageEnd =
true;
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();
186 if ( $this->atEnd ) {
189 if ( $this->reader->isEmptyElement ) {
193 while ( $this->reader->read() ) {
194 switch ( $this->reader->nodeType ) {
195 case XMLReader::TEXT:
197 case XMLReader::SIGNIFICANT_WHITESPACE:
198 $buffer .= $this->reader->value;
200 case XMLReader::END_ELEMENT:
205 return $this->
close();
213 $this->reader->close();
skipTo($name, $parent= 'page')
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
prefetch($page, $rev)
Attempts to fetch the text of a particular page revision from the dump stream.
Readahead helper for making large MediaWiki data dumps; reads in a previous XML dump to sequentially ...
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
nodeContents()
Shouldn't something like this be built-in to XMLReader? Fetches text contents of the current element...
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
Allows to change the fields on the form that will be generated $name