-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathWorker.php
More file actions
288 lines (240 loc) · 9.37 KB
/
Worker.php
File metadata and controls
288 lines (240 loc) · 9.37 KB
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
<?php
namespace Utopia\Queue;
use Throwable;
use Exception;
use Utopia\CLI\Console;
use Utopia\DI\Container;
use Utopia\DI\Dependency;
use Utopia\Servers\Base;
use Utopia\Queue\Concurrency\Manager;
class Worker extends Base
{
/**
* Queue Adapter
*
* @var Adapter
*/
protected Adapter $adapter;
/**
* Job
*
* @var Job
*/
protected static Job $job;
/**
* Creates an instance of a Queue server.
* @param Adapter $adapter
*/
public function __construct(Adapter $adapter)
{
$this->adapter = $adapter;
}
/**
* Add a job hook
*/
public static function job(): Job
{
self::$job = new Job();
return self::$job;
}
/**
* Stops the Queue server.
* @return self
*/
public function stop(): self
{
try {
$this->adapter->stop();
} catch (Throwable $th) {
$context = clone $this->container;
$dependency = new Dependency();
$context->set(
$dependency
->setName('error')
->setCallback(fn () => $th)
);
foreach (self::$shutdown as $hook) { // Global shutdown hooks
if (in_array('*', $hook->getGroups())) {
$this->prepare($context, $hook, [], [])->inject($hook, true);
}
}
}
return $this;
}
/**
* Starts the Queue Server
* @return self
*/
public function start(): self
{
try {
$this->adapter->onWorkerStart(function (string $workerId) {
// Check if the connection is ready
$retryAttempts = 30;
$retryDelay = 1; // seconds
while (!$this->adapter->connection->ping()) {
if ($retryAttempts <= 0) {
Console::error("[Worker] connection is not ready. Exiting...");
return $this;
}
$retryAttempts--;
Console::warning("[Worker] connection is not ready. Retrying in {$retryDelay} seconds [{$retryAttempts} left] ...");
sleep($retryDelay);
}
Console::success("[Worker] Worker {$workerId} is ready!");
while (true) {
/**
* Waiting for next Job.
*/
$nextMessage = $this->adapter->connection->rightPopArray("{$this->adapter->namespace}.queue.{$this->adapter->queue}", 5);
if (!$nextMessage) {
continue;
}
$nextMessage['timestamp'] = (int)$nextMessage['timestamp'];
$context = clone $this->container;
$job = clone self::$job;
$message = new Message($nextMessage);
$dependency = new Dependency();
$context->set(
$dependency
->setName('message')
->setCallback(fn () => $message)
);
$this->adapter->onJob(function () use ($job, $message, $nextMessage, $context) {
$this->lifecycle($job, $message, $nextMessage, $context, $this->adapter->connection);
});
}
});
$this->adapter->start();
} catch (Throwable $th) {
$context = clone $this->container;
$dependency = new Dependency();
$context->set(
$dependency
->setName('error')
->setCallback(fn () => $th)
);
foreach (self::$shutdown as $hook) { // Global shutdown hooks
if (in_array('*', $hook->getGroups())) {
$this->prepare($context, $hook, [], [])->inject($hook, true);
}
}
}
return $this;
}
protected ?Manager $concurrencyManager = null;
/**
* Set the concurrency manager
*
* @param Manager $manager
* @return self
*/
public function setConcurrencyManager(Manager $manager): self
{
$this->concurrencyManager = $manager;
return $this;
}
protected function lifecycle(Job $job, Message $message, array $nextMessage, Container $context, Connection $connection): static
{
Console::info("[Job] Received Job ({$message->getPid()}).");
$groups = $job->getGroups();
$connection->getConnection();
// if ($this->concurrencyManager) {
// if (!$this->concurrencyManager->canProcessJob($message)) {
// // If we can't process the job due to concurrency limits, put it back in the queue
// $connection->leftPush("{$this->adapter->namespace}.queue.{$this->adapter->queue}", json_encode($nextMessage));
// Console::info("[Job] ({$message->getPid()}) postponed due to concurrency limits.");
// return $this;
// }
// $this->concurrencyManager->startJob($message);
// }
try {
foreach (self::$init as $hook) { // Global init hooks
if (in_array('*', $hook->getGroups())) {
$this->prepare($context, $hook, [], $message->getPayload())->inject($hook, true);
}
}
foreach ($groups as $group) {
foreach (self::$init as $hook) { // Group init hooks
if (in_array($group, $hook->getGroups())) {
$this->prepare($context, $hook, [], $message->getPayload())->inject($hook, true);
}
}
}
$this->prepare($context, $job, [], $message->getPayload())->inject($job, true);
/**
* Remove Jobs if successful.
*/
$connection->remove("{$this->adapter->namespace}.jobs.{$this->adapter->queue}.{$message->getPid()}");
/**
* Increment Successful Jobs from Stats.
*/
$connection->increment("{$this->adapter->namespace}.stats.{$this->adapter->queue}.success");
foreach ($groups as $group) {
foreach (self::$shutdown as $hook) { // Group shutdown hooks
if (in_array($group, $hook->getGroups())) {
$this->prepare($context, $hook, [], $message->getPayload())->inject($hook, true);
}
}
}
foreach (self::$shutdown as $hook) { // Global shutdown hooks
if (in_array('*', $hook->getGroups())) {
$this->prepare($context, $hook, [], $message->getPayload())->inject($hook, true);
}
}
Console::success("[Job] ({$message->getPid()}) successfully run.");
} catch (\Throwable $th) {
/**
* Move failed Job to Failed list.
*/
$connection->leftPush("{$this->adapter->namespace}.failed.{$this->adapter->queue}", $message->getPid());
/**
* Increment Failed Jobs from Stats.
*/
$connection->increment("{$this->adapter->namespace}.stats.{$this->adapter->queue}.failed");
Console::error("[Job] ({$message->getPid()}) failed to run.");
Console::error("[Job] ({$message->getPid()}) {$th->getMessage()}");
$dependency = new Dependency();
$context->set(
$dependency
->setName('error')
->setCallback(fn () => $th)
)
;
foreach ($groups as $group) {
foreach (self::$errors as $error) { // Group error hooks
if (in_array($group, $error->getGroups())) {
try {
$this->prepare($context, $error, [], $message->getPayload())->inject($error, true);
} catch (\Throwable $e) {
throw new Exception('Group error handler had an error: ' . $e->getMessage(). ' on: ' . $e->getFile().':'.$e->getLine(), 500, $e);
}
}
}
}
foreach (self::$errors as $error) { // Global error hooks
if (in_array('*', $error->getGroups())) {
try {
$this->prepare($context, $error, [], $message->getPayload())->inject($error, true);
} catch (\Throwable $e) {
throw new Exception('Global error handler had an error: ' . $e->getMessage(). ' on: ' . $e->getFile().':'.$e->getLine(), 500, $e);
}
}
}
} finally {
// if ($this->concurrencyManager) {
// $this->concurrencyManager->finishJob($message);
// }
/**
* Remove Job from Processing.
*/
$connection->listRemove("{$this->adapter->namespace}.processing.{$this->adapter->queue}", $message->getPid());
/**
* Decrease Processing Jobs from Stats.
*/
$connection->decrement("{$this->adapter->namespace}.stats.{$this->adapter->queue}.processing");
$connection->putConnection();
}
return $this;
}
}