MediaWiki master
dumpIterator.php
Go to the documentation of this file.
1<?php
34
35require_once __DIR__ . '/Maintenance.php';
36
42abstract class DumpIterator extends Maintenance {
44 private $count = 0;
46 private $startTime;
48 private $from;
49
50 public function __construct() {
51 parent::__construct();
52 $this->addDescription( 'Does something with a dump' );
53 $this->addOption( 'file', 'File with text to run.', false, true );
54 $this->addOption( 'dump', 'XML dump to execute all revisions.', false, true );
55 $this->addOption( 'from', 'Article from XML dump to start from.', false, true );
56 }
57
58 public function execute() {
59 if ( !( $this->hasOption( 'file' ) xor $this->hasOption( 'dump' ) ) ) {
60 $this->fatalError( "You must provide a file or dump" );
61 }
62
63 $this->checkOptions();
64
65 if ( $this->hasOption( 'file' ) ) {
66 $file = $this->getOption( 'file' );
67 $revision = new WikiRevision();
68 $text = file_get_contents( $file );
69 $title = Title::newFromText( rawurldecode( basename( $file, '.txt' ) ) );
70 $revision->setTitle( $title );
71 $content = ContentHandler::makeContent( $text, $title );
72 $revision->setContent( SlotRecord::MAIN, $content );
73
74 $this->from = false;
75 $this->handleRevision( $revision );
76
77 return;
78 }
79
80 $this->startTime = microtime( true );
81
82 if ( $this->getOption( 'dump' ) == '-' ) {
83 $source = new ImportStreamSource( $this->getStdin() );
84 } else {
85 $this->fatalError( "Sorry, I don't support dump filenames yet. "
86 . "Use - and provide it on stdin on the meantime." );
87 }
88
89 $user = User::newSystemUser( User::MAINTENANCE_SCRIPT_USER, [ 'steal' => true ] );
90
91 $importer = $this->getServiceContainer()
92 ->getWikiImporterFactory()
93 ->getWikiImporter( $source, new UltimateAuthority( $user ) );
94
95 $importer->setRevisionCallback(
96 [ $this, 'handleRevision' ] );
97 $importer->setNoticeCallback( static function ( $msg, $params ) {
98 echo wfMessage( $msg, $params )->text() . "\n";
99 } );
100
101 $this->from = $this->getOption( 'from', null );
102 $this->count = 0;
103 $importer->doImport();
104
105 $this->conclusions();
106
107 $delta = microtime( true ) - $this->startTime;
108 $this->error( "Done {$this->count} revisions in " . round( $delta, 2 ) . " seconds " );
109 if ( $delta > 0 ) {
110 $this->error( round( $this->count / $delta, 2 ) . " pages/sec" );
111 }
112
113 # Perform the memory_get_peak_usage() when all the other data has been
114 # output so there's no damage if it dies. It is only available since
115 # 5.2.0 (since 5.2.1 if you haven't compiled with --enable-memory-limit)
116 $this->error( "Memory peak usage of " . memory_get_peak_usage() . " bytes\n" );
117 }
118
119 public function finalSetup( SettingsBuilder $settingsBuilder ) {
120 parent::finalSetup( $settingsBuilder );
121
122 if ( $this->getDbType() == Maintenance::DB_NONE ) {
123 // TODO: Allow hooks to be registered via SettingsBuilder as well!
124 // This matches the idea of unifying SettingsBuilder with ExtensionRegistry.
125 // phpcs:disable MediaWiki.Usage.DeprecatedGlobalVariables.Deprecated$wgHooks
126 global $wgHooks;
127 $wgHooks['InterwikiLoadPrefix'][] = 'DumpIterator::disableInterwikis';
128
129 $settingsBuilder->putConfigValues( [
130 MainConfigNames::UseDatabaseMessages => false,
131 MainConfigNames::LocalisationCacheConf => [ 'storeClass' => LCStoreNull::class ],
132 ] );
133 }
134 }
135
136 public static function disableInterwikis( $prefix, &$data ) {
137 # Title::newFromText will check on each namespaced article if it's an interwiki.
138 # We always answer that it is not.
139
140 return false;
141 }
142
148 public function handleRevision( $rev ) {
149 $title = $rev->getTitle();
150 if ( !$title ) {
151 $this->error( "Got bogus revision with null title!" );
152
153 return;
154 }
155
156 $this->count++;
157 if ( $this->from !== false ) {
158 if ( $this->from != $title ) {
159 return;
160 }
161 $this->output( "Skipped " . ( $this->count - 1 ) . " pages\n" );
162
163 $this->count = 1;
164 $this->from = null;
165 }
166
167 $this->processRevision( $rev );
168 }
169
173 public function checkOptions() {
174 }
175
179 public function conclusions() {
180 }
181
187 abstract public function processRevision( WikiRevision $rev );
188}
189
196
197 public function __construct() {
198 parent::__construct();
199 $this->addDescription( 'Runs a regex in the revisions from a dump' );
200 $this->addOption( 'regex', 'Searching regex', true, true );
201 }
202
203 public function getDbType() {
205 }
206
210 public function processRevision( WikiRevision $rev ) {
211 if ( preg_match( $this->getOption( 'regex' ), $rev->getContent()->getTextForSearchIndex() ) ) {
212 $this->output( $rev->getTitle() . " matches at edit from " . $rev->getTimestamp() . "\n" );
213 }
214 }
215}
216
217$maintClass = SearchDump::class;
218require_once RUN_MAINTENANCE_IF_MAIN;
wfMessage( $key,... $params)
This is the function for getting translated interface messages.
array $params
The job parameters.
Base class for iterating over a dump.
static disableInterwikis( $prefix, &$data)
__construct()
Default constructor.
execute()
Do the actual work.
processRevision(WikiRevision $rev)
Core function which does whatever the maintenance script is designed to do.
conclusions()
Stub function for giving data about what was computed.
checkOptions()
Stub function for processing additional options.
handleRevision( $rev)
Callback function for each revision, child classes should override processRevision instead.
finalSetup(SettingsBuilder $settingsBuilder)
Handle some last-minute setup here.
Imports a XML dump from a file (either from file upload, files on disk, or HTTP)
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
error( $err, $die=0)
Throw an error to the user.
const DB_NONE
Constants for DB access type.
output( $out, $channel=null)
Throw some output to the user.
getStdin( $len=null)
Return input from stdin.
hasOption( $name)
Checks to see if a particular option was set.
getServiceContainer()
Returns the main service container.
getDbType()
Does the script need different DB access? By default, we give Maintenance scripts normal rights to th...
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
A class containing constants representing the names of configuration variables.
Represents an authority that has all permissions.
Value object representing a content slot associated with a page revision.
Builder class for constructing a Config object from a set of sources during bootstrap.
putConfigValues(array $values)
Sets the value of multiple config variables.
Represents a title within MediaWiki.
Definition Title.php:78
Maintenance script that runs a regex in the revisions from a dump.
__construct()
Default constructor.
processRevision(WikiRevision $rev)
getDbType()
Does the script need different DB access? By default, we give Maintenance scripts normal rights to th...
Represents a revision, log entry or upload during the import process.
getContent( $role=SlotRecord::MAIN)
$wgHooks
Config variable stub for the Hooks setting, for use by phpdoc and IDEs.
$maintClass
$source