-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRedisQueue.php
More file actions
280 lines (239 loc) · 7.88 KB
/
Copy pathRedisQueue.php
File metadata and controls
280 lines (239 loc) · 7.88 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
<?php
namespace Laravel\Horizon;
use Illuminate\Contracts\Events\Dispatcher;
use Illuminate\Foundation\Application;
use Illuminate\Queue\RedisQueue as BaseQueue;
use Illuminate\Support\Str;
use Laravel\Horizon\Contracts\JobControlRepository;
use Laravel\Horizon\Events\JobDeleted;
use Laravel\Horizon\Events\JobPending;
use Laravel\Horizon\Events\JobPushed;
use Laravel\Horizon\Events\JobReleased;
use Laravel\Horizon\Events\JobReserved;
use Laravel\Horizon\Events\JobsMigrated;
class RedisQueue extends BaseQueue
{
/**
* The job that last pushed to queue via the "push" method.
*
* @var object|string
*/
protected $lastPushed;
/**
* Get the number of queue jobs that are ready to process.
*
* @param string|null $queue
* @return int
*/
public function readyNow($queue = null)
{
$key = method_exists(parent::class, 'getQueueRedisKey')
? $this->getQueueRedisKey($queue)
: $this->getQueue($queue);
return $this->getConnection()->llen($key);
}
/**
* Push a new job onto the queue.
*
* @param object|string $job
* @param mixed $data
* @param string|null $queue
* @return mixed
*/
#[\Override]
public function push($job, $data = '', $queue = null)
{
return $this->enqueueUsing(
$job,
$this->createPayload($job, $this->getQueue($queue), $data),
$queue,
null,
function ($payload, $queue) use ($job) {
$this->lastPushed = $job;
return $this->pushRaw($payload, $queue);
}
);
}
/**
* Push a raw payload onto the queue.
*
* @param string $payload
* @param string|null $queue
* @param array $options
* @return mixed
*/
#[\Override]
public function pushRaw($payload, $queue = null, array $options = [])
{
$payload = (new JobPayload($payload))->prepare($this->lastPushed);
$this->event($this->getQueue($queue), new JobPending($payload->value));
parent::pushRaw($payload->value, $queue, $options);
$this->event($this->getQueue($queue), new JobPushed($payload->value));
return $payload->id();
}
/**
* Create a payload string from the given job and data.
*
* @param string $job
* @param string $queue
* @param mixed $data
* @return array
*/
#[\Override]
protected function createPayloadArray($job, $queue, $data = '')
{
$payload = parent::createPayloadArray($job, $queue, $data);
$payload['id'] = $payload['uuid'];
return $payload;
}
/**
* Push a new job onto the queue after a delay.
*
* @param \DateTimeInterface|\DateInterval|int $delay
* @param string $job
* @param mixed $data
* @param string|null $queue
* @return mixed
*/
#[\Override]
public function later($delay, $job, $data = '', $queue = null)
{
$args = version_compare(Application::VERSION, '12.11.0', '>=')
? [$job, $queue, $data, $delay]
: [$job, $queue, $data];
$payload = (new JobPayload($this->createPayload(...$args)))->prepare($job)->value;
if (method_exists($this, 'enqueueUsing')) {
return $this->enqueueUsing(
$job,
$payload,
$queue,
$delay,
function ($payload, $queue, $delay) {
$this->event($this->getQueue($queue), new JobPending($payload));
return tap(parent::laterRaw($delay, $payload, $queue), function () use ($payload, $queue) {
$this->event($this->getQueue($queue), new JobPushed($payload));
});
}
);
}
$this->event($this->getQueue($queue), new JobPending($payload));
return tap(parent::laterRaw($delay, $payload, $queue), function () use ($payload, $queue) {
$this->event($this->getQueue($queue), new JobPushed($payload));
});
}
/**
* Pop the next job off of the queue.
*
* @param string|null $queue
* @param int $index
* @return \Illuminate\Contracts\Queue\Job|null
*/
#[\Override]
public function pop($queue = null, $index = 0)
{
$queueName = $this->controlQueueName($queue);
$controls = $this->jobControls();
if ($controls?->pausedQueue((string) $this->getConnectionName(), $queueName) !== null) {
return null;
}
$result = parent::pop($queue, $index);
if (! $result) {
return null;
}
$this->event($this->getQueue($queue), new JobReserved($result->getReservedJob()));
// A cancellation may have lost the ready-list reservation race. Honor
// its request before user code starts whenever the marker is already
// visible at this boundary.
if ($controls?->cancellationRequested((string) $result->getJobId())) {
$controls->acknowledgeCancellation((string) $result->getJobId());
$result->delete();
return null;
}
return $result;
}
/**
* Atomically remove an exact payload while it is still ready or delayed.
*/
public function removePending(string $queue, string $payload): bool
{
$key = method_exists(parent::class, 'getQueueRedisKey')
? $this->getQueueRedisKey($queue)
: $this->getQueue($queue);
return (int) $this->getConnection()->eval(
LuaScripts::cancelPending(),
3,
$key,
$key.':delayed',
$key.':notify',
$payload
) > 0;
}
/**
* Migrate the delayed jobs that are ready to the regular queue.
*
* @param string $from
* @param string $to
* @return void
*/
#[\Override]
public function migrateExpiredJobs($from, $to)
{
return tap(parent::migrateExpiredJobs($from, $to), function ($jobs) use ($to) {
$this->event($to, new JobsMigrated($jobs === false ? [] : $jobs));
});
}
/**
* Delete a reserved job from the queue.
*
* @param string $queue
* @param \Illuminate\Queue\Jobs\RedisJob $job
* @return void
*/
#[\Override]
public function deleteReserved($queue, $job)
{
parent::deleteReserved($queue, $job);
$this->event($this->getQueue($queue), new JobDeleted($job, $job->getReservedJob()));
}
/**
* Delete a reserved job from the reserved queue and release it.
*
* @param string $queue
* @param \Illuminate\Queue\Jobs\RedisJob $job
* @param int $delay
* @return void
*/
#[\Override]
public function deleteAndRelease($queue, $job, $delay)
{
parent::deleteAndRelease($queue, $job, $delay);
$this->event($this->getQueue($queue), new JobReleased($job->getReservedJob(), $delay));
}
/**
* Fire the given event if a dispatcher is bound.
*
* @param string $queue
* @param mixed $event
* @return void
*/
protected function event($queue, $event)
{
if ($this->container && $this->container->bound(Dispatcher::class)) {
$queue = Str::replaceFirst('queues:', '', $queue);
$this->container->make(Dispatcher::class)->dispatch(
$event->connection($this->getConnectionName())->queue($queue)
);
}
}
protected function jobControls(): ?JobControlRepository
{
if (! $this->container || ! $this->container->bound(JobControlRepository::class)) {
return null;
}
return $this->container->make(JobControlRepository::class);
}
protected function controlQueueName(?string $queue): string
{
return Str::replaceFirst('queues:', '', $this->getQueue($queue));
}
}