3 * Populate the category table.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup Maintenance
25 require_once( __DIR__
. '/Maintenance.php' );
28 * Mainteance script to populate the category table.
30 * @ingroup Maintenance
32 class PopulateCategory
extends Maintenance
{
34 const REPORTING_INTERVAL
= 1000;
36 public function __construct() {
37 parent
::__construct();
38 $this->mDescription
= <<<TEXT
39 This script will populate the category table, added in MediaWiki 1.13. It will
40 print out progress indicators every 1000 categories it adds to the table. The
41 script is perfectly safe to run on large, live wikis, and running it multiple
42 times is harmless. You may want to use the throttling options if it's causing
43 too much load; they will not affect correctness.
45 If the script is stopped and later resumed, you can use the --begin option with
46 the last printed progress indicator to pick up where you left off. This is
47 safe, because any newly-added categories before this cutoff will have been
48 added after the software update and so will be populated anyway.
50 When the script has finished, it will make a note of this in the database, and
51 will not run again without the --force option.
54 $this->addOption( 'begin', 'Only do categories whose names are alphabetically after the provided name', false, true );
55 $this->addOption( 'max-slave-lag', 'If slave lag exceeds this many seconds, wait until it drops before continuing. Default: 10', false, true );
56 $this->addOption( 'throttle', 'Wait this many milliseconds after each category. Default: 0', false, true );
57 $this->addOption( 'force', 'Run regardless of whether the database says it\'s been run already' );
60 public function execute() {
61 $begin = $this->getOption( 'begin', '' );
62 $maxSlaveLag = $this->getOption( 'max-slave-lag', 10 );
63 $throttle = $this->getOption( 'throttle', 0 );
64 $force = $this->getOption( 'force', false );
65 $this->doPopulateCategory( $begin, $maxSlaveLag, $throttle, $force );
68 private function doPopulateCategory( $begin, $maxlag, $throttle, $force ) {
69 $dbw = wfGetDB( DB_MASTER
);
72 $row = $dbw->selectRow(
75 array( 'ul_key' => 'populate category' ),
79 $this->output( "Category table already populated. Use php " .
80 "maintenance/populateCategory.php\n--force from the command line " .
86 $throttle = intval( $throttle );
87 if ( $begin !== '' ) {
88 $where = 'cl_to > ' . $dbw->addQuotes( $begin );
95 # Find which category to update
96 $row = $dbw->selectRow(
102 'ORDER BY' => 'cl_to'
110 $where = 'cl_to > ' . $dbw->addQuotes( $name );
112 # Use the row to update the category count
113 $cat = Category
::newFromName( $name );
114 if ( !is_object( $cat ) ) {
115 $this->output( "The category named $name is not valid?!\n" );
117 $cat->refreshCounts();
121 if ( !( $i % self
::REPORTING_INTERVAL
) ) {
122 $this->output( "$name\n" );
125 usleep( $throttle * 1000 );
130 array( 'ul_key' => 'populate category' ),
135 $this->output( "Category population complete.\n" );
138 $this->output( "Could not insert category population row.\n" );
144 $maintClass = "PopulateCategory";
145 require_once( RUN_MAINTENANCE_IF_MAIN
);