MediaWiki  1.34.0
BackupDumper.php
Go to the documentation of this file.
1 <?php
28 require_once __DIR__ . '/../Maintenance.php';
29 require_once __DIR__ . '/../../includes/export/WikiExporter.php';
30 
34 
39 abstract class BackupDumper extends Maintenance {
40  public $reporting = true;
41  public $pages = null; // all pages
42  public $skipHeader = false; // don't output <mediawiki> and <siteinfo>
43  public $skipFooter = false; // don't output </mediawiki>
44  public $startId = 0;
45  public $endId = 0;
46  public $revStartId = 0;
47  public $revEndId = 0;
48  public $dumpUploads = false;
49  public $dumpUploadFileContents = false;
50  public $orderRevs = false;
51  public $limitNamespaces = [];
53  public $stderr;
54 
55  protected $reportingInterval = 100;
56  protected $pageCount = 0;
57  protected $revCount = 0;
58  protected $schemaVersion = null; // use default
59  protected $server = null; // use default
60  protected $sink = null; // Output filters
61  protected $lastTime = 0;
62  protected $pageCountLast = 0;
63  protected $revCountLast = 0;
64 
65  protected $outputTypes = [];
66  protected $filterTypes = [];
67 
68  protected $ID = 0;
69 
71  protected $startTime;
73  protected $pageCountPart;
75  protected $revCountPart;
77  protected $maxCount;
79  protected $timeOfCheckpoint;
81  protected $egress;
83  protected $buffer;
85  protected $openElement;
87  protected $atStart;
89  protected $thisRevModel;
91  protected $thisRevFormat;
93  protected $lastName;
95  protected $state;
96 
104  protected $forcedDb = null;
105 
107  protected $lb;
108 
112  function __construct( $args = null ) {
113  parent::__construct();
114  $this->stderr = fopen( "php://stderr", "wt" );
115 
116  // Built-in output and filter plugins
117  $this->registerOutput( 'file', DumpFileOutput::class );
118  $this->registerOutput( 'gzip', DumpGZipOutput::class );
119  $this->registerOutput( 'bzip2', DumpBZip2Output::class );
120  $this->registerOutput( 'dbzip2', DumpDBZip2Output::class );
121  $this->registerOutput( 'lbzip2', DumpLBZip2Output::class );
122  $this->registerOutput( '7zip', Dump7ZipOutput::class );
123 
124  $this->registerFilter( 'latest', DumpLatestFilter::class );
125  $this->registerFilter( 'notalk', DumpNotalkFilter::class );
126  $this->registerFilter( 'namespace', DumpNamespaceFilter::class );
127 
128  // These three can be specified multiple times
129  $this->addOption( 'plugin', 'Load a dump plugin class. Specify as <class>[:<file>].',
130  false, true, false, true );
131  $this->addOption( 'output', 'Begin a filtered output stream; Specify as <type>:<file>. ' .
132  '<type>s: file, gzip, bzip2, 7zip, dbzip2, lbzip2', false, true, false, true );
133  $this->addOption( 'filter', 'Add a filter on an output branch. Specify as ' .
134  '<type>[:<options>]. <types>s: latest, notalk, namespace', false, true, false, true );
135  $this->addOption( 'report', 'Report position and speed after every n pages processed. ' .
136  'Default: 100.', false, true );
137  $this->addOption( 'schema-version', 'Schema version to use for output. ' .
138  'Default: ' . WikiExporter::schemaVersion(), false, true );
139  $this->addOption( 'server', 'Force reading from MySQL server', false, true );
140  $this->addOption( '7ziplevel', '7zip compression level for all 7zip outputs. Used for ' .
141  '-mx option to 7za command.', false, true );
142 
143  if ( $args ) {
144  // Args should be loaded and processed so that dump() can be called directly
145  // instead of execute()
146  $this->loadWithArgv( $args );
147  $this->processOptions();
148  }
149  }
150 
155  function registerOutput( $name, $class ) {
156  $this->outputTypes[$name] = $class;
157  }
158 
163  function registerFilter( $name, $class ) {
164  $this->filterTypes[$name] = $class;
165  }
166 
174  function loadPlugin( $class, $file ) {
175  if ( $file != '' ) {
176  require_once $file;
177  }
178  $register = [ $class, 'register' ];
179  $register( $this );
180  }
181 
182  function execute() {
183  throw new MWException( 'execute() must be overridden in subclasses' );
184  }
185 
189  function processOptions() {
190  $sink = null;
191  $sinks = [];
192 
193  $this->schemaVersion = WikiExporter::schemaVersion();
194 
195  $options = $this->orderedOptions;
196  foreach ( $options as $arg ) {
197  list( $opt, $param ) = $arg;
198 
199  switch ( $opt ) {
200  case 'plugin':
201  $val = explode( ':', $param, 2 );
202 
203  if ( count( $val ) === 1 ) {
204  $this->loadPlugin( $val[0], '' );
205  } elseif ( count( $val ) === 2 ) {
206  $this->loadPlugin( $val[0], $val[1] );
207  }
208 
209  break;
210  case 'output':
211  $split = explode( ':', $param, 2 );
212  if ( count( $split ) !== 2 ) {
213  $this->fatalError( 'Invalid output parameter' );
214  }
215  list( $type, $file ) = $split;
216  if ( !is_null( $sink ) ) {
217  $sinks[] = $sink;
218  }
219  if ( !isset( $this->outputTypes[$type] ) ) {
220  $this->fatalError( "Unrecognized output sink type '$type'" );
221  }
222  $class = $this->outputTypes[$type];
223  if ( $type === "7zip" ) {
224  $sink = new $class( $file, intval( $this->getOption( '7ziplevel' ) ) );
225  } else {
226  $sink = new $class( $file );
227  }
228 
229  break;
230  case 'filter':
231  if ( is_null( $sink ) ) {
232  $sink = new DumpOutput();
233  }
234 
235  $split = explode( ':', $param, 2 );
236  $key = $split[0];
237 
238  if ( !isset( $this->filterTypes[$key] ) ) {
239  $this->fatalError( "Unrecognized filter type '$key'" );
240  }
241 
242  $type = $this->filterTypes[$key];
243 
244  if ( count( $split ) === 1 ) {
245  $filter = new $type( $sink );
246  } elseif ( count( $split ) === 2 ) {
247  $filter = new $type( $sink, $split[1] );
248  }
249 
250  // references are lame in php...
251  unset( $sink );
252  $sink = $filter;
253 
254  break;
255  case 'schema-version':
256  if ( !in_array( $param, XmlDumpWriter::$supportedSchemas ) ) {
257  $this->fatalError(
258  "Unsupported schema version $param. Supported versions: " .
259  implode( ', ', XmlDumpWriter::$supportedSchemas )
260  );
261  }
262  $this->schemaVersion = $param;
263  break;
264  }
265  }
266 
267  if ( $this->hasOption( 'report' ) ) {
268  $this->reportingInterval = intval( $this->getOption( 'report' ) );
269  }
270 
271  if ( $this->hasOption( 'server' ) ) {
272  $this->server = $this->getOption( 'server' );
273  }
274 
275  if ( is_null( $sink ) ) {
276  $sink = new DumpOutput();
277  }
278  $sinks[] = $sink;
279 
280  if ( count( $sinks ) > 1 ) {
281  $this->sink = new DumpMultiWriter( $sinks );
282  } else {
283  $this->sink = $sink;
284  }
285  }
286 
287  function dump( $history, $text = WikiExporter::TEXT ) {
288  # Notice messages will foul up your XML output even if they're
289  # relatively harmless.
290  if ( ini_get( 'display_errors' ) ) {
291  ini_set( 'display_errors', 'stderr' );
292  }
293 
294  $this->initProgress( $history );
295 
296  $db = $this->backupDb();
297  $exporter = new WikiExporter( $db, $history, $text, $this->limitNamespaces );
298  $exporter->setSchemaVersion( $this->schemaVersion );
299  $exporter->dumpUploads = $this->dumpUploads;
300  $exporter->dumpUploadFileContents = $this->dumpUploadFileContents;
301 
302  $wrapper = new ExportProgressFilter( $this->sink, $this );
303  $exporter->setOutputSink( $wrapper );
304 
305  if ( !$this->skipHeader ) {
306  $exporter->openStream();
307  }
308  # Log item dumps: all or by range
309  if ( $history & WikiExporter::LOGS ) {
310  if ( $this->startId || $this->endId ) {
311  $exporter->logsByRange( $this->startId, $this->endId );
312  } else {
313  $exporter->allLogs();
314  }
315  } elseif ( is_null( $this->pages ) ) {
316  # Page dumps: all or by page ID range
317  if ( $this->startId || $this->endId ) {
318  $exporter->pagesByRange( $this->startId, $this->endId, $this->orderRevs );
319  } elseif ( $this->revStartId || $this->revEndId ) {
320  $exporter->revsByRange( $this->revStartId, $this->revEndId );
321  } else {
322  $exporter->allPages();
323  }
324  } else {
325  # Dump of specific pages
326  $exporter->pagesByName( $this->pages );
327  }
328 
329  if ( !$this->skipFooter ) {
330  $exporter->closeStream();
331  }
332 
333  $this->report( true );
334  }
335 
342  function initProgress( $history = WikiExporter::FULL ) {
343  $table = ( $history == WikiExporter::CURRENT ) ? 'page' : 'revision';
344  $field = ( $history == WikiExporter::CURRENT ) ? 'page_id' : 'rev_id';
345 
347  if ( $this->forcedDb === null ) {
348  $dbr = $this->getDB( DB_REPLICA );
349  }
350  $this->maxCount = $dbr->selectField( $table, "MAX($field)", '', __METHOD__ );
351  $this->startTime = microtime( true );
352  $this->lastTime = $this->startTime;
353  $this->ID = getmypid();
354  }
355 
362  function backupDb() {
363  if ( $this->forcedDb !== null ) {
364  return $this->forcedDb;
365  }
366 
367  $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
368  $this->lb = $lbFactory->newMainLB();
369  $db = $this->lb->getMaintenanceConnectionRef( DB_REPLICA, 'dump' );
370 
371  // Discourage the server from disconnecting us if it takes a long time
372  // to read out the big ol' batch query.
373  $db->setSessionOptions( [ 'connTimeout' => 3600 * 24 ] );
374 
375  return $db;
376  }
377 
384  function setDB( IMaintainableDatabase $db ) {
385  parent::setDB( $db );
386  $this->forcedDb = $db;
387  }
388 
389  function __destruct() {
390  if ( isset( $this->lb ) ) {
391  $this->lb->closeAll();
392  }
393  }
394 
395  function backupServer() {
396  global $wgDBserver;
397 
398  return $this->server ?: $wgDBserver;
399  }
400 
401  function reportPage() {
402  $this->pageCount++;
403  }
404 
405  function revCount() {
406  $this->revCount++;
407  $this->report();
408  }
409 
410  function report( $final = false ) {
411  if ( $final xor ( $this->revCount % $this->reportingInterval == 0 ) ) {
412  $this->showReport();
413  }
414  }
415 
416  function showReport() {
417  if ( $this->reporting ) {
418  $now = wfTimestamp( TS_DB );
419  $nowts = microtime( true );
420  $deltaAll = $nowts - $this->startTime;
421  $deltaPart = $nowts - $this->lastTime;
422  $this->pageCountPart = $this->pageCount - $this->pageCountLast;
423  $this->revCountPart = $this->revCount - $this->revCountLast;
424 
425  if ( $deltaAll ) {
426  $portion = $this->revCount / $this->maxCount;
427  $eta = $this->startTime + $deltaAll / $portion;
428  $etats = wfTimestamp( TS_DB, intval( $eta ) );
429  $pageRate = $this->pageCount / $deltaAll;
430  $revRate = $this->revCount / $deltaAll;
431  } else {
432  $pageRate = '-';
433  $revRate = '-';
434  $etats = '-';
435  }
436  if ( $deltaPart ) {
437  $pageRatePart = $this->pageCountPart / $deltaPart;
438  $revRatePart = $this->revCountPart / $deltaPart;
439  } else {
440  $pageRatePart = '-';
441  $revRatePart = '-';
442  }
443 
444  $dbDomain = WikiMap::getCurrentWikiDbDomain()->getId();
445  $this->progress( sprintf(
446  "%s: %s (ID %d) %d pages (%0.1f|%0.1f/sec all|curr), "
447  . "%d revs (%0.1f|%0.1f/sec all|curr), ETA %s [max %d]",
448  $now, $dbDomain, $this->ID, $this->pageCount, $pageRate,
449  $pageRatePart, $this->revCount, $revRate, $revRatePart, $etats,
450  $this->maxCount
451  ) );
452  $this->lastTime = $nowts;
453  $this->revCountLast = $this->revCount;
454  }
455  }
456 
457  function progress( $string ) {
458  if ( $this->reporting ) {
459  fwrite( $this->stderr, $string . "\n" );
460  }
461  }
462 }
$filter
$filter
Definition: profileinfo.php:344
BackupDumper\registerOutput
registerOutput( $name, $class)
Definition: BackupDumper.php:155
BackupDumper\$thisRevFormat
string null $thisRevFormat
Definition: BackupDumper.php:91
WikiExporter\schemaVersion
static schemaVersion()
Returns the default export schema version, as defined by $wgXmlDumpSchemaVersion.
Definition: WikiExporter.php:84
BackupDumper\$endId
$endId
Definition: BackupDumper.php:45
BackupDumper\revCount
revCount()
Definition: BackupDumper.php:405
WikiMap\getCurrentWikiDbDomain
static getCurrentWikiDbDomain()
Definition: WikiMap.php:292
BackupDumper\backupDb
backupDb()
Definition: BackupDumper.php:362
$wgDBserver
$wgDBserver
Database host name or IP address.
Definition: DefaultSettings.php:1918
BackupDumper\$startTime
int $startTime
Definition: BackupDumper.php:71
MediaWiki\MediaWikiServices
MediaWikiServices is the service locator for the application scope of MediaWiki.
Definition: MediaWikiServices.php:117
BackupDumper\$revCountPart
int $revCountPart
Definition: BackupDumper.php:75
Maintenance\fatalError
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
Definition: Maintenance.php:504
WikiExporter\CURRENT
const CURRENT
Definition: WikiExporter.php:52
BackupDumper\$revEndId
$revEndId
Definition: BackupDumper.php:47
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:1869
BackupDumper\backupServer
backupServer()
Definition: BackupDumper.php:395
BackupDumper\$limitNamespaces
$limitNamespaces
Definition: BackupDumper.php:51
BackupDumper\$thisRevModel
string null $thisRevModel
Definition: BackupDumper.php:89
BackupDumper\$openElement
array false $openElement
Definition: BackupDumper.php:85
BackupDumper\__destruct
__destruct()
Definition: BackupDumper.php:389
BackupDumper\$revCountLast
$revCountLast
Definition: BackupDumper.php:63
$file
if(PHP_SAPI !='cli-server') if(!isset( $_SERVER['SCRIPT_FILENAME'])) $file
Item class for a filearchive table row.
Definition: router.php:42
BackupDumper\$pageCountLast
$pageCountLast
Definition: BackupDumper.php:62
BackupDumper\$revCount
$revCount
Definition: BackupDumper.php:57
BackupDumper\$sink
$sink
Definition: BackupDumper.php:60
Maintenance
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
Definition: Maintenance.php:82
BackupDumper\$lb
LoadBalancer $lb
Definition: BackupDumper.php:107
XmlDumpWriter\$supportedSchemas
static string[] $supportedSchemas
the schema versions supported for output @final
Definition: XmlDumpWriter.php:54
BackupDumper\$skipFooter
$skipFooter
Definition: BackupDumper.php:43
BackupDumper\$orderRevs
$orderRevs
Definition: BackupDumper.php:50
BackupDumper\$buffer
string $buffer
Definition: BackupDumper.php:83
Maintenance\loadWithArgv
loadWithArgv( $argv)
Load params and arguments from a given array of command-line arguments.
Definition: Maintenance.php:873
$dbr
$dbr
Definition: testCompression.php:50
BackupDumper\$schemaVersion
$schemaVersion
Definition: BackupDumper.php:58
DumpMultiWriter
Definition: DumpMultiWriter.php:29
BackupDumper\$skipHeader
$skipHeader
Definition: BackupDumper.php:42
BackupDumper\$reporting
$reporting
Definition: BackupDumper.php:40
MWException
MediaWiki exception.
Definition: MWException.php:26
BackupDumper\showReport
showReport()
Definition: BackupDumper.php:416
WikiExporter\TEXT
const TEXT
Definition: WikiExporter.php:57
BackupDumper\$startId
$startId
Definition: BackupDumper.php:44
BackupDumper\$maxCount
int $maxCount
Definition: BackupDumper.php:77
Maintenance\addOption
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
Definition: Maintenance.php:267
Maintenance\$orderedOptions
array $orderedOptions
Used to read the options in the order they were passed.
Definition: Maintenance.php:189
BackupDumper\loadPlugin
loadPlugin( $class, $file)
Load a plugin and register it.
Definition: BackupDumper.php:174
BackupDumper\$dumpUploadFileContents
$dumpUploadFileContents
Definition: BackupDumper.php:49
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
DumpOutput
Definition: DumpOutput.php:29
BackupDumper\$timeOfCheckpoint
int $timeOfCheckpoint
Definition: BackupDumper.php:79
WikiExporter
Definition: WikiExporter.php:38
BackupDumper\$ID
$ID
Definition: BackupDumper.php:68
Wikimedia\Rdbms\LoadBalancer
Database connection, tracking, load balancing, and transaction manager for a cluster.
Definition: LoadBalancer.php:42
BackupDumper\initProgress
initProgress( $history=WikiExporter::FULL)
Initialise starting time and maximum revision count.
Definition: BackupDumper.php:342
BackupDumper\$state
string $state
Definition: BackupDumper.php:95
BackupDumper\report
report( $final=false)
Definition: BackupDumper.php:410
BackupDumper\$pageCountPart
int $pageCountPart
Definition: BackupDumper.php:73
BackupDumper\$outputTypes
$outputTypes
Definition: BackupDumper.php:65
BackupDumper\$reportingInterval
$reportingInterval
Definition: BackupDumper.php:55
BackupDumper\$pages
$pages
Definition: BackupDumper.php:41
WikiExporter\FULL
const FULL
Definition: WikiExporter.php:51
BackupDumper\$dumpUploads
$dumpUploads
Definition: BackupDumper.php:48
Maintenance\getDB
getDB( $db, $groups=[], $dbDomain=false)
Returns a database to be used by current maintenance script.
Definition: Maintenance.php:1396
BackupDumper\__construct
__construct( $args=null)
Definition: BackupDumper.php:112
BackupDumper\$atStart
bool $atStart
Definition: BackupDumper.php:87
BackupDumper\progress
progress( $string)
Definition: BackupDumper.php:457
BackupDumper\$stderr
bool resource $stderr
Definition: BackupDumper.php:53
$args
if( $line===false) $args
Definition: cdb.php:64
BackupDumper
Definition: BackupDumper.php:39
BackupDumper\execute
execute()
Do the actual work.
Definition: BackupDumper.php:182
Maintenance\getOption
getOption( $name, $default=null)
Get an option, or return the default.
Definition: Maintenance.php:302
WikiExporter\LOGS
const LOGS
Definition: WikiExporter.php:54
BackupDumper\$server
$server
Definition: BackupDumper.php:59
BackupDumper\reportPage
reportPage()
Definition: BackupDumper.php:401
BackupDumper\processOptions
processOptions()
Processes arguments and sets $this->$sink accordingly.
Definition: BackupDumper.php:189
BackupDumper\$lastTime
$lastTime
Definition: BackupDumper.php:61
BackupDumper\dump
dump( $history, $text=WikiExporter::TEXT)
Definition: BackupDumper.php:287
BackupDumper\$filterTypes
$filterTypes
Definition: BackupDumper.php:66
ExportProgressFilter
Definition: ExportProgressFilter.php:27
Maintenance\hasOption
hasOption( $name)
Checks to see if a particular option exists.
Definition: Maintenance.php:288
Wikimedia\Rdbms\IDatabase\setSessionOptions
setSessionOptions(array $options)
Override database's default behavior.
Wikimedia\Rdbms\IMaintainableDatabase
Advanced database interface for IDatabase handles that include maintenance methods.
Definition: IMaintainableDatabase.php:38
BackupDumper\setDB
setDB(IMaintainableDatabase $db)
Force the dump to use the provided database connection for database operations, wherever possible.
Definition: BackupDumper.php:384
BackupDumper\$forcedDb
IMaintainableDatabase null $forcedDb
The dependency-injected database to use.
Definition: BackupDumper.php:104
BackupDumper\$egress
ExportProgressFilter $egress
Definition: BackupDumper.php:81
BackupDumper\$revStartId
$revStartId
Definition: BackupDumper.php:46
BackupDumper\$pageCount
$pageCount
Definition: BackupDumper.php:56
BackupDumper\$lastName
string $lastName
Definition: BackupDumper.php:93
$type
$type
Definition: testCompression.php:48
BackupDumper\registerFilter
registerFilter( $name, $class)
Definition: BackupDumper.php:163