summaryrefslogtreecommitdiff
path: root/maintenance/showJobs.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2015-12-17 09:15:42 +0100
committerPierre Schmitz <pierre@archlinux.de>2015-12-17 09:44:51 +0100
commita1789ddde42033f1b05cc4929491214ee6e79383 (patch)
tree63615735c4ddffaaabf2428946bb26f90899f7bf /maintenance/showJobs.php
parent9e06a62f265e3a2aaabecc598d4bc617e06fa32d (diff)
Update to MediaWiki 1.26.0
Diffstat (limited to 'maintenance/showJobs.php')
-rw-r--r--maintenance/showJobs.php57
1 files changed, 34 insertions, 23 deletions
diff --git a/maintenance/showJobs.php b/maintenance/showJobs.php
index 9e9ad327..25a096c0 100644
--- a/maintenance/showJobs.php
+++ b/maintenance/showJobs.php
@@ -34,39 +34,53 @@ require_once __DIR__ . '/Maintenance.php';
* @ingroup Maintenance
*/
class ShowJobs extends Maintenance {
+ protected static $stateMethods = array(
+ 'unclaimed' => 'getAllQueuedJobs',
+ 'delayed' => 'getAllDelayedJobs',
+ 'claimed' => 'getAllAcquiredJobs',
+ 'abandoned' => 'getAllAbandonedJobs',
+ );
+
public function __construct() {
parent::__construct();
$this->mDescription = "Show number of jobs waiting in master database";
$this->addOption( 'group', 'Show number of jobs per job type' );
- $this->addOption( 'list',
- 'Show a list of all jobs in a machine-readable format, instead of statistics' );
+ $this->addOption( 'list', 'Show a list of all jobs instead of counts' );
$this->addOption( 'type', 'Only show/count jobs of a given type', false, true );
+ $this->addOption( 'status', 'Filter list by state (unclaimed,delayed,claimed,abandoned)' );
+ $this->addOption( 'limit', 'Limit of jobs listed' );
}
public function execute() {
- $filterType = $this->getOption( 'type', '' );
+ $typeFilter = $this->getOption( 'type', '' );
+ $stateFilter = $this->getOption( 'status', '' );
+ $stateLimit = (float)$this->getOption( 'limit', INF );
+
$group = JobQueueGroup::singleton();
+
+ $filteredTypes = $typeFilter
+ ? array( $typeFilter )
+ : $group->getQueueTypes();
+ $filteredStates = $stateFilter
+ ? array_intersect_key( self::$stateMethods, array( $stateFilter => 1 ) )
+ : self::$stateMethods;
+
if ( $this->hasOption( 'list' ) ) {
- foreach ( $group->getQueueTypes() as $type ) {
- if ( $filterType != '' && $type != $filterType ) {
- continue;
- }
+ $count = 0;
+ foreach ( $filteredTypes as $type ) {
$queue = $group->get( $type );
- foreach ( $queue->getAllQueuedJobs() as $job ) {
- $this->output( $job->toString() . " status=unclaimed\n" );
- }
- foreach ( $queue->getAllDelayedJobs() as $job ) {
- $this->output( $job->toString() . " status=delayed\n" );
- }
- foreach ( $queue->getAllAbandonedJobs() as $job ) {
- $this->output( $job->toString() . " status=abandoned\n" );
+ foreach ( $filteredStates as $state => $method ) {
+ foreach ( $queue->$method() as $job ) {
+ /** @var Job $job */
+ $this->output( $job->toString() . " status=$state\n" );
+ if ( ++$count >= $stateLimit ) {
+ return;
+ }
+ }
}
}
} elseif ( $this->hasOption( 'group' ) ) {
- foreach ( $group->getQueueTypes() as $type ) {
- if ( $filterType != '' && $type != $filterType ) {
- continue;
- }
+ foreach ( $filteredTypes as $type ) {
$queue = $group->get( $type );
$delayed = $queue->getDelayedCount();
$pending = $queue->getSize();
@@ -83,10 +97,7 @@ class ShowJobs extends Maintenance {
}
} else {
$count = 0;
- foreach ( $group->getQueueTypes() as $type ) {
- if ( $filterType != '' && $type != $filterType ) {
- continue;
- }
+ foreach ( $filteredTypes as $type ) {
$count += $group->get( $type )->getSize();
}
$this->output( "$count\n" );