-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathQueueCommands.php
180 lines (162 loc) · 6.95 KB
/
QueueCommands.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<?php
declare(strict_types=1);
namespace Drush\Commands\core;
use Consolidation\OutputFormatters\StructuredData\RowsOfFields;
use Drupal\Core\Queue\DelayableQueueInterface;
use Drupal\Core\Queue\DelayedRequeueException;
use Drupal\Core\Queue\QueueFactory;
use Drupal\Core\Queue\QueueGarbageCollectionInterface;
use Drupal\Core\Queue\QueueInterface;
use Drupal\Core\Queue\QueueWorkerManagerInterface;
use Drupal\Core\Queue\RequeueException;
use Drupal\Core\Queue\SuspendQueueException;
use Drush\Attributes as CLI;
use Drush\Commands\AutowireTrait;
use Drush\Commands\DrushCommands;
use Symfony\Component\Console\Completion\CompletionInput;
use Symfony\Component\Console\Completion\CompletionSuggestions;
final class QueueCommands extends DrushCommands
{
use AutowireTrait;
const RUN = 'queue:run';
const LIST = 'queue:list';
const DELETE = 'queue:delete';
// Keep track of queue definitions.
protected static array $queues;
public function __construct(
protected QueueWorkerManagerInterface $workerManager,
protected QueueFactory $queueService
) {
parent::__construct();
}
public function getWorkerManager(): QueueWorkerManagerInterface
{
return $this->workerManager;
}
public function getQueueService(): QueueFactory
{
return $this->queueService;
}
/**
* Run a specific queue by name.
*/
#[CLI\Command(name: self::RUN, aliases: ['queue-run'])]
#[CLI\Argument(name: 'name', description: 'The name of the queue to run.')]
#[CLI\Option(name: 'time-limit', description: 'The maximum number of seconds allowed to run the queue.')]
#[CLI\Option(name: 'items-limit', description: 'The maximum number of items allowed to run the queue.')]
#[CLI\Option(name: 'lease-time', description: 'The maximum number of seconds that an item remains claimed.')]
#[CLI\ValidateQueueName(argumentName: 'name')]
#[CLI\Complete(method_name_or_callable: 'queueComplete')]
public function run(string $name, $options = ['time-limit' => self::REQ, 'items-limit' => self::REQ, 'lease-time' => self::REQ]): void
{
$time_limit = (int) $options['time-limit'];
$items_limit = (int) $options['items-limit'];
$start = microtime(true);
$worker = $this->getWorkerManager()->createInstance($name);
$info = $this->getWorkerManager()->getDefinition($name);
$end = time() + $time_limit;
$queue = $this->getQueue($name);
$count = 0;
$remaining = $time_limit;
$lease_time = $options['lease-time'] ?? $info['cron']['time'] ?? 30;
if ($queue instanceof QueueGarbageCollectionInterface) {
$queue->garbageCollection();
}
$max = $items_limit ?: $queue->numberOfItems();
if ($max > 0) {
$this->io()->progressStart($max);
}
while ((!$time_limit || $remaining > 0) && (!$items_limit || $count < $items_limit) && ($item = $queue->claimItem($lease_time))) {
try {
// @phpstan-ignore-next-line
$this->logger()->info(dt('Processing item @id from @name queue.', ['@name' => $name, '@id' => $item->item_id ?? $item->qid]));
// @phpstan-ignore-next-line
$worker->processItem($item->data);
$queue->deleteItem($item);
$count++;
$this->io()->progressAdvance();
} catch (RequeueException) {
// The worker requested the task to be immediately requeued.
$queue->releaseItem($item);
} catch (SuspendQueueException $e) {
// If the worker indicates there is a problem with the whole queue,
// release the item.
$queue->releaseItem($item);
throw new \Exception($e->getMessage(), $e->getCode(), $e);
} catch (DelayedRequeueException $e) {
// The worker requested the task not be immediately re-queued.
// - If the queue doesn't support ::delayItem(), we should leave the
// item's current expiry time alone.
// - If the queue does support ::delayItem(), we should allow the
// queue to update the item's expiry using the requested delay.
if ($queue instanceof DelayableQueueInterface) {
// This queue can handle a custom delay; use the duration provided
// by the exception.
$queue->delayItem($item, $e->getDelay());
}
} catch (\Exception $e) {
// In case of any other kind of exception, log it and leave the
// item in the queue to be processed again later.
$this->logger()->error($e->getMessage());
}
$remaining = $end - time();
}
$elapsed = microtime(true) - $start;
if ($max > 0) {
$this->io()->progressFinish();
}
$this->logger()->success(dt('Processed @count items from the @name queue in @elapsed sec.', ['@count' => $count, '@name' => $name, '@elapsed' => round($elapsed, 2)]));
}
/**
* Returns a list of all defined queues.
*/
#[CLI\Command(name: self::LIST, aliases: ['queue-list'])]
#[CLI\FieldLabels(labels: ['queue' => 'Queue', 'items' => 'Items', 'class' => 'Class'])]
#[CLI\FilterDefaultField(field: 'queue')]
public function qList($options = ['format' => 'table']): RowsOfFields
{
$result = [];
foreach (array_keys($this->getQueues()) as $name) {
$q = $this->getQueue($name);
$result[$name] = [
'queue' => $name,
'items' => $q->numberOfItems(),
'class' => get_class($q),
];
}
return new RowsOfFields($result);
}
/**
* Delete all items in a specific queue.
*/
#[CLI\Command(name: self::DELETE, aliases: ['queue-delete'])]
#[CLI\Argument(name: 'name', description: 'The name of the queue to delete.')]
#[CLI\ValidateQueueName(argumentName: 'name')]
#[CLI\Complete(method_name_or_callable: 'queueComplete')]
public function delete($name): void
{
$queue = $this->getQueue($name);
$queue->deleteQueue();
$this->logger()->success(dt('All items in @name queue deleted.', ['@name' => $name]));
}
public function getQueues(): array
{
if (!isset(static::$queues)) {
static::$queues = [];
foreach ($this->getWorkerManager()->getDefinitions() as $name => $info) {
static::$queues[$name] = $info;
}
}
return static::$queues;
}
public function getQueue($name): QueueInterface
{
return $this->getQueueService()->get($name);
}
public function queueComplete(CompletionInput $input, CompletionSuggestions $suggestions): void
{
if ($input->mustSuggestArgumentValuesFor('name')) {
$suggestions->suggestValues(array_keys(self::getQueues()));
}
}
}