52 $this->infiles = explode(
';', $infile );
53 $this->reader =
new XMLReader();
54 $infile = array_shift( $this->infiles );
55 $this->reader->open( $infile,
null, LIBXML_PARSEHUGE );
68 $page = intval( $page );
70 while ( $this->lastPage < $page && !$this->atEnd ) {
71 $this->
debug(
"BaseDump::prefetch at page $this->lastPage, looking for $page" );
74 if ( $this->lastPage > $page || $this->atEnd ) {
75 $this->
debug(
"BaseDump::prefetch already past page $page "
76 .
"looking for rev $rev [$this->lastPage, $this->lastRev]" );
80 while ( $this->lastRev < $rev && !$this->atEnd && !$this->atPageEnd ) {
81 $this->
debug(
"BaseDump::prefetch at page $this->lastPage, rev $this->lastRev, "
82 .
"looking for $page, $rev" );
85 if ( $this->lastRev ==
$rev && !$this->atEnd ) {
86 $this->
debug(
"BaseDump::prefetch hit on $page, $rev [$this->lastPage, $this->lastRev]" );
90 $this->
debug(
"BaseDump::prefetch already past rev $rev on page $page "
91 .
"[$this->lastPage, $this->lastRev]" );
107 if ( $this->
skipTo(
'page',
'mediawiki' ) ) {
108 if ( $this->
skipTo(
'id' ) ) {
111 $this->atPageEnd =
false;
115 if ( count( $this->infiles ) ) {
116 $infile = array_shift( $this->infiles );
117 $this->reader->open( $infile );
118 $this->atEnd =
false;
127 if ( $this->
skipTo(
'revision' ) ) {
128 if ( $this->
skipTo(
'id' ) ) {
132 $this->atPageEnd =
true;
153 if ( $this->atEnd ) {
156 while ( $this->reader->read() ) {
157 if ( $this->reader->nodeType == XMLReader::ELEMENT
158 && $this->reader->name ==
$name
162 if ( $this->reader->nodeType == XMLReader::END_ELEMENT
163 && $this->reader->name ==
$parent
165 $this->
debug(
"BaseDump::skipTo found </$parent> searching for <$name>" );
171 return $this->
close();
183 if ( $this->atEnd ) {
186 if ( $this->reader->isEmptyElement ) {
190 while ( $this->reader->read() ) {
191 switch ( $this->reader->nodeType ) {
192 case XMLReader::TEXT:
194 case XMLReader::SIGNIFICANT_WHITESPACE:
195 $buffer .= $this->reader->value;
197 case XMLReader::END_ELEMENT:
202 return $this->
close();
210 $this->reader->close();
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 ...
nodeContents()
Shouldn't something like this be built-in to XMLReader? Fetches text contents of the current element,...
skipTo( $name, $parent='page')
prefetch( $page, $rev)
Attempts to fetch the text of a particular page revision from the dump stream.
Allows to change the fields on the form that will be generated $name
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