/var/www/hkosl.com/littleark/webadmin/libraies/illuminate/queue/Illuminate/Queue/RedisQueue.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
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
<?php namespace Illuminate\Queue;

use 
Illuminate\Redis\Database;
use 
Illuminate\Queue\Jobs\RedisJob;

class 
RedisQueue extends Queue implements QueueInterface {

    
/**
    * The Redis database instance.
    *
     * @var \Illuminate\Redis\Database
     */
    
protected $redis;

    
/**
     * The connection name.
     *
     * @var string
     */
    
protected $connection;

    
/**
     * The name of the default queue.
     *
     * @var string
     */
    
protected $default;

    
/**
     * Create a new Redis queue instance.
     *
     * @param  \Illuminate\Redis\Database  $redis
     * @param  string  $default
     * @param  string  $connection
     * @return void
     */
    
public function __construct(Database $redis$default 'default'$connection null)
    {
        
$this->redis $redis;
        
$this->default $default;
        
$this->connection $connection;
    }

    
/**
     * Push a new job onto the queue.
     *
     * @param  string  $job
     * @param  mixed   $data
     * @param  string  $queue
     * @return void
     */
    
public function push($job$data ''$queue null)
    {
        return 
$this->pushRaw($this->createPayload($job$data), $queue);
    }

    
/**
     * Push a raw payload onto the queue.
     *
     * @param  string  $payload
     * @param  string  $queue
     * @param  array   $options
     * @return mixed
     */
    
public function pushRaw($payload$queue null, array $options = array())
    {
        
$this->redis->rpush($this->getQueue($queue), $payload);

        return 
array_get(json_decode($payloadtrue), 'id');
    }

    
/**
     * Push a new job onto the queue after a delay.
     *
     * @param  \DateTime|int  $delay
     * @param  string  $job
     * @param  mixed   $data
     * @param  string  $queue
     * @return void
     */
    
public function later($delay$job$data ''$queue null)
    {
        
$payload $this->createPayload($job$data);

        
$delay $this->getSeconds($delay);

        
$this->redis->zadd($this->getQueue($queue).':delayed'$this->getTime() + $delay$payload);

        return 
array_get(json_decode($payloadtrue), 'id');
    }

    
/**
     * Release a reserved job back onto the queue.
     *
     * @param  string  $queue
     * @param  string  $payload
     * @param  int  $delay
     * @param  int  $attempts
     * @return void
     */
    
public function release($queue$payload$delay$attempts)
    {
        
$payload $this->setMeta($payload'attempts'$attempts);

        
$this->redis->zadd($this->getQueue($queue).':delayed'$this->getTime() + $delay$payload);
    }

    
/**
     * Pop the next job off of the queue.
     *
     * @param  string  $queue
     * @return \Illuminate\Queue\Jobs\Job|null
     */
    
public function pop($queue null)
    {
        
$original $queue ?: $this->default;

        
$this->migrateAllExpiredJobs($queue $this->getQueue($queue));

        
$job $this->redis->lpop($queue);

        if ( ! 
is_null($job))
        {
            
$this->redis->zadd($queue.':reserved'$this->getTime() + 60$job);

            return new 
RedisJob($this->container$this$job$original);
        }
    }

    
/**
     * Delete a reserved job from the queue.
     *
     * @param  string  $queue
     * @param  string  $job
     * @return void
     */
    
public function deleteReserved($queue$job)
    {
        
$this->redis->zrem($this->getQueue($queue).':reserved'$job);
    }

    
/**
     * Migrate all of the waiting jobs in the queue.
     *
     * @param  string  $queue
     * @return void
     */
    
protected function migrateAllExpiredJobs($queue)
    {
        
$this->migrateExpiredJobs($queue.':delayed'$queue);

        
$this->migrateExpiredJobs($queue.':reserved'$queue);
    }

    
/**
     * Migrate the delayed jobs that are ready to the regular queue.
     *
     * @param  string  $from
     * @param  string  $to
     * @return void
     */
    
public function migrateExpiredJobs($from$to)
    {
        
$jobs $this->getExpiredJobs($from$time $this->getTime());

        if (
count($jobs) > 0)
        {
            
$this->removeExpiredJobs($from$time);

            
call_user_func_array(array($this->redis'rpush'), array_merge(array($to), $jobs));
        }
    }

    
/**
     * Get the delayed jobs that are ready.
     *
     * @param  string  $queue
     * @param  int     $time
     * @return array
     */
    
protected function getExpiredJobs($queue$time)
    {
        return 
$this->redis->zrangebyscore($queue'-inf'$time);
    }

    
/**
     * Remove the delayed jobs that are ready for processing.
     *
     * @param  string  $queue
     * @param  int     $time
     * @return void
     */
    
protected function removeExpiredJobs($queue$time)
    {
        
$this->redis->zremrangebyscore($queue'-inf'$time);
    }

    
/**
     * Create a payload string from the given job and data.
     *
     * @param  string  $job
     * @param  mixed   $data
     * @param  string  $queue
     * @return string
     */
    
protected function createPayload($job$data ''$queue null)
    {
        
$payload parent::createPayload($job$data);

        
$payload $this->setMeta($payload'id'$this->getRandomId());

        return 
$this->setMeta($payload'attempts'1);
    }

    
/**
     * Get a random ID string.
     *
     * @return string
     */
    
protected function getRandomId()
    {
        return 
str_random(20);
    }

    
/**
     * Get the queue or return the default.
     *
     * @param  string|null  $queue
     * @return string
     */
    
protected function getQueue($queue)
    {
        return 
'queues:'.($queue ?: $this->default);
    }

    
/**
     * Get the underlying Redis instance.
     *
     * @return \Illuminate\Redis\Database
     */
    
public function getRedis()
    {
        return 
$this->redis;
    }

}