Channeled output support for maintenance scripts.
[lhc/web/wiklou.git] / maintenance / Maintenance.php
1 <?php
2 /**
3 * @file
4 * @ingroup Maintenance
5 * @defgroup Maintenance Maintenance
6 */
7
8 // Define this so scripts can easily find doMaintenance.php
9 define( 'DO_MAINTENANCE', dirname( __FILE__ ) . '/doMaintenance.php' );
10 $maintClass = false;
11
12 // Make sure we're on PHP5 or better
13 if( version_compare( PHP_VERSION, '5.0.0' ) < 0 ) {
14 echo( "Sorry! This version of MediaWiki requires PHP 5; you are running " .
15 PHP_VERSION . ".\n\n" .
16 "If you are sure you already have PHP 5 installed, it may be installed\n" .
17 "in a different path from PHP 4. Check with your system administrator.\n" );
18 die();
19 }
20
21 /**
22 * Abstract maintenance class for quickly writing and churning out
23 * maintenance scripts with minimal effort. All that _must_ be defined
24 * is the execute() method. See docs/maintenance.txt for more info
25 * and a quick demo of how to use it.
26 *
27 * This program is free software; you can redistribute it and/or modify
28 * it under the terms of the GNU General Public License as published by
29 * the Free Software Foundation; either version 2 of the License, or
30 * (at your option) any later version.
31 *
32 * This program is distributed in the hope that it will be useful,
33 * but WITHOUT ANY WARRANTY; without even the implied warranty of
34 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 * GNU General Public License for more details.
36 *
37 * You should have received a copy of the GNU General Public License along
38 * with this program; if not, write to the Free Software Foundation, Inc.,
39 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
40 * http://www.gnu.org/copyleft/gpl.html
41 *
42 * @author Chad Horohoe <chad@anyonecanedit.org>
43 * @since 1.16
44 * @ingroup Maintenance
45 */
46 abstract class Maintenance {
47
48 /**
49 * Constants for DB access type
50 * @see Maintenance::getDbType()
51 */
52 const DB_NONE = 0;
53 const DB_STD = 1;
54 const DB_ADMIN = 2;
55
56 // Const for getStdin()
57 const STDIN_ALL = 'all';
58
59 // This is the desired params
60 protected $mParams = array();
61
62 // Array of desired args
63 protected $mArgList = array();
64
65 // This is the list of options that were actually passed
66 protected $mOptions = array();
67
68 // This is the list of arguments that were actually passed
69 protected $mArgs = array();
70
71 // Name of the script currently running
72 protected $mSelf;
73
74 // Special vars for params that are always used
75 protected $mQuiet = false;
76 protected $mDbUser, $mDbPass;
77
78 // A description of the script, children should change this
79 protected $mDescription = '';
80
81 // Have we already loaded our user input?
82 protected $mInputLoaded = false;
83
84 // Batch size. If a script supports this, they should set
85 // a default with setBatchSize()
86 protected $mBatchSize = null;
87
88 /**
89 * List of all the core maintenance scripts. This is added
90 * to scripts added by extensions in $wgMaintenanceScripts
91 * and returned by getMaintenanceScripts()
92 */
93 protected static $mCoreScripts = null;
94
95 /**
96 * Default constructor. Children should call this if implementing
97 * their own constructors
98 */
99 public function __construct() {
100 $this->addDefaultParams();
101 register_shutdown_function( array( $this, 'outputChanneled' ), false );
102 }
103
104 /**
105 * Do the actual work. All child classes will need to implement this
106 */
107 abstract public function execute();
108
109 /**
110 * Add a parameter to the script. Will be displayed on --help
111 * with the associated description
112 *
113 * @param $name String The name of the param (help, version, etc)
114 * @param $description String The description of the param to show on --help
115 * @param $required boolean Is the param required?
116 * @param $withArg Boolean Is an argument required with this option?
117 */
118 protected function addOption( $name, $description, $required = false, $withArg = false ) {
119 $this->mParams[$name] = array( 'desc' => $description, 'require' => $required, 'withArg' => $withArg );
120 }
121
122 /**
123 * Checks to see if a particular param exists.
124 * @param $name String The name of the param
125 * @return boolean
126 */
127 protected function hasOption( $name ) {
128 return isset( $this->mOptions[$name] );
129 }
130
131 /**
132 * Get an option, or return the default
133 * @param $name String The name of the param
134 * @param $default mixed Anything you want, default null
135 * @return mixed
136 */
137 protected function getOption( $name, $default = null ) {
138 if( $this->hasOption( $name ) ) {
139 return $this->mOptions[$name];
140 } else {
141 // Set it so we don't have to provide the default again
142 $this->mOptions[$name] = $default;
143 return $this->mOptions[$name];
144 }
145 }
146
147 /**
148 * Add some args that are needed
149 * @param $arg String Name of the arg, like 'start'
150 * @param $description String Short description of the arg
151 * @param $required Boolean Is this required?
152 */
153 protected function addArg( $arg, $description, $required = true ) {
154 $this->mArgList[] = array(
155 'name' => $arg,
156 'desc' => $description,
157 'require' => $required
158 );
159 }
160
161 /**
162 * Does a given argument exist?
163 * @param $argId int The integer value (from zero) for the arg
164 * @return boolean
165 */
166 protected function hasArg( $argId = 0 ) {
167 return isset( $this->mArgs[$argId] );
168 }
169
170 /**
171 * Get an argument.
172 * @param $argId int The integer value (from zero) for the arg
173 * @param $default mixed The default if it doesn't exist
174 * @return mixed
175 */
176 protected function getArg( $argId = 0, $default = null ) {
177 return $this->hasArg( $argId ) ? $this->mArgs[$argId] : $default;
178 }
179
180 /**
181 * Set the batch size.
182 * @param $s int The number of operations to do in a batch
183 */
184 protected function setBatchSize( $s = 0 ) {
185 $this->mBatchSize = $s;
186 }
187
188 /**
189 * Get the script's name
190 * @return String
191 */
192 public function getName() {
193 return $this->mSelf;
194 }
195
196 /**
197 * Return input from stdin.
198 * @param $length int The number of bytes to read. If null,
199 * just return the handle. Maintenance::STDIN_ALL returns
200 * the full length
201 * @return mixed
202 */
203 protected function getStdin( $len = null ) {
204 if ( $len == Maintenance::STDIN_ALL )
205 return file_get_contents( 'php://stdin' );
206 $f = fopen( 'php://stdin', 'rt' );
207 if( !$len )
208 return $f;
209 $input = fgets( $f, $len );
210 fclose( $f );
211 return rtrim( $input );
212 }
213
214 /**
215 * Throw some output to the user. Scripts can call this with no fears,
216 * as we handle all --quiet stuff here
217 * @param $out String The text to show to the user
218 * @param $channel Mixed Unique identifier for the channel. See function outputChanneled.
219 */
220 protected function output( $out, $channel = null ) {
221 if( $this->mQuiet ) {
222 return;
223 }
224 $out = preg_replace( '/\n\z/', '', $out );
225 $this->outputChanneled( $out, $channel );
226 }
227
228 /**
229 * Throw an error to the user. Doesn't respect --quiet, so don't use
230 * this for non-error output
231 * @param $err String The error to display
232 * @param $die boolean If true, go ahead and die out.
233 */
234 protected function error( $err, $die = false ) {
235 $this->outputChanneled( false );
236 if ( php_sapi_name() == 'cli' ) {
237 fwrite( STDERR, $err . "\n" );
238 } else {
239 $f = fopen( 'php://stderr', 'w' );
240 fwrite( $f, $err . "\n" );
241 fclose( $f );
242 }
243 if( $die ) die();
244 }
245
246 private $atLineStart = true;
247 private $lastChannel = null;
248
249 /**
250 * Message outputter with channeled message support. Messages on the
251 * same channel are concatenated, but any intervening messages in another
252 * channel start a new line.
253 * @param $msg String The message without trailing newline
254 * @param $channel Channel identifier or null for no channel. Channel comparison uses ===.
255 */
256 public function outputChanneled( $msg, $channel = null ) {
257 $handle = fopen( 'php://stdout', 'w' );
258
259 if ( $msg === false ) {
260 // For cleanup
261 if ( !$this->atLineStart ) fwrite( $handle, "\n" );
262 fclose( $handle );
263 return;
264 }
265
266 // End the current line if necessary
267 if ( !$this->atLineStart && $channel !== $this->lastChannel ) {
268 fwrite( $handle, "\n" );
269 }
270
271 fwrite( $handle, $msg );
272
273 $this->atLineStart = false;
274 if ( $channel === null ) {
275 // For unchanneled messages, output trailing newline immediately
276 fwrite( $handle, "\n" );
277 $this->atLineStart = true;
278 }
279 $this->lastChannel = $channel;
280
281 // Cleanup handle
282 fclose( $handle );
283 }
284
285 /**
286 * Does the script need different DB access? By default, we give Maintenance
287 * scripts normal rights to the DB. Sometimes, a script needs admin rights
288 * access for a reason and sometimes they want no access. Subclasses should
289 * override and return one of the following values, as needed:
290 * Maintenance::DB_NONE - For no DB access at all
291 * Maintenance::DB_STD - For normal DB access, default
292 * Maintenance::DB_ADMIN - For admin DB access
293 * @return int
294 */
295 protected function getDbType() {
296 return Maintenance::DB_STD;
297 }
298
299 /**
300 * Add the default parameters to the scripts
301 */
302 protected function addDefaultParams() {
303 $this->addOption( 'help', "Display this help message" );
304 $this->addOption( 'quiet', "Whether to supress non-error output" );
305 $this->addOption( 'conf', "Location of LocalSettings.php, if not default", false, true );
306 $this->addOption( 'wiki', "For specifying the wiki ID", false, true );
307 $this->addOption( 'globals', "Output globals at the end of processing for debugging" );
308 // If we support a DB, show the options
309 if( $this->getDbType() > 0 ) {
310 $this->addOption( 'dbuser', "The DB user to use for this script", false, true );
311 $this->addOption( 'dbpass', "The password to use for this script", false, true );
312 }
313 // If we support $mBatchSize, show the option
314 if( $this->mBatchSize ) {
315 $this->addOption( 'batch-size', 'Run this many operations ' .
316 'per batch, default: ' . $this->mBatchSize , false, true );
317 }
318 }
319
320 /**
321 * Run a child maintenance script. Pass all of the current arguments
322 * to it.
323 * @param $maintClass String A name of a child maintenance class
324 * @param $classFile String Full path of where the child is
325 * @return Maintenance child
326 */
327 protected function runChild( $maintClass, $classFile = null ) {
328 // If we haven't already specified, kill setup procedures
329 // for child scripts, we've already got a sane environment
330 self::disableSetup();
331
332 // Make sure the class is loaded first
333 if( !class_exists( $maintClass ) ) {
334 if( $classFile ) {
335 require_once( $classFile );
336 }
337 if( !class_exists( $maintClass ) ) {
338 $this->error( "Cannot spawn child: $maintClass" );
339 }
340 }
341
342 $child = new $maintClass();
343 $child->loadParamsAndArgs( $this->mSelf, $this->mOptions, $this->mArgs );
344 return $child;
345 }
346
347 /**
348 * Disable Setup.php mostly
349 */
350 protected static function disableSetup() {
351 if( !defined( 'MW_NO_SETUP' ) )
352 define( 'MW_NO_SETUP', true );
353 }
354
355 /**
356 * Do some sanity checking and basic setup
357 */
358 public function setup() {
359 global $IP, $wgCommandLineMode, $wgUseNormalUser, $wgRequestTime;
360
361 # Abort if called from a web server
362 if ( isset( $_SERVER ) && array_key_exists( 'REQUEST_METHOD', $_SERVER ) ) {
363 $this->error( "This script must be run from the command line", true );
364 }
365
366 # Make sure we can handle script parameters
367 if( !ini_get( 'register_argc_argv' ) ) {
368 $this->error( "Cannot get command line arguments, register_argc_argv is set to false", true );
369 }
370
371 if( version_compare( phpversion(), '5.2.4' ) >= 0 ) {
372 // Send PHP warnings and errors to stderr instead of stdout.
373 // This aids in diagnosing problems, while keeping messages
374 // out of redirected output.
375 if( ini_get( 'display_errors' ) ) {
376 ini_set( 'display_errors', 'stderr' );
377 }
378
379 // Don't touch the setting on earlier versions of PHP,
380 // as setting it would disable output if you'd wanted it.
381
382 // Note that exceptions are also sent to stderr when
383 // command-line mode is on, regardless of PHP version.
384 }
385
386 # Set the memory limit
387 # Note we need to set it again later in cache LocalSettings changed it
388 ini_set( 'memory_limit', $this->memoryLimit() );
389
390 # Set max execution time to 0 (no limit). PHP.net says that
391 # "When running PHP from the command line the default setting is 0."
392 # But sometimes this doesn't seem to be the case.
393 ini_set( 'max_execution_time', 0 );
394
395 $wgRequestTime = microtime( true );
396
397 # Define us as being in MediaWiki
398 define( 'MEDIAWIKI', true );
399
400 # Setup $IP, using MW_INSTALL_PATH if it exists
401 $IP = strval( getenv( 'MW_INSTALL_PATH' ) ) !== ''
402 ? getenv( 'MW_INSTALL_PATH' )
403 : realpath( dirname( __FILE__ ) . '/..' );
404
405 $wgCommandLineMode = true;
406 # Turn off output buffering if it's on
407 @ob_end_flush();
408
409 if ( !isset( $wgUseNormalUser ) ) {
410 $wgUseNormalUser = false;
411 }
412
413 $this->loadParamsAndArgs();
414 $this->maybeHelp();
415 $this->validateParamsAndArgs();
416 }
417
418 /**
419 * Normally we disable the memory_limit when running admin scripts.
420 * Some scripts may wish to actually set a limit, however, to avoid
421 * blowing up unexpectedly.
422 */
423 public function memoryLimit() {
424 return -1;
425 }
426
427 /**
428 * Clear all params and arguments.
429 */
430 public function clearParamsAndArgs() {
431 $this->mOptions = array();
432 $this->mArgs = array();
433 $this->mInputLoaded = false;
434 }
435
436 /**
437 * Process command line arguments
438 * $mOptions becomes an array with keys set to the option names
439 * $mArgs becomes a zero-based array containing the non-option arguments
440 *
441 * @param $self String The name of the script, if any
442 * @param $opts Array An array of options, in form of key=>value
443 * @param $args Array An array of command line arguments
444 */
445 public function loadParamsAndArgs( $self = null, $opts = null, $args = null ) {
446 # If we were given opts or args, set those and return early
447 if( $self ) {
448 $this->mSelf = $self;
449 $this->mInputLoaded = true;
450 }
451 if( $opts ) {
452 $this->mOptions = $opts;
453 $this->mInputLoaded = true;
454 }
455 if( $args ) {
456 $this->mArgs = $args;
457 $this->mInputLoaded = true;
458 }
459
460 # If we've already loaded input (either by user values or from $argv)
461 # skip on loading it again. The array_shift() will corrupt values if
462 # it's run again and again
463 if( $this->mInputLoaded ) {
464 $this->loadSpecialVars();
465 return;
466 }
467
468 global $argv;
469 $this->mSelf = array_shift( $argv );
470
471 $options = array();
472 $args = array();
473
474 # Parse arguments
475 for( $arg = reset( $argv ); $arg !== false; $arg = next( $argv ) ) {
476 if ( $arg == '--' ) {
477 # End of options, remainder should be considered arguments
478 $arg = next( $argv );
479 while( $arg !== false ) {
480 $args[] = $arg;
481 $arg = next( $argv );
482 }
483 break;
484 } elseif ( substr( $arg, 0, 2 ) == '--' ) {
485 # Long options
486 $option = substr( $arg, 2 );
487 if ( isset( $this->mParams[$option] ) && $this->mParams[$option]['withArg'] ) {
488 $param = next( $argv );
489 if ( $param === false ) {
490 $this->error( "\nERROR: $option needs a value after it\n" );
491 $this->maybeHelp( true );
492 }
493 $options[$option] = $param;
494 } else {
495 $bits = explode( '=', $option, 2 );
496 if( count( $bits ) > 1 ) {
497 $option = $bits[0];
498 $param = $bits[1];
499 } else {
500 $param = 1;
501 }
502 $options[$option] = $param;
503 }
504 } elseif ( substr( $arg, 0, 1 ) == '-' ) {
505 # Short options
506 for ( $p=1; $p<strlen( $arg ); $p++ ) {
507 $option = $arg{$p};
508 if ( isset( $this->mParams[$option]['withArg'] ) && $this->mParams[$option]['withArg'] ) {
509 $param = next( $argv );
510 if ( $param === false ) {
511 $this->error( "\nERROR: $option needs a value after it\n" );
512 $this->maybeHelp( true );
513 }
514 $options[$option] = $param;
515 } else {
516 $options[$option] = 1;
517 }
518 }
519 } else {
520 $args[] = $arg;
521 }
522 }
523
524 $this->mOptions = $options;
525 $this->mArgs = $args;
526 $this->loadSpecialVars();
527 $this->mInputLoaded = true;
528 }
529
530 /**
531 * Run some validation checks on the params, etc
532 */
533 protected function validateParamsAndArgs() {
534 $die = false;
535 # Check to make sure we've got all the required options
536 foreach( $this->mParams as $opt => $info ) {
537 if( $info['require'] && !$this->hasOption( $opt ) ) {
538 $this->error( "Param $opt required!" );
539 $die = true;
540 }
541 }
542 # Check arg list too
543 foreach( $this->mArgList as $k => $info ) {
544 if( $info['require'] && !$this->hasArg($k) ) {
545 $this->error( "Argument <" . $info['name'] . "> required!" );
546 $die = true;
547 }
548 }
549
550 if( $die ) $this->maybeHelp( true );
551 }
552
553 /**
554 * Handle the special variables that are global to all scripts
555 */
556 protected function loadSpecialVars() {
557 if( $this->hasOption( 'dbuser' ) )
558 $this->mDbUser = $this->getOption( 'dbuser' );
559 if( $this->hasOption( 'dbpass' ) )
560 $this->mDbPass = $this->getOption( 'dbpass' );
561 if( $this->hasOption( 'quiet' ) )
562 $this->mQuiet = true;
563 if( $this->hasOption( 'batch-size' ) )
564 $this->mBatchSize = $this->getOption( 'batch-size' );
565 }
566
567 /**
568 * Maybe show the help.
569 * @param $force boolean Whether to force the help to show, default false
570 */
571 protected function maybeHelp( $force = false ) {
572 ksort( $this->mParams );
573 if( $this->hasOption( 'help' ) || $force ) {
574 $this->mQuiet = false;
575 if( $this->mDescription ) {
576 $this->output( "\n" . $this->mDescription . "\n" );
577 }
578 $this->output( "\nUsage: php " . $this->mSelf );
579 if( $this->mParams ) {
580 $this->output( " [--" . implode( array_keys( $this->mParams ), "|--" ) . "]" );
581 }
582 if( $this->mArgList ) {
583 $this->output( " <" );
584 foreach( $this->mArgList as $k => $arg ) {
585 $this->output( $arg['name'] . ">" );
586 if( $k < count( $this->mArgList ) - 1 )
587 $this->output( " <" );
588 }
589 }
590 $this->output( "\n" );
591 foreach( $this->mParams as $par => $info ) {
592 $this->output( "\t$par : " . $info['desc'] . "\n" );
593 }
594 foreach( $this->mArgList as $info ) {
595 $this->output( "\t<" . $info['name'] . "> : " . $info['desc'] . "\n" );
596 }
597 die( 1 );
598 }
599 }
600
601 /**
602 * Handle some last-minute setup here.
603 */
604 public function finalSetup() {
605 global $wgCommandLineMode, $wgUseNormalUser, $wgShowSQLErrors;
606 global $wgTitle, $wgProfiling, $IP, $wgDBadminuser, $wgDBadminpassword;
607 global $wgDBuser, $wgDBpassword, $wgDBservers, $wgLBFactoryConf;
608
609 # Turn off output buffering again, it might have been turned on in the settings files
610 if( ob_get_level() ) {
611 ob_end_flush();
612 }
613 # Same with these
614 $wgCommandLineMode = true;
615
616 # If these were passed, use them
617 if( $this->mDbUser )
618 $wgDBadminuser = $this->mDbUser;
619 if( $this->mDbPass )
620 $wgDBadminpassword = $this->mDbPass;
621
622 if ( empty( $wgUseNormalUser ) && isset( $wgDBadminuser ) ) {
623 $wgDBuser = $wgDBadminuser;
624 $wgDBpassword = $wgDBadminpassword;
625
626 if( $wgDBservers ) {
627 foreach ( $wgDBservers as $i => $server ) {
628 $wgDBservers[$i]['user'] = $wgDBuser;
629 $wgDBservers[$i]['password'] = $wgDBpassword;
630 }
631 }
632 if( isset( $wgLBFactoryConf['serverTemplate'] ) ) {
633 $wgLBFactoryConf['serverTemplate']['user'] = $wgDBuser;
634 $wgLBFactoryConf['serverTemplate']['password'] = $wgDBpassword;
635 }
636 }
637
638 if ( defined( 'MW_CMDLINE_CALLBACK' ) ) {
639 $fn = MW_CMDLINE_CALLBACK;
640 $fn();
641 }
642
643 $wgShowSQLErrors = true;
644 @set_time_limit( 0 );
645 ini_set( 'memory_limit', $this->memoryLimit() );
646
647 $wgProfiling = false; // only for Profiler.php mode; avoids OOM errors
648 }
649
650 /**
651 * Potentially debug globals. Originally a feature only
652 * for refreshLinks
653 */
654 public function globals() {
655 if( $this->hasOption( 'globals' ) ) {
656 print_r( $GLOBALS );
657 }
658 }
659
660 /**
661 * Do setup specific to WMF
662 */
663 public function loadWikimediaSettings() {
664 global $IP, $wgNoDBParam, $wgUseNormalUser, $wgConf, $site, $lang;
665
666 if ( empty( $wgNoDBParam ) ) {
667 # Check if we were passed a db name
668 if ( isset( $this->mOptions['wiki'] ) ) {
669 $db = $this->mOptions['wiki'];
670 } else {
671 $db = array_shift( $this->mArgs );
672 }
673 list( $site, $lang ) = $wgConf->siteFromDB( $db );
674
675 # If not, work out the language and site the old way
676 if ( is_null( $site ) || is_null( $lang ) ) {
677 if ( !$db ) {
678 $lang = 'aa';
679 } else {
680 $lang = $db;
681 }
682 if ( isset( $this->mArgs[0] ) ) {
683 $site = array_shift( $this->mArgs );
684 } else {
685 $site = 'wikipedia';
686 }
687 }
688 } else {
689 $lang = 'aa';
690 $site = 'wikipedia';
691 }
692
693 # This is for the IRC scripts, which now run as the apache user
694 # The apache user doesn't have access to the wikiadmin_pass command
695 if ( $_ENV['USER'] == 'apache' ) {
696 #if ( posix_geteuid() == 48 ) {
697 $wgUseNormalUser = true;
698 }
699
700 putenv( 'wikilang=' . $lang );
701
702 $DP = $IP;
703 ini_set( 'include_path', ".:$IP:$IP/includes:$IP/languages:$IP/maintenance" );
704
705 if ( $lang == 'test' && $site == 'wikipedia' ) {
706 define( 'TESTWIKI', 1 );
707 }
708 }
709
710 /**
711 * Generic setup for most installs. Returns the location of LocalSettings
712 * @return String
713 */
714 public function loadSettings() {
715 global $wgWikiFarm, $wgCommandLineMode, $IP, $DP;
716
717 $wgWikiFarm = false;
718 if ( isset( $this->mOptions['conf'] ) ) {
719 $settingsFile = $this->mOptions['conf'];
720 } else {
721 $settingsFile = "$IP/LocalSettings.php";
722 }
723 if ( isset( $this->mOptions['wiki'] ) ) {
724 $bits = explode( '-', $this->mOptions['wiki'] );
725 if ( count( $bits ) == 1 ) {
726 $bits[] = '';
727 }
728 define( 'MW_DB', $bits[0] );
729 define( 'MW_PREFIX', $bits[1] );
730 }
731
732 if ( !is_readable( $settingsFile ) ) {
733 $this->error( "A copy of your installation's LocalSettings.php\n" .
734 "must exist and be readable in the source directory.", true );
735 }
736 $wgCommandLineMode = true;
737 $DP = $IP;
738 return $settingsFile;
739 }
740
741 /**
742 * Support function for cleaning up redundant text records
743 * @param $delete boolean Whether or not to actually delete the records
744 * @author Rob Church <robchur@gmail.com>
745 */
746 protected function purgeRedundantText( $delete = true ) {
747 # Data should come off the master, wrapped in a transaction
748 $dbw = wfGetDB( DB_MASTER );
749 $dbw->begin();
750
751 $tbl_arc = $dbw->tableName( 'archive' );
752 $tbl_rev = $dbw->tableName( 'revision' );
753 $tbl_txt = $dbw->tableName( 'text' );
754
755 # Get "active" text records from the revisions table
756 $this->output( "Searching for active text records in revisions table..." );
757 $res = $dbw->query( "SELECT DISTINCT rev_text_id FROM $tbl_rev" );
758 foreach( $res as $row ) {
759 $cur[] = $row->rev_text_id;
760 }
761 $this->output( "done.\n" );
762
763 # Get "active" text records from the archive table
764 $this->output( "Searching for active text records in archive table..." );
765 $res = $dbw->query( "SELECT DISTINCT ar_text_id FROM $tbl_arc" );
766 foreach( $res as $row ) {
767 $cur[] = $row->ar_text_id;
768 }
769 $this->output( "done.\n" );
770
771 # Get the IDs of all text records not in these sets
772 $this->output( "Searching for inactive text records..." );
773 $set = implode( ', ', $cur );
774 $res = $dbw->query( "SELECT old_id FROM $tbl_txt WHERE old_id NOT IN ( $set )" );
775 $old = array();
776 foreach( $res as $row ) {
777 $old[] = $row->old_id;
778 }
779 $this->output( "done.\n" );
780
781 # Inform the user of what we're going to do
782 $count = count( $old );
783 $this->output( "$count inactive items found.\n" );
784
785 # Delete as appropriate
786 if( $delete && $count ) {
787 $this->output( "Deleting..." );
788 $set = implode( ', ', $old );
789 $dbw->query( "DELETE FROM $tbl_txt WHERE old_id IN ( $set )" );
790 $this->output( "done.\n" );
791 }
792
793 # Done
794 $dbw->commit();
795 }
796
797 /**
798 * Get the maintenance directory.
799 */
800 protected function getDir() {
801 return dirname( __FILE__ );
802 }
803
804 /**
805 * Get the list of available maintenance scripts. Note
806 * that if you call this _before_ calling doMaintenance
807 * you won't have any extensions in it yet
808 * @return array
809 */
810 public static function getMaintenanceScripts() {
811 global $wgMaintenanceScripts;
812 return $wgMaintenanceScripts + self::getCoreScripts();
813 }
814
815 /**
816 * Return all of the core maintenance scripts
817 * @return array
818 */
819 protected static function getCoreScripts() {
820 if( !self::$mCoreScripts ) {
821 self::disableSetup();
822 $paths = array(
823 dirname( __FILE__ ),
824 dirname( __FILE__ ) . '/gearman',
825 dirname( __FILE__ ) . '/language',
826 dirname( __FILE__ ) . '/storage',
827 );
828 self::$mCoreScripts = array();
829 foreach( $paths as $p ) {
830 $handle = opendir( $p );
831 while( ( $file = readdir( $handle ) ) !== false ) {
832 if( $file == 'Maintenance.php' )
833 continue;
834 $file = $p . '/' . $file;
835 if( is_dir( $file ) || !strpos( $file, '.php' ) ||
836 ( strpos( file_get_contents( $file ), '$maintClass' ) === false ) ) {
837 continue;
838 }
839 require( $file );
840 $vars = get_defined_vars();
841 if( array_key_exists( 'maintClass', $vars ) ) {
842 self::$mCoreScripts[$vars['maintClass']] = $file;
843 }
844 }
845 closedir( $handle );
846 }
847 }
848 return self::$mCoreScripts;
849 }
850 }