From 28595b9e82662f758b263fe10a7a5c72564b8abf Mon Sep 17 00:00:00 2001 From: Reedy Date: Thu, 15 Aug 2013 23:02:21 +0100 Subject: [PATCH] Don't do special page cache updates if --list or --only parameters passed Change-Id: I06522ea888d2d7f5cbfd22dd70e58011d65fd2c1 --- maintenance/updateSpecialPages.php | 58 +++++++++++++++++------------- 1 file changed, 33 insertions(+), 25 deletions(-) diff --git a/maintenance/updateSpecialPages.php b/maintenance/updateSpecialPages.php index ffb20f5748..cf6c0b0356 100644 --- a/maintenance/updateSpecialPages.php +++ b/maintenance/updateSpecialPages.php @@ -40,33 +40,12 @@ class UpdateSpecialPages extends Maintenance { } public function execute() { - global $IP, $wgSpecialPageCacheUpdates, $wgQueryPages, $wgQueryCacheLimit, $wgDisableQueryPageUpdate; + global $IP, $wgQueryPages, $wgQueryCacheLimit, $wgDisableQueryPageUpdate; - $dbw = wfGetDB( DB_MASTER ); - - foreach ( $wgSpecialPageCacheUpdates as $special => $call ) { - if ( !is_callable( $call ) ) { - $this->error( "Uncallable function $call!" ); - continue; - } - $this->output( sprintf( '%-30s ', $special ) ); - $t1 = explode( ' ', microtime() ); - call_user_func( $call, $dbw ); - $t2 = explode( ' ', microtime() ); - $elapsed = ( $t2[0] - $t1[0] ) + ( $t2[1] - $t1[1] ); - $hours = intval( $elapsed / 3600 ); - $minutes = intval( $elapsed % 3600 / 60 ); - $seconds = $elapsed - $hours * 3600 - $minutes * 60; - if ( $hours ) { - $this->output( $hours . 'h ' ); - } - if ( $minutes ) { - $this->output( $minutes . 'm ' ); - } - $this->output( sprintf( "completed in %.2fs\n", $seconds ) ); - # Wait for the slave to catch up - wfWaitForSlaves(); + if ( !$this->hasOption( 'list' ) && !$this->hasOption( 'only' ) ) { + $this->doSpecialPageCacheUpdates(); } + $dbw = wfGetDB( DB_MASTER ); // This is needed to initialise $wgQueryPages require_once "$IP/includes/QueryPage.php"; @@ -145,6 +124,35 @@ class UpdateSpecialPages extends Maintenance { } } } + + public function doSpecialPageCacheUpdates() { + global $wgSpecialPageCacheUpdates; + $dbw = wfGetDB( DB_MASTER ); + + foreach ( $wgSpecialPageCacheUpdates as $special => $call ) { + if ( !is_callable( $call ) ) { + $this->error( "Uncallable function $call!" ); + continue; + } + $this->output( sprintf( '%-30s ', $special ) ); + $t1 = explode( ' ', microtime() ); + call_user_func( $call, $dbw ); + $t2 = explode( ' ', microtime() ); + $elapsed = ( $t2[0] - $t1[0] ) + ( $t2[1] - $t1[1] ); + $hours = intval( $elapsed / 3600 ); + $minutes = intval( $elapsed % 3600 / 60 ); + $seconds = $elapsed - $hours * 3600 - $minutes * 60; + if ( $hours ) { + $this->output( $hours . 'h ' ); + } + if ( $minutes ) { + $this->output( $minutes . 'm ' ); + } + $this->output( sprintf( "completed in %.2fs\n", $seconds ) ); + # Wait for the slave to catch up + wfWaitForSlaves(); + } + } } $maintClass = "UpdateSpecialPages"; -- 2.20.1