-
Notifications
You must be signed in to change notification settings - Fork 0
/
celery.php
685 lines (609 loc) · 23 KB
/
celery.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
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
<?php
/**
* This file contains a PHP client to Celery distributed task queue
*
* LICENSE: 2-clause BSD
*
* Copyright (c) 2012, GDR!
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those
* of the authors and should not be interpreted as representing official policies,
* either expressed or implied, of the FreeBSD Project.
*
* @link http://massivescale.net/
* @link http://gdr.geekhood.net/
* @link https://github.com/gjedeer/celery-php
*
* @package celery-php
* @license http://opensource.org/licenses/bsd-license.php 2-clause BSD
* @author GDR! <[email protected]>
*/
/**
* General exception class
* @package celery-php
*/
class CeleryException extends Exception
{
}
;
/**
* Emited by AsyncResult::get() on timeout
* @package celery-php
*/
class CeleryTimeoutException extends CeleryException
{
}
;
/**
* Emited by CeleryAbstract::PostTask() connection failures etc
* @package celery-php
*/
class CeleryPublishException extends CeleryException
{
}
;
require('amqp.php');
define('ARGSREPR_MAXSIZE', 1024);
define('KWARGSREPR_MAXSIZE', 1024);
/**
* Simple client for a Celery server
*
* for when queue and results are in the same broker
* Use this class if you don't know what the above means
* @package celery-php
*/
class Celery extends CeleryAbstract
{
/**
* @param string host
* @param string login
* @param string password
* @param string vhost AMQP vhost, may be left empty or NULL for non-AMQP backends like Redis
* @param string exchange AMQP exchange to use. For Redis it maps to queue key name. See CELERY_DEFAULT_EXCHANGE in Celery docs. (set to 'celery' when in doubt)
* @param string binding AMQP binding a.k.a. routing key. See CELERY_DEFAULT_ROUTING_KEY. (set to 'celery' when in doubt)
* @param int port
* @param string connector Which connector library to use. One of: 'pecl', 'php-amqplib', 'php-amqplib-ssl', 'redis'
* @param bool persistent_messages False = transient queue, True = persistent queue. Check "Using Transient Queues" in Celery docs (set to false when in doubt)
* @param int result_expire Expire time for result queue, milliseconds (for AMQP exchanges only)
* @param array ssl_options Used only for 'php-amqplib-ssl' connections, an associative array with values as defined here: http://php.net/manual/en/context.ssl.php
*/
function __construct($host, $login, $password, $vhost,
$exchange = 'celery', $binding = 'celery', $port = 5672,
$confirmAckCallback = null, $confirmNAckCallback = null, $returnCallback = null,
$connector = false, $result_expire = 0, $socket_connect_timeout = 3.0, $socket_timeout = 3.0,
$persistent_messages = false, $ssl_options = array(), $context = null, $keepalive = false, $heartbeat = 0)
{
$broker_connection = array(
'host' => $host,
'login' => $login,
'password' => $password,
'vhost' => $vhost,
'exchange' => $exchange,
'binding' => $binding,
'port' => $port,
'confirm_ack_callback' => $confirmAckCallback,
'confirm_nack_callback' => $confirmNAckCallback,
'return_callback' => $returnCallback,
'connector' => $connector,
'result_expire' => $result_expire,
'socket_connect_timeout' => $socket_connect_timeout,
'socket_timeout' => $socket_timeout,
'ssl_options' => $ssl_options,
'context' => $context,
'keepalive' => $keepalive,
'heartbeat' => $heartbeat
);
$backend_connection = $broker_connection;
$items = $this->BuildConnection($broker_connection);
// $items = $this->BuildConnection($backend_connection, true);
}
}
/**
* Client for a Celery server - with a constructor supporting separate backend queue
* @package celery-php
*/
class CeleryAdvanced extends CeleryAbstract
{
/**
* @param array broker_connection - array for connecting to task queue, see Celery class above for supported keys
* @param array backend_connection - array for connecting to result backend, see Celery class above for supported keys
*/
function __construct($broker_connection, $backend_connection = false)
{
if ($backend_connection == false) {
$backend_connection = $broker_connection;
}
$items = $this->BuildConnection($broker_connection);
$items = $this->BuildConnection($backend_connection, true);
}
}
/**
* Client for a Celery server - abstract base class implementing actual logic
* @package celery-php
*/
abstract class CeleryAbstract
{
private $broker_connection = null;
private $broker_connection_details = array();
private $broker_amqp = null;
private $backend_connection = null;
private $backend_connection_details = array();
private $backend_amqp = null;
private $origin = null;
private $isConnected = false;
/**
* check broker connection
* @return mixed
*/
public function getBrokerConnectStatus()
{
return $this->broker_connection->isConnected();
}
private function SetDefaultValues($details)
{
$defaultValues = array(
"host" => "", "login" => "", "password" => "",
"vhost" => "", "exchange" => "celery", "binding" => "celery",
"port" => 5672, 'confirm_ack_callback' => [], 'confirm_nack_callback' => [],
'return_callback' => [], "connector" => false, "persistent_messages" => false,
"result_expire" => 0, 'socket_connect_timeout' => 3.0, 'socket_timeout' => 3.0,
"ssl_options" => array(), 'context' => null, 'keepalive' => false, 'heartbeat' => 0
);
$returnValue = array();
foreach (array('host', 'login', 'password', 'vhost', 'exchange', 'binding', 'port',
'confirm_ack_callback', 'confirm_nack_callback', 'return_callback', 'connector',
'persistent_messages', 'result_expire', "result_expire", 'socket_connect_timeout',
'socket_timeout', 'ssl_options', 'context', 'keepalive', 'heartbeat') as $detail) {
if (!array_key_exists($detail, $details)) {
$returnValue[$detail] = $defaultValues[$detail];
} else $returnValue[$detail] = $details[$detail];
}
$this->origin = getmypid() . gethostname();
return $returnValue;
}
public function BuildConnection($connection_details, $is_backend = false)
{
$connection_details = $this->SetDefaultValues($connection_details);
$ssl = !empty($connection['ssl_options']);
if ($connection_details['connector'] === false) {
$connection_details['connector'] = AbstractAMQPConnector::GetBestInstalledExtensionName($ssl);
}
//PECLAMQPConnector
$amqp = AbstractAMQPConnector::GetConcrete($connection_details['connector']);
$connection = self::InitializeAMQPConnection($amqp, $connection_details);
$amqp->Connect($connection);
if ($is_backend) {
$this->backend_connection_details = $connection_details;
$this->backend_connection = $connection;
$this->backend_amqp = $amqp;
} else {
$this->broker_connection_details = $connection_details;
$this->broker_connection = $connection;
$this->broker_amqp = $amqp;
}
}
public function disconnect()
{
if ($this->broker_connection_details['connector'] == 'pecl') {
$this->broker_connection->disconnect();
$this->backend_connection->disconnect();
$this->broker_connection->channel->close();
$this->backend_connection->channel->close();
} else if ($this->broker_connection_details['connector'] == 'php-amqplib') {
$this->broker_connection && $this->broker_connection->close();
$this->backend_connection && $this->backend_connection->close();
} else if ($this->broker_connection_details['connector'] == 'swoole') {
$this->broker_connection && $this->broker_connection->safeClose();
$this->backend_connection && $this->backend_connection->safeClose();
}
$this->backend_amqp = null;
$this->broker_amqp = null;
$this->broker_connection = null;
$this->backend_connection = null;
}
/**
* gc的时候回收监听的链接
*/
public function recycleLastAck()
{
if (!empty($this->broker_connection_details['return_callback']) ||
!empty($this->broker_connection_details['confirm_ack_callback']) ||
!empty($this->broker_connection_details['confirm_nack_callback'])
) {
return $this->broker_amqp->workerExitHandlerConfirm();
}
return true;
}
static function InitializeAMQPConnection($amqp, $details)
{
//AMQPLibConnector
return $amqp->GetConnectionObject($details);
}
/**
* Post a task to Celery
*
* @param string $task Name of the task, prefixed with module name (like tasks.add for function add() in task.py)
* @param array $args Array of arguments (kwargs call when $args is associative)
* @param bool $async_result Set to false if you don't need the AsyncResult object returned
* @param string $routing_key Set to routing key name if you're using something other than "celery"
* @param array $task_metadata Additional settings for Celery - normally not needed
*
* @return AsyncResult|bool
* @throws CeleryException
* @throws CeleryPublishException
*/
function PostTask($id = '', $task, $args, $async_result = true, $routing_key = "celery", $task_metadata = array())
{
if (!is_array($args)) {
throw new CeleryException("Args should be an array");
}
if (!$this->isConnected) {
$this->broker_amqp->Connect($this->broker_connection);
$this->isConnected = true;
}
if (empty($id)) {
$id = uniqid($task, TRUE);
}
/* $args is numeric -> positional args */
if (array_keys($args) === range(0, count($args) - 1)) {
$kwargs = array();
$args_repr = implode(', ', $args);
$kwargs_repr = '';
} /* $args is associative -> contains kwargs */
else {
$kwargs = $args;
$args = array();
$args_repr = '';
$kwargs_strs = Array();
foreach ($kwargs as $k => $v) {
$kwargs_strs[] = $k . ' = ' . json_encode($v);
}
$kwargs_repr = implode(', ', $kwargs_strs);
unset($kwargs_strs);
}
$args_repr = substr($args_repr, 0, ARGSREPR_MAXSIZE);
$kwargs_repr = substr($kwargs_repr, 0, ARGSREPR_MAXSIZE);
/**
* $task_metadata may contain additional arguments such as 'eta' which are useful in task execution
* The usecase of this field is as follows:
* $task_metadata = array( 'eta' => "2014-12-02T16:00:00" );
*/
$headers_array = array_merge(
Array(
'lang' => "php",
'task' => $task,
'id' => $id,
'eta' => NULL,
'expires' => NULL,
'group' => NULL,
'retries' => 0,
'timelimit' => array(NULL, NULL),
'root_id' => $id,
'parent_id' => NULL,
'argsrepr' => $args_repr,
'kwargsrepr' => $kwargs_repr,
'origin' => $this->origin,
),
$task_metadata
);
$properties = Array(
'content_type' => 'application/json',
'content_encoding' => 'UTF-8',
'immediate' => false,
'reply_to' => $id,
'corellation_id' => $id,
);
/* Prepare the body */
$task_array = Array(
$args,
(object)$kwargs,
Array(
'callbacks' => NULL,
'errbacks' => NULL,
'chain' => NULL,
'chord' => NULL,
),
);
$task = json_encode($task_array);
if ($this->broker_connection_details['persistent_messages']) {
$properties['delivery_mode'] = 2;
}
$this->broker_connection_details['routing_key'] = $routing_key;
$this->broker_connection_details['binding'] = $routing_key;
$success = $this->broker_amqp->PostToExchange(
$this->broker_connection,
$this->broker_connection_details,
$task,
$properties,
$headers_array
);
if (!$success) {
throw new CeleryPublishException();
}
if ($async_result) {
return new AsyncResult($id, $this->backend_connection_details, $task, $args);
} else {
return true;
}
}
/**
* Get the current message of the async result. If there is no async result for a task in the queue false will be returned.
* Can be used to pass custom states to the client as mentioned in http://celery.readthedocs.org/en/latest/userguide/tasks.html#custom-states
*
* @param string $taskName Name of the called task, like 'tasks.add'
* @param string $taskId The Task ID - from AsyncResult::getId()
* @param null|array $args Task arguments
* @param boolean $removeMessageFromQueue whether to remove the message from queue. If not celery will remove the message
* due to its expire parameter
* @return array|boolean array('body' => JSON-encoded message body, 'complete_result' => library-specific message object)
* or false if result not ready yet
*
*/
public function getAsyncResultMessage($taskName, $taskId, $args = null, $removeMessageFromQueue = true)
{
$result = new AsyncResult($taskId, $this->backend_connection_details, $taskName, $args);
$messageBody = $result->amqp->GetMessageBody(
$result->connection,
$taskId,
$this->backend_connection_details['result_expire'],
$removeMessageFromQueue
);
return $messageBody;
}
}
/*
* Asynchronous result of Celery task
* @package celery-php
*/
class AsyncResult
{
private $task_id; // string, queue name
private $connection; // AMQPConnection instance
private $connection_details; // array of strings required to connect
private $complete_result; // Backend-dependent message instance (AMQPEnvelope or PhpAmqpLib\Message\AMQPMessage)
private $body; // decoded array with message body (whatever Celery task returned)
private $amqp = null; // AbstractAMQPConnector implementation
/**
* Don't instantiate AsyncResult yourself, used internally only
* @param string $id Task ID in Celery
* @param array $connection_details used to initialize AMQPConnection, keys are the same as args to Celery::__construct
* @param string task_name
* @param array task_args
*/
function __construct($id, $connection_details, $task_name = NULL, $task_args = NULL)
{
$this->task_id = $id;
$this->connection = Celery::InitializeAMQPConnection($connection_details);
$this->connection_details = $connection_details;
$this->task_name = $task_name;
$this->task_args = $task_args;
$this->amqp = AbstractAMQPConnector::GetConcrete($connection_details['connector']);
}
function __wakeup()
{
if ($this->connection_details) {
$this->connection = Celery::InitializeAMQPConnection($this->connection_details);
}
}
/**
* Connect to queue, see if there's a result waiting for us
* Private - to be used internally
*/
private function getCompleteResult()
{
if ($this->complete_result) {
return $this->complete_result;
}
$message = $this->amqp->GetMessageBody($this->connection, $this->task_id, $this->connection_details['result_expire'], true);
if ($message !== false) {
$this->complete_result = $message['complete_result'];
$this->body = json_decode(
$message['body']
);
}
return false;
}
/**
* Helper function to return current microseconds time as float
*/
static private function getmicrotime()
{
list($usec, $sec) = explode(" ", microtime());
return ((float)$usec + (float)$sec);
}
/**
* Get the Task Id
* @return string
*/
function getId()
{
return $this->task_id;
}
/**
* Check if a task result is ready
* @return bool
*/
function isReady()
{
return ($this->getCompleteResult() !== false);
}
/**
* Return task status (needs to be called after isReady() returned true)
* @return string 'SUCCESS', 'FAILURE' etc - see Celery source
*/
function getStatus()
{
if (!$this->body) {
throw new CeleryException('Called getStatus before task was ready');
}
return $this->body->status;
}
/**
* Check if task execution has been successful or resulted in an error
* @return bool
*/
function isSuccess()
{
return ($this->getStatus() == 'SUCCESS');
}
/**
* If task execution wasn't successful, return a Python traceback
* @return string
*/
function getTraceback()
{
if (!$this->body) {
throw new CeleryException('Called getTraceback before task was ready');
}
return $this->body->traceback;
}
/**
* Return a result of successful execution.
* In case of failure, this returns an exception object
* @return mixed Whatever the task returned
*/
function getResult()
{
if (!$this->body) {
throw new CeleryException('Called getResult before task was ready');
}
return $this->body->result;
}
/****************************************************************************
* Python API emulation *
* http://ask.github.com/celery/reference/celery.result.html *
****************************************************************************/
/**
* Returns TRUE if the task failed
*/
function failed()
{
return $this->isReady() && !$this->isSuccess();
}
/**
* Forget about (and possibly remove the result of) this task
* Currently does nothing in PHP client
*/
function forget()
{
}
/**
* Wait until task is ready, and return its result.
* @param float $timeout How long to wait, in seconds, before the operation times out
* @param bool $propagate (TODO - not working) Re-raise exception if the task failed.
* @param float $interval Time to wait (in seconds) before retrying to retrieve the result
* @throws CeleryTimeoutException on timeout
* @return mixed result on both success and failure
*/
function get($timeout = 10, $propagate = TRUE, $interval = 0.5)
{
$interval_us = (int)($interval * 1000000);
$start_time = self::getmicrotime();
while (self::getmicrotime() - $start_time < $timeout) {
if ($this->isReady()) {
break;
}
usleep($interval_us);
}
if (!$this->isReady()) {
throw new CeleryTimeoutException(sprintf('AMQP task %s(%s) did not return after %d seconds', $this->task_name, json_encode($this->task_args), $timeout), 4);
}
return $this->getResult();
}
/**
* Implementation of Python's properties: result, state/status
*/
public function __get($property)
{
/**
* When the task has been executed, this contains the return value.
* If the task raised an exception, this will be the exception instance.
*/
if ($property == 'result') {
if ($this->isReady()) {
return $this->getResult();
} else {
return NULL;
}
} /**
* state: The tasks current state.
*
* Possible values includes:
*
* PENDING
* The task is waiting for execution.
*
* STARTED
* The task has been started.
*
* RETRY
* The task is to be retried, possibly because of failure.
*
* FAILURE
* The task raised an exception, or has exceeded the retry limit. The result attribute then contains the exception raised by the task.
*
* SUCCESS
* The task executed successfully. The result attribute then contains the tasks return value.
*
* status: Deprecated alias of state.
*/
elseif ($property == 'state' || $property == 'status') {
if ($this->isReady()) {
return $this->getStatus();
} else {
return 'PENDING';
}
}
return $this->$property;
}
/**
* Returns True if the task has been executed.
* If the task is still running, pending, or is waiting for retry then False is returned.
*/
function ready()
{
return $this->isReady();
}
/**
* Send revoke signal to all workers
* Does nothing in PHP client
*/
function revoke()
{
}
/**
* Returns True if the task executed successfully.
*/
function successful()
{
return $this->isSuccess();
}
/**
* Deprecated alias to get()
*/
function wait($timeout = 10, $propagate = TRUE, $interval = 0.5)
{
return $this->get($timeout, $propagate, $interval);
}
}