3 * Base classes for database dumpers
5 * Copyright © 2005 Brion Vibber <brion@pobox.com>
6 * https://www.mediawiki.org/
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
24 * @ingroup Dump Maintenance
27 require_once __DIR__ . '/Maintenance.php';
28 require_once __DIR__ . '/../includes/export/DumpFilter.php';
31 * @ingroup Dump Maintenance
33 class BackupDumper extends Maintenance {
34 public $reporting = true;
35 public $pages = null; // all pages
36 public $skipHeader = false; // don't output <mediawiki> and <siteinfo>
37 public $skipFooter = false; // don't output </mediawiki>
40 public $revStartId = 0;
42 public $dumpUploads = false;
43 public $dumpUploadFileContents = false;
44 public $orderRevs = false;
46 protected $reportingInterval = 100;
47 protected $pageCount = 0;
48 protected $revCount = 0;
49 protected $server = null; // use default
50 protected $sink = null; // Output filters
51 protected $lastTime = 0;
52 protected $pageCountLast = 0;
53 protected $revCountLast = 0;
55 protected $outputTypes = [];
56 protected $filterTypes = [];
61 * The dependency-injected database to use.
67 protected $forcedDb = null;
69 /** @var LoadBalancer */
73 private $stubText = false; // include rev_text_id instead of text; for 2-pass dump
76 * @param array $args For backward compatibility
78 function __construct( $args = null ) {
79 parent::__construct();
80 $this->stderr = fopen( "php://stderr", "wt" );
82 // Built-in output and filter plugins
83 $this->registerOutput( 'file', 'DumpFileOutput' );
84 $this->registerOutput( 'gzip', 'DumpGZipOutput' );
85 $this->registerOutput( 'bzip2', 'DumpBZip2Output' );
86 $this->registerOutput( 'dbzip2', 'DumpDBZip2Output' );
87 $this->registerOutput( '7zip', 'Dump7ZipOutput' );
89 $this->registerFilter( 'latest', 'DumpLatestFilter' );
90 $this->registerFilter( 'notalk', 'DumpNotalkFilter' );
91 $this->registerFilter( 'namespace', 'DumpNamespaceFilter' );
93 // These three can be specified multiple times
94 $this->addOption( 'plugin', 'Load a dump plugin class. Specify as <class>[:<file>].',
95 false, true, false, true );
96 $this->addOption( 'output', 'Begin a filtered output stream; Specify as <type>:<file>. ' .
97 '<type>s: file, gzip, bzip2, 7zip, dbzip2', false, true, false, true );
98 $this->addOption( 'filter', 'Add a filter on an output branch. Specify as ' .
99 '<type>[:<options>]. <types>s: latest, notalk, namespace', false, true, false, true );
100 $this->addOption( 'report', 'Report position and speed after every n pages processed. ' .
101 'Default: 100.', false, true );
102 $this->addOption( 'server', 'Force reading from MySQL server', false, true );
103 $this->addOption( '7ziplevel', '7zip compression level for all 7zip outputs. Used for ' .
104 '-mx option to 7za command.', false, true );
107 // Args should be loaded and processed so that dump() can be called directly
108 // instead of execute()
109 $this->loadWithArgv( $args );
110 $this->processOptions();
115 * @param string $name
116 * @param string $class Name of output filter plugin class
118 function registerOutput( $name, $class ) {
119 $this->outputTypes[$name] = $class;
123 * @param string $name
124 * @param string $class Name of filter plugin class
126 function registerFilter( $name, $class ) {
127 $this->filterTypes[$name] = $class;
131 * Load a plugin and register it
133 * @param string $class Name of plugin class; must have a static 'register'
134 * method that takes a BackupDumper as a parameter.
135 * @param string $file Full or relative path to the PHP file to load, or empty
137 function loadPlugin( $class, $file ) {
141 $register = [ $class, 'register' ];
142 call_user_func_array( $register, [ $this ] );
146 throw new MWException( 'execute() must be overridden in subclasses' );
150 * Processes arguments and sets $this->$sink accordingly
152 function processOptions() {
156 $options = $this->orderedOptions;
157 foreach ( $options as $arg ) {
163 $val = explode( ':', $param );
165 if ( count( $val ) === 1 ) {
166 $this->loadPlugin( $val[0], '' );
167 } elseif ( count( $val ) === 2 ) {
168 $this->loadPlugin( $val[0], $val[1] );
170 $this->fatalError( 'Invalid plugin parameter' );
176 $split = explode( ':', $param, 2 );
177 if ( count( $split ) !== 2 ) {
178 $this->fatalError( 'Invalid output parameter' );
180 list( $type, $file ) = $split;
181 if ( !is_null( $sink ) ) {
184 if ( !isset( $this->outputTypes[$type] ) ) {
185 $this->fatalError( "Unrecognized output sink type '$type'" );
187 $class = $this->outputTypes[$type];
188 if ( $type === "7zip" ) {
189 $sink = new $class( $file, intval( $this->getOption( '7ziplevel' ) ) );
191 $sink = new $class( $file );
196 if ( is_null( $sink ) ) {
197 $sink = new DumpOutput();
200 $split = explode( ':', $param );
203 if ( !isset( $this->filterTypes[$key] ) ) {
204 $this->fatalError( "Unrecognized filter type '$key'" );
207 $type = $this->filterTypes[$key];
209 if ( count( $split ) === 1 ) {
210 $filter = new $type( $sink );
211 } elseif ( count( $split ) === 2 ) {
212 $filter = new $type( $sink, $split[1] );
214 $this->fatalError( 'Invalid filter parameter' );
217 // references are lame in php...
225 if ( $this->hasOption( 'report' ) ) {
226 $this->reportingInterval = intval( $this->getOption( 'report' ) );
229 if ( $this->hasOption( 'server' ) ) {
230 $this->server = $this->getOption( 'server' );
233 if ( is_null( $sink ) ) {
234 $sink = new DumpOutput();
238 if ( count( $sinks ) > 1 ) {
239 $this->sink = new DumpMultiWriter( $sinks );
245 function dump( $history, $text = WikiExporter::TEXT ) {
246 # Notice messages will foul up your XML output even if they're
247 # relatively harmless.
248 if ( ini_get( 'display_errors' ) ) {
249 ini_set( 'display_errors', 'stderr' );
252 $this->initProgress( $history );
254 $db = $this->backupDb();
255 $exporter = new WikiExporter( $db, $history, WikiExporter::STREAM, $text );
256 $exporter->dumpUploads = $this->dumpUploads;
257 $exporter->dumpUploadFileContents = $this->dumpUploadFileContents;
259 $wrapper = new ExportProgressFilter( $this->sink, $this );
260 $exporter->setOutputSink( $wrapper );
262 if ( !$this->skipHeader ) {
263 $exporter->openStream();
265 # Log item dumps: all or by range
266 if ( $history & WikiExporter::LOGS ) {
267 if ( $this->startId || $this->endId ) {
268 $exporter->logsByRange( $this->startId, $this->endId );
270 $exporter->allLogs();
272 } elseif ( is_null( $this->pages ) ) {
273 # Page dumps: all or by page ID range
274 if ( $this->startId || $this->endId ) {
275 $exporter->pagesByRange( $this->startId, $this->endId, $this->orderRevs );
276 } elseif ( $this->revStartId || $this->revEndId ) {
277 $exporter->revsByRange( $this->revStartId, $this->revEndId );
279 $exporter->allPages();
282 # Dump of specific pages
283 $exporter->pagesByName( $this->pages );
286 if ( !$this->skipFooter ) {
287 $exporter->closeStream();
290 $this->report( true );
294 * Initialise starting time and maximum revision count.
295 * We'll make ETA calculations based an progress, assuming relatively
296 * constant per-revision rate.
297 * @param int $history WikiExporter::CURRENT or WikiExporter::FULL
299 function initProgress( $history = WikiExporter::FULL ) {
300 $table = ( $history == WikiExporter::CURRENT ) ? 'page' : 'revision';
301 $field = ( $history == WikiExporter::CURRENT ) ? 'page_id' : 'rev_id';
303 $dbr = $this->forcedDb;
304 if ( $this->forcedDb === null ) {
305 $dbr = wfGetDB( DB_REPLICA );
307 $this->maxCount = $dbr->selectField( $table, "MAX($field)", '', __METHOD__ );
308 $this->startTime = microtime( true );
309 $this->lastTime = $this->startTime;
310 $this->ID = getmypid();
314 * @todo Fixme: the --server parameter is currently not respected, as it
315 * doesn't seem terribly easy to ask the load balancer for a particular
316 * connection by name.
319 function backupDb() {
320 if ( $this->forcedDb !== null ) {
321 return $this->forcedDb;
324 $this->lb = wfGetLBFactory()->newMainLB();
325 $db = $this->lb->getConnection( DB_REPLICA, 'dump' );
327 // Discourage the server from disconnecting us if it takes a long time
328 // to read out the big ol' batch query.
329 $db->setSessionOptions( [ 'connTimeout' => 3600 * 24 ] );
335 * Force the dump to use the provided database connection for database
336 * operations, wherever possible.
338 * @param IDatabase|null $db (Optional) the database connection to use. If null, resort to
339 * use the globally provided ways to get database connections.
341 function setDB( IDatabase $db = null ) {
342 parent::setDB( $db );
343 $this->forcedDb = $db;
346 function __destruct() {
347 if ( isset( $this->lb ) ) {
348 $this->lb->closeAll();
352 function backupServer() {
360 function reportPage() {
364 function revCount() {
369 function report( $final = false ) {
370 if ( $final xor ( $this->revCount % $this->reportingInterval == 0 ) ) {
375 function showReport() {
376 if ( $this->reporting ) {
377 $now = wfTimestamp( TS_DB );
378 $nowts = microtime( true );
379 $deltaAll = $nowts - $this->startTime;
380 $deltaPart = $nowts - $this->lastTime;
381 $this->pageCountPart = $this->pageCount - $this->pageCountLast;
382 $this->revCountPart = $this->revCount - $this->revCountLast;
385 $portion = $this->revCount / $this->maxCount;
386 $eta = $this->startTime + $deltaAll / $portion;
387 $etats = wfTimestamp( TS_DB, intval( $eta ) );
388 $pageRate = $this->pageCount / $deltaAll;
389 $revRate = $this->revCount / $deltaAll;
396 $pageRatePart = $this->pageCountPart / $deltaPart;
397 $revRatePart = $this->revCountPart / $deltaPart;
402 $this->progress( sprintf(
403 "%s: %s (ID %d) %d pages (%0.1f|%0.1f/sec all|curr), "
404 . "%d revs (%0.1f|%0.1f/sec all|curr), ETA %s [max %d]",
405 $now, wfWikiID(), $this->ID, $this->pageCount, $pageRate,
406 $pageRatePart, $this->revCount, $revRate, $revRatePart, $etats,
409 $this->lastTime = $nowts;
410 $this->revCountLast = $this->revCount;
414 function progress( $string ) {
415 if ( $this->reporting ) {
416 fwrite( $this->stderr, $string . "\n" );
420 function fatalError( $msg ) {
421 $this->error( "$msg\n", 1 );
425 class ExportProgressFilter extends DumpFilter {
426 function __construct( &$sink, &$progress ) {
427 parent::__construct( $sink );
428 $this->progress = $progress;
431 function writeClosePage( $string ) {
432 parent::writeClosePage( $string );
433 $this->progress->reportPage();
436 function writeRevision( $rev, $string ) {
437 parent::writeRevision( $rev, $string );
438 $this->progress->revCount();