Add deprecation warnings for log related methods
[mediawiki.git] / maintenance / dumpIterator.php
blob73296b7d2b3067f274ff368b41a63ce2efa6dc83
1 <?php
2 /**
3 * Take page text out of an XML dump file and perform some operation on it.
4 * Used as a base class for CompareParsers and PreprocessDump.
5 * We implement below the simple task of searching inside a dump.
7 * Copyright © 2011 Platonides
8 * http://www.mediawiki.org/
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
25 * @file
26 * @ingroup Maintenance
29 require_once __DIR__ . '/Maintenance.php';
31 /**
32 * Base class for interating over a dump.
34 * @ingroup Maintenance
36 abstract class DumpIterator extends Maintenance {
38 private $count = 0;
39 private $startTime;
41 public function __construct() {
42 parent::__construct();
43 $this->mDescription = "Does something with a dump";
44 $this->addOption( 'file', 'File with text to run.', false, true );
45 $this->addOption( 'dump', 'XML dump to execute all revisions.', false, true );
46 $this->addOption( 'from', 'Article from XML dump to start from.', false, true );
49 public function execute() {
50 if ( !( $this->hasOption( 'file' ) ^ $this->hasOption( 'dump' ) ) ) {
51 $this->error( "You must provide a file or dump", true );
54 $this->checkOptions();
56 if ( $this->hasOption( 'file' ) ) {
57 $revision = new WikiRevision;
59 $revision->setText( file_get_contents( $this->getOption( 'file' ) ) );
60 $revision->setTitle( Title::newFromText( rawurldecode( basename( $this->getOption( 'file' ), '.txt' ) ) ) );
61 $this->handleRevision( $revision );
62 return;
65 $this->startTime = microtime( true );
67 if ( $this->getOption( 'dump' ) == '-' ) {
68 $source = new ImportStreamSource( $this->getStdin() );
69 } else {
70 $this->error( "Sorry, I don't support dump filenames yet. Use - and provide it on stdin on the meantime.", true );
72 $importer = new WikiImporter( $source );
74 $importer->setRevisionCallback(
75 array( &$this, 'handleRevision' ) );
77 $this->from = $this->getOption( 'from', null );
78 $this->count = 0;
79 $importer->doImport();
81 $this->conclusions();
83 $delta = microtime( true ) - $this->startTime;
84 $this->error( "Done {$this->count} revisions in " . round( $delta, 2 ) . " seconds " );
85 if ( $delta > 0 ) {
86 $this->error( round( $this->count / $delta, 2 ) . " pages/sec" );
89 # Perform the memory_get_peak_usage() when all the other data has been output so there's no damage if it dies.
90 # It is only available since 5.2.0 (since 5.2.1 if you haven't compiled with --enable-memory-limit)
91 $this->error( "Memory peak usage of " . memory_get_peak_usage() . " bytes\n" );
94 public function finalSetup() {
95 parent::finalSetup();
97 if ( $this->getDbType() == Maintenance::DB_NONE ) {
98 global $wgUseDatabaseMessages, $wgLocalisationCacheConf, $wgHooks;
99 $wgUseDatabaseMessages = false;
100 $wgLocalisationCacheConf['storeClass'] = 'LCStoreNull';
101 $wgHooks['InterwikiLoadPrefix'][] = 'DumpIterator::disableInterwikis';
105 static function disableInterwikis( $prefix, &$data ) {
106 # Title::newFromText will check on each namespaced article if it's an interwiki.
107 # We always answer that it is not.
109 return false;
113 * Callback function for each revision, child classes should override
114 * processRevision instead.
115 * @param $rev Revision
117 public function handleRevision( $rev ) {
118 $title = $rev->getTitle();
119 if ( !$title ) {
120 $this->error( "Got bogus revision with null title!" );
121 return;
124 $this->count++;
125 if ( isset( $this->from ) ) {
126 if ( $this->from != $title ) {
127 return;
129 $this->output( "Skipped " . ( $this->count - 1 ) . " pages\n" );
131 $this->count = 1;
132 $this->from = null;
135 $this->processRevision( $rev );
138 /* Stub function for processing additional options */
139 public function checkOptions() {
140 return;
143 /* Stub function for giving data about what was computed */
144 public function conclusions() {
145 return;
148 /* Core function which does whatever the maintenance script is designed to do */
149 abstract public function processRevision( $rev );
153 * Maintenance script that runs a regex in the revisions from a dump.
155 * @ingroup Maintenance
157 class SearchDump extends DumpIterator {
159 public function __construct() {
160 parent::__construct();
161 $this->mDescription = "Runs a regex in the revisions from a dump";
162 $this->addOption( 'regex', 'Searching regex', true, true );
165 public function getDbType() {
166 return Maintenance::DB_NONE;
170 * @param $rev Revision
172 public function processRevision( $rev ) {
173 if ( preg_match( $this->getOption( 'regex' ), $rev->getContent()->getTextForSearchIndex() ) ) {
174 $this->output( $rev->getTitle() . " matches at edit from " . $rev->getTimestamp() . "\n" );
179 $maintClass = "SearchDump";
180 require_once RUN_MAINTENANCE_IF_MAIN;